//判断表格居中 居中为true
        public bool detecttablecenter(DocumentFormat.OpenXml.Wordprocessing.Table table, string tbsJustification, WordprocessingDocument docx)
        {
            //居中检测
            TableProperties tpr = table.GetFirstChild <TableProperties>();

            if (tpr != null)
            {
                if (tpr.GetFirstChild <TableJustification>() != null)
                {
                    TableJustification tj = tpr.GetFirstChild <TableJustification>();
                    if (tj.Val.ToString() != tbsJustification && tj.Val.ToString() != null)
                    {
                        return(false);
                    }
                }
                else
                {
                    if (tpr.TableStyle != null)
                    {
                        TableStyle style_id = tpr.TableStyle;
                        if (style_id != null)//从style中获取
                        {
                            string jc = Util.getFromStyle(docx, style_id.Val, 1);
                            if (jc != null && jc.ToString() != tbsJustification)
                            {
                                return(false);
                            }
                        }
                    }
                }
            }
            return(true);
        }
        // Creates an TableJustification instance and adds its children.
        public TableJustification Create()
        {
            TableJustification tableJustification = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            return(tableJustification);
        }
	    private static TableProperties GenerateTableProperties()
		{
			var tableProperties1 = new TableProperties();
			var tableStyle1 = new TableStyle { Val = "TableGrid" };
			var tableWidth1 = new TableWidth { Width = "4900", Type = TableWidthUnitValues.Pct };
			var tableLook1 = new TableLook { Val = "04A0" };
			var tableJustification = new TableJustification { Val = TableRowAlignmentValues.Center };

			tableProperties1.Append(tableStyle1);
			tableProperties1.Append(tableWidth1);
			tableProperties1.Append(tableLook1);
			tableProperties1.Append(tableJustification);
			return tableProperties1;
		}
        private static void AddBorderToTableProperties(Table iTable)
        {
            TableProperties iTableProperties = iTable.Elements <TableProperties>().ElementAt(0);

            if (iTableProperties != null)
            {
                iTableProperties.TableIndentation.Remove();
                TableJustification tableJustification1 = new TableJustification()
                {
                    Val = TableRowAlignmentValues.Center
                };
                iTableProperties.Append(tableJustification1);



                iTableProperties.TableBorders.TopBorder = new TopBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableBorders.LeftBorder = new LeftBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableBorders.BottomBorder = new BottomBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableBorders.RightBorder = new RightBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableBorders.InsideHorizontalBorder = new InsideHorizontalBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableBorders.InsideVerticalBorder = new InsideVerticalBorder()
                {
                    Val = BorderValues.Single, Color = "B4C6E7", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                };
                iTableProperties.TableLook = new TableLook()
                {
                    Val = "0020", FirstRow = true, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
                };
            }
        }
        private static TableProperties GenerateTableProperties()
        {
            var tableProperties1 = new TableProperties();
            var tableStyle1      = new TableStyle {
                Val = "TableGrid"
            };
            var tableWidth1 = new TableWidth {
                Width = "4900", Type = TableWidthUnitValues.Pct
            };
            var tableLook1 = new TableLook {
                Val = "04A0"
            };
            var tableJustification = new TableJustification {
                Val = TableRowAlignmentValues.Center
            };

            tableProperties1.Append(tableStyle1);
            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableLook1);
            tableProperties1.Append(tableJustification);
            return(tableProperties1);
        }
Beispiel #6
0
        public override void ToWordDocument(WordprocessingDocument wordDocument)
        {
            // Create an empty table.
            Table table = new Table();

            TableProperties tableProperties = new TableProperties();

            // TableOverlap
            TableOverlap tableOverlap = new TableOverlap()
            {
                Val = TableOverlapValues.Never
            };

            tableProperties.Append(tableOverlap);

            // Make the table width 100% of the page width (50 * 100).
            TableWidth tableWidth = new TableWidth()
            {
                Width = _width.ToString(), Type = TableWidthUnitValues.Pct
            };

            tableProperties.Append(tableWidth);

            TableJustification tableJustification = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            tableProperties.Append(tableJustification);

            // Create a TableProperties object and specify its border information.
            tableProperties.Append(
                new TableBorders(
                    new TopBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.Double), Size = 1
            },
                    new BottomBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.Double), Size = 1
            },
                    new LeftBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.Double), Size = 1
            },
                    new RightBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.Double), Size = 1
            },
                    new InsideHorizontalBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.BasicThinLines), Size = 1
            },
                    new InsideVerticalBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.BasicThinLines), Size = 1
            }
                    )
                );

            // TableCellMarginDefault
            TableCellMarginDefault tableCellMarginDefault = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault.Append(tableCellLeftMargin);
            tableCellMarginDefault.Append(tableCellRightMargin);

            tableProperties.Append(tableCellMarginDefault);

            // TableLook
            TableLook tableLook = new TableLook()
            {
                Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true
            };

            tableProperties.Append(tableLook);

            // Shading
            // TableStyle
            // TablePositionProperties tablePositionProperties1 = new TablePositionProperties()
            // {
            //     LeftFromText = 141,
            //     RightFromText = 141,
            //     VerticalAnchor = VerticalAnchorValues.Text,
            //     TablePositionXAlignment = HorizontalAlignmentValues.Center,
            //     TablePositionY = 1
            // };

            // ***** NÃO ESTÁ FUNCIONANDO COM TableOverlap
            // TablePositionProperties tablePositionProperties = new TablePositionProperties();
            // tablePositionProperties.TablePositionXAlignment = HorizontalAlignmentValues.Center;
            // tablePositionProperties.VerticalAnchor = VerticalAnchorValues.Text;
            // tablePositionProperties.TablePositionY = 1;
            // tableProperties.Append(tablePositionProperties);


            // BiDiVisual

            // TableCellSpacing
            // TableIndentation

            // TableCaption tableCaption = new TableCaption() { Val = "Caption Table" };
            // tableProperties.Append(tableCaption);

            // TableDescription
            // TablePropertiesChange

            // TableGrid tableGrid = new TableGrid();
            //
            // for (int w = 0; w < this[0].Length; w++)
            //     tableGrid.Append(new GridColumn());
            //
            // table.Append(tableGrid);

            // Append the TableProperties object to the empty table.
            table.AppendChild(tableProperties);

            // Create a row and a cell.
            for (int row = 0; row < _linhas.Length; row++)
            {
                table.Append(_linhas[row].ToTableRow());
            }

            string str = table.OuterXml;

            wordDocument.MainDocumentPart.Document.Body.AppendChild(table);
        }
        /// <summary>
        /// Gets a category header row.
        /// </summary>
        /// <remarks>
        /// This method is used in Document assembly to create the details row for a category on the job description page
        /// </remarks>
        /// <returns>An assembled <see cref="T:DocumentFormat.OpenXml.Wordprocessing.TableRow"/></returns>
        public TableRow GenerateDetailsRow()
        {
            TableRow           tableRow1           = new TableRow();
            TableRowProperties tableRowProperties1 = new TableRowProperties();
            CantSplit          cantSplit1          = new CantSplit();
            TableRowHeight     tableRowHeight1     = new TableRowHeight()
            {
                Val = (UInt32Value)1063U
            };
            TableJustification tableJustification1 = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            tableRowProperties1.Append(cantSplit1);
            tableRowProperties1.Append(tableRowHeight1);
            tableRowProperties1.Append(tableJustification1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "535", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder1        = new TopBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders1.Append(topBorder1);
            Shading shading1 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            Justification       justification1       = new Justification()
            {
                Val = JustificationValues.Center
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunStyle runStyle1 = new RunStyle()
            {
                Val = "TimesLarge"
            };

            paragraphMarkRunProperties1.Append(runStyle1);

            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            paragraph1.Append(paragraphProperties1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "545", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders2.Append(topBorder2);
            Shading shading2 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunStyle runStyle2 = new RunStyle()
            {
                Val = "TimesLarge"
            };

            paragraphMarkRunProperties2.Append(runStyle2);

            paragraphProperties2.Append(paragraphMarkRunProperties2);

            paragraph2.Append(paragraphProperties2);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "4902", Type = TableWidthUnitValues.Dxa
            };
            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder3);
            tableCellBorders3.Append(leftBorder3);
            tableCellBorders3.Append(bottomBorder3);
            tableCellBorders3.Append(rightBorder3);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            foreach (PositionDescriptionItem p in PositionDescriptionItems)
            {
                Paragraph paragraph3 = new Paragraph();

                ParagraphProperties paragraphProperties3 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines()
                {
                    After = "100"
                };
                Indentation indentation1 = new Indentation()
                {
                    Left = "0", Hanging = "0"
                };

                ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
                RunStyle runStyle3 = new RunStyle()
                {
                    Val = "TimesLarge"
                };
                Bold bold1 = new Bold()
                {
                    Val = false
                };
                Caps caps1 = new Caps()
                {
                    Val = false
                };
                FontSize fontSize1 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                paragraphMarkRunProperties3.Append(runStyle3);
                paragraphMarkRunProperties3.Append(bold1);
                paragraphMarkRunProperties3.Append(caps1);
                paragraphMarkRunProperties3.Append(fontSize1);
                paragraphMarkRunProperties3.Append(fontSizeComplexScript1);
                paragraphProperties3.Append(spacingBetweenLines3);
                paragraphProperties3.Append(paragraphMarkRunProperties3);
                paragraphProperties3.Append(indentation1);
                ProofError proofError1 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellStart
                };

                Run run1 = new Run();

                RunProperties runProperties1 = new RunProperties();
                RunStyle      runStyle4      = new RunStyle()
                {
                    Val = "TimesLarge"
                };
                Bold bold2 = new Bold()
                {
                    Val = false
                };
                Caps caps2 = new Caps()
                {
                    Val = false
                };
                FontSize fontSize2 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                runProperties1.Append(runStyle4);
                runProperties1.Append(bold2);
                runProperties1.Append(caps2);
                runProperties1.Append(fontSize2);
                runProperties1.Append(fontSizeComplexScript2);
                Text text1 = new Text();
                text1.Text = p.Detail;

                run1.Append(runProperties1);
                run1.Append(text1);
                ProofError proofError2 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellEnd
                };

                paragraph3.Append(paragraphProperties3);
                //paragraph3.Append(proofError1);
                paragraph3.Append(run1);
                //paragraph3.Append(proofError2);


                tableCell3.Append(paragraph3);
            } // To Here?
            tableCell3.Append(tableCellProperties3);
            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth      tableCellWidth4      = new TableCellWidth()
            {
                Width = "5538", Type = TableWidthUnitValues.Dxa
            };
            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };

            tableCellBorders4.Append(topBorder4);
            tableCellBorders4.Append(leftBorder4);
            tableCellBorders4.Append(bottomBorder4);
            tableCellBorders4.Append(rightBorder4);
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(gridSpan1);
            tableCellProperties4.Append(tableCellBorders4);
            int bulletListCount = 1;

            foreach (PerformanceStandardItem p in PerformanceStandardItems)
            {
                Paragraph           paragraph4           = new Paragraph();
                ParagraphProperties paragraphProperties4 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines()
                {
                    After = "100"
                };

                ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
                FontSize fontSize3 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
                {
                    Val = "16"
                };
                Indentation indentation4 = new Indentation()
                {
                    Left = "270", Hanging = "270"
                };

                paragraphMarkRunProperties4.Append(fontSize3);
                paragraphMarkRunProperties4.Append(fontSizeComplexScript3);
                paragraphProperties4.Append(indentation4);
                paragraphProperties4.Append(spacingBetweenLines4);
                paragraphProperties4.Append(paragraphMarkRunProperties4);
                ProofError proofError3 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellStart
                };

                Run run2 = new Run();

                RunProperties runProperties2 = new RunProperties();
                FontSize      fontSize4      = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                runProperties2.Append(fontSize4);
                runProperties2.Append(fontSizeComplexScript4);
                Text text2 = new Text();
                text2.Text = $"{Letter}{bulletListCount}: {p.Detail}";
                bulletListCount++;
                run2.Append(runProperties2);
                run2.Append(text2);
                ProofError proofError4 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellEnd
                };

                paragraph4.Append(paragraphProperties4);
                paragraph4.Append(proofError3);
                paragraph4.Append(run2);
                paragraph4.Append(proofError4);


                tableCell4.Append(paragraph4);
            }
            tableCell4.Append(tableCellProperties4);
            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            tableRow1.Append(tableCell4);
            return(tableRow1);
        }
        /// <summary>
        /// Gets a category header row.
        /// </summary>
        /// <remarks>
        /// This method is used in Document assembly to create the first row for a category on the job description page
        /// </remarks>
        /// <returns>An assembled <see cref="T:DocumentFormat.OpenXml.Wordprocessing.TableRow"/></returns>
        public TableRow GetCategoryHeaderRow()
        {
            TableRow tableRow1 = new TableRow();

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight     tableRowHeight1     = new TableRowHeight()
            {
                Val = (UInt32Value)360U
            };
            TableJustification tableJustification1 = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            tableRowProperties1.Append(tableRowHeight1);
            tableRowProperties1.Append(tableJustification1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "535", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            BottomBorder     bottomBorder1     = new BottomBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders1.Append(bottomBorder1);
            Shading shading1 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            KeepNext            keepNext1            = new KeepNext();
            Justification       justification1       = new Justification()
            {
                Val = JustificationValues.Center
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            Bold     bold1     = new Bold();
            FontSize fontSize1 = new FontSize()
            {
                Val = "20"
            };

            paragraphMarkRunProperties1.Append(bold1);
            paragraphMarkRunProperties1.Append(fontSize1);

            paragraphProperties1.Append(keepNext1);
            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold2          = new Bold();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "20"
            };

            runProperties1.Append(bold2);
            runProperties1.Append(fontSize2);
            Text text1 = new Text();

            text1.Text = Weight.ToString();

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "545", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            BottomBorder     bottomBorder2     = new BottomBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders2.Append(bottomBorder2);
            Shading shading2 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            KeepNext            keepNext2            = new KeepNext();

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            Bold     bold3     = new Bold();
            FontSize fontSize3 = new FontSize()
            {
                Val = "20"
            };

            paragraphMarkRunProperties2.Append(bold3);
            paragraphMarkRunProperties2.Append(fontSize3);

            paragraphProperties2.Append(keepNext2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            Bold          bold4          = new Bold();
            FontSize      fontSize4      = new FontSize()
            {
                Val = "20"
            };

            runProperties2.Append(bold4);
            runProperties2.Append(fontSize4);
            Text text2 = new Text();

            text2.Text = Letter + ":";

            run2.Append(runProperties2);
            run2.Append(text2);
            BookmarkStart bookmarkStart1 = new BookmarkStart()
            {
                Name = "_GoBack", Id = "0"
            };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd()
            {
                Id = "0"
            };

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run2);
            paragraph2.Append(bookmarkStart1);
            paragraph2.Append(bookmarkEnd1);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "4902", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            RightBorder      rightBorder1      = new RightBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders3.Append(rightBorder1);
            Shading shading3 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);

            Paragraph paragraph3 = new Paragraph();

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            KeepNext            keepNext3            = new KeepNext();

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            Bold     bold5     = new Bold();
            Caps     caps1     = new Caps();
            FontSize fontSize5 = new FontSize()
            {
                Val = "20"
            };
            Underline underline1 = new Underline()
            {
                Val = UnderlineValues.Single
            };

            paragraphMarkRunProperties3.Append(bold5);
            paragraphMarkRunProperties3.Append(caps1);
            paragraphMarkRunProperties3.Append(fontSize5);
            paragraphMarkRunProperties3.Append(underline1);

            paragraphProperties3.Append(keepNext3);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            Bold          bold6          = new Bold();
            Caps          caps2          = new Caps();
            FontSize      fontSize6      = new FontSize()
            {
                Val = "20"
            };
            Underline underline2 = new Underline()
            {
                Val = UnderlineValues.Single
            };

            runProperties3.Append(bold6);
            runProperties3.Append(caps2);
            runProperties3.Append(fontSize6);
            runProperties3.Append(underline2);
            Text text3 = new Text();

            text3.Text = Title;

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run3);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth      tableCellWidth4      = new TableCellWidth()
            {
                Width = "403", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            LeftBorder       leftBorder1       = new LeftBorder()
            {
                Val = BorderValues.Nil
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders4.Append(leftBorder1);
            tableCellBorders4.Append(rightBorder2);
            Shading shading4 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading4);

            Paragraph paragraph4 = new Paragraph();

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            KeepLines           keepLines1           = new KeepLines();

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            FontSize fontSize7 = new FontSize()
            {
                Val = "16"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "16"
            };

            paragraphMarkRunProperties4.Append(fontSize7);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript1);

            paragraphProperties4.Append(keepLines1);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            paragraph4.Append(paragraphProperties4);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph4);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth      tableCellWidth5      = new TableCellWidth()
            {
                Width = "5135", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            LeftBorder       leftBorder2       = new LeftBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders5.Append(leftBorder2);
            Shading shading5 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading5);

            Paragraph paragraph5 = new Paragraph();

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            KeepLines           keepLines2           = new KeepLines();

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            FontSize fontSize8 = new FontSize()
            {
                Val = "16"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "16"
            };

            paragraphMarkRunProperties5.Append(fontSize8);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript2);

            paragraphProperties5.Append(keepLines2);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            paragraph5.Append(paragraphProperties5);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph5);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            tableRow1.Append(tableCell4);
            tableRow1.Append(tableCell5);
            return(tableRow1);
        }
        private static void AddStyleToTableRestOfRows(Table iTable)
        {
            //for rest of rows of table
            IEnumerable <TableRow> restOfTableRows = iTable.Elements <TableRow>().Skip(1);

            foreach (var restOfTableRow in restOfTableRows)
            {
                TableRowProperties tableRowProperties1 = new TableRowProperties();
                TableJustification tableJustification2 = new TableJustification()
                {
                    Val = TableRowAlignmentValues.Center
                };
                tableRowProperties1.Append(tableJustification2);
                restOfTableRow.Append(tableRowProperties1);

                IEnumerable <TableCell> iTableCells = restOfTableRow.Elements <TableCell>();
                foreach (var iTableCell in iTableCells)
                {
                    TableCellBorders tableCellBorders1 = new TableCellBorders();
                    BottomBorder     bottomBorder1     = new BottomBorder()
                    {
                        Val = BorderValues.Single, Color = "8EAADB", Size = (UInt32Value)4U, Space = (UInt32Value)0U
                    };

                    tableCellBorders1.Append(bottomBorder1);

                    iTableCell.TableCellProperties.Append(tableCellBorders1);
                    iTableCell.TableCellProperties.Shading = new Shading()
                    {
                        Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto"
                    };

                    Paragraph iParagraph = iTableCell.Elements <Paragraph>().ElementAt(0);

                    if (iParagraph != null)
                    {
                        ParagraphMarkRunProperties iParagraphMarkRunProperties = new ParagraphMarkRunProperties();
                        if (iParagraphMarkRunProperties != null)
                        {
                            RunFonts runFonts2 = new RunFonts()
                            {
                                Ascii = "Calibri", HighAnsi = "Calibri", ComplexScript = "Calibri"
                            };

                            FontSize fontSize2 = new FontSize()
                            {
                                Val = "16"
                            };
                            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
                            {
                                Val = "16"
                            };

                            iParagraphMarkRunProperties.Append(runFonts2);

                            iParagraphMarkRunProperties.Append(fontSize2);

                            iParagraphMarkRunProperties.Append(fontSizeComplexScript2);
                            iParagraph.ParagraphProperties.ParagraphMarkRunProperties = iParagraphMarkRunProperties;
                        }

                        Run iRun2 = iParagraph.Elements <Run>().ElementAt(0);
                        if (iRun2 != null)
                        {
                            RunFonts runFonts3 = new RunFonts()
                            {
                                Ascii = "Calibri", HighAnsi = "Calibri", ComplexScript = "Calibri"
                            };

                            iRun2.RunProperties.Append(runFonts3);

                            iRun2.RunProperties.FontSize = new FontSize()
                            {
                                Val = "16"
                            };
                            iRun2.RunProperties.FontSizeComplexScript = new FontSizeComplexScript()
                            {
                                Val = "16"
                            };
                        }
                    }
                } //end of foreach table cell
            }     //end of foreach rest of table rows
        }
Beispiel #10
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 wp14" } };
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run1 = new Run();
            RunProperties runProperties1 = new RunProperties();

            run1.Append(runProperties1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "9636", Type = TableWidthUnitValues.Dxa };
            TableJustification tableJustification1 = new TableJustification() { Val = new EnumValue<TableRowAlignmentValues>() { InnerText = "start" } };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 111, Type = TableWidthUnitValues.Dxa };
            TableBorders tableBorders1 = new TableBorders();

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin1 = new StartMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            EndMargin endMargin1 = new EndMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(startMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);
            tableCellMarginDefault1.Append(endMargin1);
            TableLook tableLook1 = new TableLook() { Val = "04a0" };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableJustification1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "10" };
            GridColumn gridColumn2 = new GridColumn() { Width = "626" };
            GridColumn gridColumn3 = new GridColumn() { Width = "237" };
            GridColumn gridColumn4 = new GridColumn() { Width = "185" };
            GridColumn gridColumn5 = new GridColumn() { Width = "39" };
            GridColumn gridColumn6 = new GridColumn() { Width = "41" };
            GridColumn gridColumn7 = new GridColumn() { Width = "157" };
            GridColumn gridColumn8 = new GridColumn() { Width = "235" };
            GridColumn gridColumn9 = new GridColumn() { Width = "226" };
            GridColumn gridColumn10 = new GridColumn() { Width = "30" };
            GridColumn gridColumn11 = new GridColumn() { Width = "48" };
            GridColumn gridColumn12 = new GridColumn() { Width = "99" };
            GridColumn gridColumn13 = new GridColumn() { Width = "450" };
            GridColumn gridColumn14 = new GridColumn() { Width = "52" };
            GridColumn gridColumn15 = new GridColumn() { Width = "548" };
            GridColumn gridColumn16 = new GridColumn() { Width = "87" };
            GridColumn gridColumn17 = new GridColumn() { Width = "51" };
            GridColumn gridColumn18 = new GridColumn() { Width = "587" };
            GridColumn gridColumn19 = new GridColumn() { Width = "38" };
            GridColumn gridColumn20 = new GridColumn() { Width = "3" };
            GridColumn gridColumn21 = new GridColumn() { Width = "47" };
            GridColumn gridColumn22 = new GridColumn() { Width = "120" };
            GridColumn gridColumn23 = new GridColumn() { Width = "48" };
            GridColumn gridColumn24 = new GridColumn() { Width = "28" };
            GridColumn gridColumn25 = new GridColumn() { Width = "773" };
            GridColumn gridColumn26 = new GridColumn() { Width = "148" };
            GridColumn gridColumn27 = new GridColumn() { Width = "40" };
            GridColumn gridColumn28 = new GridColumn() { Width = "138" };
            GridColumn gridColumn29 = new GridColumn() { Width = "233" };
            GridColumn gridColumn30 = new GridColumn() { Width = "342" };
            GridColumn gridColumn31 = new GridColumn() { Width = "43" };
            GridColumn gridColumn32 = new GridColumn() { Width = "468" };
            GridColumn gridColumn33 = new GridColumn() { Width = "189" };
            GridColumn gridColumn34 = new GridColumn() { Width = "339" };
            GridColumn gridColumn35 = new GridColumn() { Width = "47" };
            GridColumn gridColumn36 = new GridColumn() { Width = "130" };
            GridColumn gridColumn37 = new GridColumn() { Width = "100" };
            GridColumn gridColumn38 = new GridColumn() { Width = "46" };
            GridColumn gridColumn39 = new GridColumn() { Width = "1" };
            GridColumn gridColumn40 = new GridColumn() { Width = "1" };
            GridColumn gridColumn41 = new GridColumn() { Width = "245" };
            GridColumn gridColumn42 = new GridColumn() { Width = "57" };
            GridColumn gridColumn43 = new GridColumn() { Width = "139" };
            GridColumn gridColumn44 = new GridColumn() { Width = "199" };
            GridColumn gridColumn45 = new GridColumn() { Width = "1" };
            GridColumn gridColumn46 = new GridColumn() { Width = "547" };
            GridColumn gridColumn47 = new GridColumn() { Width = "110" };
            GridColumn gridColumn48 = new GridColumn() { Width = "152" };
            GridColumn gridColumn49 = new GridColumn() { Width = "502" };
            GridColumn gridColumn50 = new GridColumn() { Width = "653" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);
            tableGrid1.Append(gridColumn4);
            tableGrid1.Append(gridColumn5);
            tableGrid1.Append(gridColumn6);
            tableGrid1.Append(gridColumn7);
            tableGrid1.Append(gridColumn8);
            tableGrid1.Append(gridColumn9);
            tableGrid1.Append(gridColumn10);
            tableGrid1.Append(gridColumn11);
            tableGrid1.Append(gridColumn12);
            tableGrid1.Append(gridColumn13);
            tableGrid1.Append(gridColumn14);
            tableGrid1.Append(gridColumn15);
            tableGrid1.Append(gridColumn16);
            tableGrid1.Append(gridColumn17);
            tableGrid1.Append(gridColumn18);
            tableGrid1.Append(gridColumn19);
            tableGrid1.Append(gridColumn20);
            tableGrid1.Append(gridColumn21);
            tableGrid1.Append(gridColumn22);
            tableGrid1.Append(gridColumn23);
            tableGrid1.Append(gridColumn24);
            tableGrid1.Append(gridColumn25);
            tableGrid1.Append(gridColumn26);
            tableGrid1.Append(gridColumn27);
            tableGrid1.Append(gridColumn28);
            tableGrid1.Append(gridColumn29);
            tableGrid1.Append(gridColumn30);
            tableGrid1.Append(gridColumn31);
            tableGrid1.Append(gridColumn32);
            tableGrid1.Append(gridColumn33);
            tableGrid1.Append(gridColumn34);
            tableGrid1.Append(gridColumn35);
            tableGrid1.Append(gridColumn36);
            tableGrid1.Append(gridColumn37);
            tableGrid1.Append(gridColumn38);
            tableGrid1.Append(gridColumn39);
            tableGrid1.Append(gridColumn40);
            tableGrid1.Append(gridColumn41);
            tableGrid1.Append(gridColumn42);
            tableGrid1.Append(gridColumn43);
            tableGrid1.Append(gridColumn44);
            tableGrid1.Append(gridColumn45);
            tableGrid1.Append(gridColumn46);
            tableGrid1.Append(gridColumn47);
            tableGrid1.Append(gridColumn48);
            tableGrid1.Append(gridColumn49);
            tableGrid1.Append(gridColumn50);

            TableRow tableRow1 = new TableRow();
            TableRowProperties tableRowProperties1 = new TableRowProperties();

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge1 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders1 = new TableCellBorders();
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(verticalMerge1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();

            paragraphProperties2.Append(paragraphStyleId2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize1 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "26" };

            runProperties2.Append(fontSize1);
            runProperties2.Append(fontSizeComplexScript1);
            Text text1 = new Text();
            text1.Text = "Срок действия";
            
            run2.Append(runProperties2);
            run2.Append(text1);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run2);

            Paragraph paragraph3 = new Paragraph();

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();

            paragraphProperties3.Append(paragraphStyleId3);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize fontSize2 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "26" };

            runProperties3.Append(fontSize2);
            runProperties3.Append(fontSizeComplexScript2);
            Text text2 = new Text();
            text2.Text = "паспорта:";

            run3.Append(runProperties3);
            run3.Append(text2);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run3);

            Paragraph paragraph4 = new Paragraph();

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId4 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();

            paragraphProperties4.Append(paragraphStyleId4);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize fontSize3 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "26" };

            runProperties4.Append(fontSize3);
            runProperties4.Append(fontSizeComplexScript3);
            Text text3 = new Text();
            text3.Text = "до «___» _______ 20__ г.";

            run4.Append(runProperties4);
            run4.Append(text3);

            paragraph4.Append(paragraphProperties4);
            paragraph4.Append(run4);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph2);
            tableCell1.Append(paragraph3);
            tableCell1.Append(paragraph4);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan2 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders2 = new TableCellBorders();
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(gridSpan2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);

            Paragraph paragraph5 = new Paragraph();

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId5 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            FontSize fontSize4 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties5.Append(fontSize4);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript4);

            paragraphProperties5.Append(paragraphStyleId5);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize fontSize5 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "26" };

            runProperties5.Append(fontSize5);
            runProperties5.Append(fontSizeComplexScript5);

            run5.Append(runProperties5);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run5);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph5);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan3 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge2 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders3 = new TableCellBorders();
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan3);
            tableCellProperties3.Append(verticalMerge2);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);

            Paragraph paragraph6 = new Paragraph();

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId6 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();

            paragraphProperties6.Append(paragraphStyleId6);
            paragraphProperties6.Append(justification1);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            Run run6 = new Run();

            RunProperties runProperties6 = new RunProperties();
            Bold bold1 = new Bold();
            FontSize fontSize6 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "26" };

            runProperties6.Append(bold1);
            runProperties6.Append(fontSize6);
            runProperties6.Append(fontSizeComplexScript6);
            Text text4 = new Text();
            text4.Text = "Коммерческая тайна";

            run6.Append(runProperties6);
            run6.Append(text4);

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run6);

            Paragraph paragraph7 = new Paragraph();

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId7 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification2 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();

            paragraphProperties7.Append(paragraphStyleId7);
            paragraphProperties7.Append(justification2);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run7 = new Run();

            RunProperties runProperties7 = new RunProperties();
            FontSize fontSize7 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "26" };

            runProperties7.Append(fontSize7);
            runProperties7.Append(fontSizeComplexScript7);
            Text text5 = new Text();
            text5.Text = CommertialSecurity;

            run7.Append(runProperties7);
            run7.Append(text5);

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run7);

            Paragraph paragraph10 = new Paragraph();

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId10 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();

            paragraphProperties10.Append(paragraphStyleId10);
            paragraphProperties10.Append(justification5);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run10 = new Run();

            RunProperties runProperties10 = new RunProperties();
            FontSize fontSize10 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "26" };

            runProperties10.Append(fontSize10);
            runProperties10.Append(fontSizeComplexScript10);
            Text text8 = new Text();
            text8.Text = "Экз. № ______";

            run10.Append(runProperties10);
            run10.Append(text8);

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run10);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph6);
            tableCell3.Append(paragraph7);
          
            tableCell3.Append(paragraph10);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);

            TableRow tableRow2 = new TableRow();
            TableRowProperties tableRowProperties2 = new TableRowProperties();

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan4 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge3 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders4 = new TableCellBorders();
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(gridSpan4);
            tableCellProperties4.Append(verticalMerge3);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading4);

            Paragraph paragraph11 = new Paragraph();

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId11 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();

            paragraphProperties11.Append(paragraphStyleId11);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run11 = new Run();
            RunProperties runProperties11 = new RunProperties();

            run11.Append(runProperties11);

            paragraph11.Append(paragraphProperties11);
            paragraph11.Append(run11);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph11);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan5 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders5 = new TableCellBorders();
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(gridSpan5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading5);

            Paragraph paragraph12 = new Paragraph();

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId12 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            FontSize fontSize11 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "26" };
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties12.Append(fontSize11);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript11);
            paragraphMarkRunProperties12.Append(shading6);

            paragraphProperties12.Append(paragraphStyleId12);
            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run12 = new Run();

            RunProperties runProperties12 = new RunProperties();
            FontSize fontSize12 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "26" };
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties12.Append(fontSize12);
            runProperties12.Append(fontSizeComplexScript12);
            runProperties12.Append(shading7);

            run12.Append(runProperties12);

            paragraph12.Append(paragraphProperties12);
            paragraph12.Append(run12);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph12);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan6 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge4 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders6 = new TableCellBorders();
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(gridSpan6);
            tableCellProperties6.Append(verticalMerge4);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading8);

            Paragraph paragraph13 = new Paragraph();

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId13 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();

            paragraphProperties13.Append(paragraphStyleId13);
            paragraphProperties13.Append(justification6);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Run run13 = new Run();
            RunProperties runProperties13 = new RunProperties();

            run13.Append(runProperties13);

            paragraph13.Append(paragraphProperties13);
            paragraph13.Append(run13);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph13);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell4);
            tableRow2.Append(tableCell5);
            tableRow2.Append(tableCell6);

            TableRow tableRow3 = new TableRow();
            TableRowProperties tableRowProperties3 = new TableRowProperties();

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan7 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge5 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders7 = new TableCellBorders();
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(gridSpan7);
            tableCellProperties7.Append(verticalMerge5);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading9);

            Paragraph paragraph14 = new Paragraph();

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId14 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();

            paragraphProperties14.Append(paragraphStyleId14);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            Run run14 = new Run();
            RunProperties runProperties14 = new RunProperties();

            run14.Append(runProperties14);

            paragraph14.Append(paragraphProperties14);
            paragraph14.Append(run14);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph14);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan8 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders8 = new TableCellBorders();
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(gridSpan8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading10);

            Paragraph paragraph15 = new Paragraph();

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId15 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            FontSize fontSize13 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "26" };
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties15.Append(fontSize13);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript13);
            paragraphMarkRunProperties15.Append(shading11);

            paragraphProperties15.Append(paragraphStyleId15);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            Run run15 = new Run();

            RunProperties runProperties15 = new RunProperties();
            FontSize fontSize14 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "26" };
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties15.Append(fontSize14);
            runProperties15.Append(fontSizeComplexScript14);
            runProperties15.Append(shading12);

            run15.Append(runProperties15);

            paragraph15.Append(paragraphProperties15);
            paragraph15.Append(run15);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph15);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan9 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge6 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders9 = new TableCellBorders();
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(gridSpan9);
            tableCellProperties9.Append(verticalMerge6);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading13);

            Paragraph paragraph16 = new Paragraph();

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId16 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification7 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();

            paragraphProperties16.Append(paragraphStyleId16);
            paragraphProperties16.Append(justification7);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run16 = new Run();
            RunProperties runProperties16 = new RunProperties();

            run16.Append(runProperties16);

            paragraph16.Append(paragraphProperties16);
            paragraph16.Append(run16);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph16);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell7);
            tableRow3.Append(tableCell8);
            tableRow3.Append(tableCell9);

            TableRow tableRow4 = new TableRow();
            TableRowProperties tableRowProperties4 = new TableRowProperties();

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan10 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders10 = new TableCellBorders();
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(gridSpan10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading14);

            Paragraph paragraph17 = new Paragraph();

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId17 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            FontSize fontSize15 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "26" };
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties17.Append(fontSize15);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript15);
            paragraphMarkRunProperties17.Append(shading15);

            paragraphProperties17.Append(paragraphStyleId17);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run17 = new Run();

            RunProperties runProperties17 = new RunProperties();
            FontSize fontSize16 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "26" };
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties17.Append(fontSize16);
            runProperties17.Append(fontSizeComplexScript16);
            runProperties17.Append(shading16);

            run17.Append(runProperties17);

            paragraph17.Append(paragraphProperties17);
            paragraph17.Append(run17);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph17);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan11 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders11 = new TableCellBorders();
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(gridSpan11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading17);

            Paragraph paragraph18 = new Paragraph();

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId18 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            FontSize fontSize17 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "26" };
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties18.Append(fontSize17);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript17);
            paragraphMarkRunProperties18.Append(shading18);

            paragraphProperties18.Append(paragraphStyleId18);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run18 = new Run();

            RunProperties runProperties18 = new RunProperties();
            FontSize fontSize18 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "26" };
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties18.Append(fontSize18);
            runProperties18.Append(fontSizeComplexScript18);
            runProperties18.Append(shading19);

            run18.Append(runProperties18);

            paragraph18.Append(paragraphProperties18);
            paragraph18.Append(run18);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph18);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan12 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge7 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders12 = new TableCellBorders();
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(gridSpan12);
            tableCellProperties12.Append(verticalMerge7);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading20);

            Paragraph paragraph19 = new Paragraph();

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId19 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification8 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();

            paragraphProperties19.Append(paragraphStyleId19);
            paragraphProperties19.Append(justification8);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run19 = new Run();
            RunProperties runProperties19 = new RunProperties();

            run19.Append(runProperties19);

            paragraph19.Append(paragraphProperties19);
            paragraph19.Append(run19);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph19);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell10);
            tableRow4.Append(tableCell11);
            tableRow4.Append(tableCell12);

            TableRow tableRow5 = new TableRow();
            TableRowProperties tableRowProperties5 = new TableRowProperties();

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan13 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders13 = new TableCellBorders();
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(gridSpan13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading21);

            Paragraph paragraph20 = new Paragraph();

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId20 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            FontSize fontSize19 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "26" };
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties20.Append(fontSize19);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript19);
            paragraphMarkRunProperties20.Append(shading22);

            paragraphProperties20.Append(paragraphStyleId20);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run20 = new Run();

            RunProperties runProperties20 = new RunProperties();
            FontSize fontSize20 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "26" };
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties20.Append(fontSize20);
            runProperties20.Append(fontSizeComplexScript20);
            runProperties20.Append(shading23);

            run20.Append(runProperties20);

            paragraph20.Append(paragraphProperties20);
            paragraph20.Append(run20);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph20);

            TableCell tableCell14 = new TableCell();

            TableCellProperties tableCellProperties14 = new TableCellProperties();
            TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan14 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders14 = new TableCellBorders();
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(gridSpan14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading24);

            Paragraph paragraph21 = new Paragraph();

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId21 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            FontSize fontSize21 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "26" };
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties21.Append(fontSize21);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript21);
            paragraphMarkRunProperties21.Append(shading25);

            paragraphProperties21.Append(paragraphStyleId21);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run21 = new Run();

            RunProperties runProperties21 = new RunProperties();
            FontSize fontSize22 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "26" };
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties21.Append(fontSize22);
            runProperties21.Append(fontSizeComplexScript22);
            runProperties21.Append(shading26);

            run21.Append(runProperties21);

            paragraph21.Append(paragraphProperties21);
            paragraph21.Append(run21);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph21);

            TableCell tableCell15 = new TableCell();

            TableCellProperties tableCellProperties15 = new TableCellProperties();
            TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan15 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge8 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders15 = new TableCellBorders();
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(gridSpan15);
            tableCellProperties15.Append(verticalMerge8);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading27);

            Paragraph paragraph22 = new Paragraph();

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId22 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification9 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();

            paragraphProperties22.Append(paragraphStyleId22);
            paragraphProperties22.Append(justification9);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run22 = new Run();
            RunProperties runProperties22 = new RunProperties();

            run22.Append(runProperties22);

            paragraph22.Append(paragraphProperties22);
            paragraph22.Append(run22);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph22);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell13);
            tableRow5.Append(tableCell14);
            tableRow5.Append(tableCell15);

            TableRow tableRow6 = new TableRow();
            TableRowProperties tableRowProperties6 = new TableRowProperties();

            TableCell tableCell16 = new TableCell();

            TableCellProperties tableCellProperties16 = new TableCellProperties();
            TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan16 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders16 = new TableCellBorders();
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(gridSpan16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading28);

            Paragraph paragraph23 = new Paragraph();

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId23 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            FontSize fontSize23 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "26" };
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties23.Append(fontSize23);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript23);
            paragraphMarkRunProperties23.Append(shading29);

            paragraphProperties23.Append(paragraphStyleId23);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            Run run23 = new Run();

            RunProperties runProperties23 = new RunProperties();
            FontSize fontSize24 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "26" };
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties23.Append(fontSize24);
            runProperties23.Append(fontSizeComplexScript24);
            runProperties23.Append(shading30);

            run23.Append(runProperties23);

            paragraph23.Append(paragraphProperties23);
            paragraph23.Append(run23);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph23);

            TableCell tableCell17 = new TableCell();

            TableCellProperties tableCellProperties17 = new TableCellProperties();
            TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan17 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders17 = new TableCellBorders();
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties17.Append(tableCellWidth17);
            tableCellProperties17.Append(gridSpan17);
            tableCellProperties17.Append(tableCellBorders17);
            tableCellProperties17.Append(shading31);

            Paragraph paragraph24 = new Paragraph();

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId24 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            FontSize fontSize25 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "26" };
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties24.Append(fontSize25);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript25);
            paragraphMarkRunProperties24.Append(shading32);

            paragraphProperties24.Append(paragraphStyleId24);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run24 = new Run();

            RunProperties runProperties24 = new RunProperties();
            FontSize fontSize26 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "26" };
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties24.Append(fontSize26);
            runProperties24.Append(fontSizeComplexScript26);
            runProperties24.Append(shading33);

            run24.Append(runProperties24);

            paragraph24.Append(paragraphProperties24);
            paragraph24.Append(run24);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph24);

            TableCell tableCell18 = new TableCell();

            TableCellProperties tableCellProperties18 = new TableCellProperties();
            TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan18 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders18 = new TableCellBorders();
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties18.Append(tableCellWidth18);
            tableCellProperties18.Append(gridSpan18);
            tableCellProperties18.Append(tableCellBorders18);
            tableCellProperties18.Append(shading34);

            Paragraph paragraph25 = new Paragraph();

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId25 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            FontSize fontSize27 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "26" };
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties25.Append(fontSize27);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript27);
            paragraphMarkRunProperties25.Append(shading35);

            paragraphProperties25.Append(paragraphStyleId25);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            Run run25 = new Run();

            RunProperties runProperties25 = new RunProperties();
            FontSize fontSize28 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "26" };
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties25.Append(fontSize28);
            runProperties25.Append(fontSizeComplexScript28);
            runProperties25.Append(shading36);

            run25.Append(runProperties25);

            paragraph25.Append(paragraphProperties25);
            paragraph25.Append(run25);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph25);

            tableRow6.Append(tableRowProperties6);
            tableRow6.Append(tableCell16);
            tableRow6.Append(tableCell17);
            tableRow6.Append(tableCell18);

            TableRow tableRow7 = new TableRow();
            TableRowProperties tableRowProperties7 = new TableRowProperties();

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan19 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders19 = new TableCellBorders();
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties19.Append(tableCellWidth19);
            tableCellProperties19.Append(gridSpan19);
            tableCellProperties19.Append(tableCellBorders19);
            tableCellProperties19.Append(shading37);

            Paragraph paragraph26 = new Paragraph();

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId26 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            FontSize fontSize29 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "26" };
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties26.Append(fontSize29);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript29);
            paragraphMarkRunProperties26.Append(shading38);

            paragraphProperties26.Append(paragraphStyleId26);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run26 = new Run();

            RunProperties runProperties26 = new RunProperties();
            FontSize fontSize30 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "26" };
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties26.Append(fontSize30);
            runProperties26.Append(fontSizeComplexScript30);
            runProperties26.Append(shading39);

            run26.Append(runProperties26);

            paragraph26.Append(paragraphProperties26);
            paragraph26.Append(run26);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph26);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan20 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders20 = new TableCellBorders();
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties20.Append(tableCellWidth20);
            tableCellProperties20.Append(gridSpan20);
            tableCellProperties20.Append(tableCellBorders20);
            tableCellProperties20.Append(shading40);

            Paragraph paragraph27 = new Paragraph();

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId27 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            FontSize fontSize31 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "26" };
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties27.Append(fontSize31);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript31);
            paragraphMarkRunProperties27.Append(shading41);

            paragraphProperties27.Append(paragraphStyleId27);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run27 = new Run();

            RunProperties runProperties27 = new RunProperties();
            FontSize fontSize32 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "26" };
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties27.Append(fontSize32);
            runProperties27.Append(fontSizeComplexScript32);
            runProperties27.Append(shading42);

            run27.Append(runProperties27);

            paragraph27.Append(paragraphProperties27);
            paragraph27.Append(run27);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph27);

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan21 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge9 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders21 = new TableCellBorders();
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties21.Append(tableCellWidth21);
            tableCellProperties21.Append(gridSpan21);
            tableCellProperties21.Append(verticalMerge9);
            tableCellProperties21.Append(tableCellBorders21);
            tableCellProperties21.Append(shading43);

            Paragraph paragraph28 = new Paragraph();

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId28 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification10 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();

            paragraphProperties28.Append(paragraphStyleId28);
            paragraphProperties28.Append(justification10);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run28 = new Run();

            RunProperties runProperties28 = new RunProperties();
            Bold bold2 = new Bold();
            FontSize fontSize33 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "26" };

            runProperties28.Append(bold2);
            runProperties28.Append(fontSize33);
            runProperties28.Append(fontSizeComplexScript33);
            Text text9 = new Text();
            text9.Text = "СОГЛАСОВАНО";

            run28.Append(runProperties28);
            run28.Append(text9);

            paragraph28.Append(paragraphProperties28);
            paragraph28.Append(run28);

            Paragraph paragraph29 = new Paragraph();

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId29 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification11 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();

            paragraphProperties29.Append(paragraphStyleId29);
            paragraphProperties29.Append(justification11);
            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run29 = new Run();

            RunProperties runProperties29 = new RunProperties();
            FontSize fontSize34 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "26" };

            runProperties29.Append(fontSize34);
            runProperties29.Append(fontSizeComplexScript34);
            Text text10 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text10.Text = Agreed;

            run29.Append(runProperties29);
            run29.Append(text10);

            paragraph29.Append(paragraphProperties29);
            paragraph29.Append(run29);



            Paragraph paragraph33 = new Paragraph();

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId33 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();

            paragraphProperties33.Append(paragraphStyleId33);
            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run33 = new Run();

            RunProperties runProperties33 = new RunProperties();
            FontSize fontSize39 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "26" };

            runProperties33.Append(fontSize39);
            runProperties33.Append(fontSizeComplexScript39);
            Text text13 = new Text();
            text13.Text = "«____» ____________2015 г.";

            run33.Append(runProperties33);
            run33.Append(text13);

            paragraph33.Append(paragraphProperties33);
            paragraph33.Append(run33);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph28);
            tableCell21.Append(paragraph29);
           
            tableCell21.Append(paragraph33);

            tableRow7.Append(tableRowProperties7);
            tableRow7.Append(tableCell19);
            tableRow7.Append(tableCell20);
            tableRow7.Append(tableCell21);

            TableRow tableRow8 = new TableRow();
            TableRowProperties tableRowProperties8 = new TableRowProperties();

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan22 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders22 = new TableCellBorders();
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties22.Append(tableCellWidth22);
            tableCellProperties22.Append(gridSpan22);
            tableCellProperties22.Append(tableCellBorders22);
            tableCellProperties22.Append(shading44);

            Paragraph paragraph34 = new Paragraph();

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId34 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            FontSize fontSize40 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "26" };
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties34.Append(fontSize40);
            paragraphMarkRunProperties34.Append(fontSizeComplexScript40);
            paragraphMarkRunProperties34.Append(shading45);

            paragraphProperties34.Append(paragraphStyleId34);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run34 = new Run();

            RunProperties runProperties34 = new RunProperties();
            FontSize fontSize41 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "26" };
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties34.Append(fontSize41);
            runProperties34.Append(fontSizeComplexScript41);
            runProperties34.Append(shading46);

            run34.Append(runProperties34);

            paragraph34.Append(paragraphProperties34);
            paragraph34.Append(run34);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph34);

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan23 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders23 = new TableCellBorders();
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties23.Append(tableCellWidth23);
            tableCellProperties23.Append(gridSpan23);
            tableCellProperties23.Append(tableCellBorders23);
            tableCellProperties23.Append(shading47);

            Paragraph paragraph35 = new Paragraph();

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId35 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            FontSize fontSize42 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "26" };
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties35.Append(fontSize42);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript42);
            paragraphMarkRunProperties35.Append(shading48);

            paragraphProperties35.Append(paragraphStyleId35);
            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run35 = new Run();

            RunProperties runProperties35 = new RunProperties();
            FontSize fontSize43 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "26" };
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties35.Append(fontSize43);
            runProperties35.Append(fontSizeComplexScript43);
            runProperties35.Append(shading49);

            run35.Append(runProperties35);

            paragraph35.Append(paragraphProperties35);
            paragraph35.Append(run35);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph35);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan24 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge10 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders24 = new TableCellBorders();
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties24.Append(tableCellWidth24);
            tableCellProperties24.Append(gridSpan24);
            tableCellProperties24.Append(verticalMerge10);
            tableCellProperties24.Append(tableCellBorders24);
            tableCellProperties24.Append(shading50);

            Paragraph paragraph36 = new Paragraph();

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId36 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification15 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();

            paragraphProperties36.Append(paragraphStyleId36);
            paragraphProperties36.Append(justification15);
            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run36 = new Run();
            RunProperties runProperties36 = new RunProperties();

            run36.Append(runProperties36);

            paragraph36.Append(paragraphProperties36);
            paragraph36.Append(run36);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph36);

            tableRow8.Append(tableRowProperties8);
            tableRow8.Append(tableCell22);
            tableRow8.Append(tableCell23);
            tableRow8.Append(tableCell24);

            TableRow tableRow9 = new TableRow();
            TableRowProperties tableRowProperties9 = new TableRowProperties();

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan25 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders25 = new TableCellBorders();
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties25.Append(tableCellWidth25);
            tableCellProperties25.Append(gridSpan25);
            tableCellProperties25.Append(tableCellBorders25);
            tableCellProperties25.Append(shading51);

            Paragraph paragraph37 = new Paragraph();

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId37 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            FontSize fontSize44 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "26" };
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties37.Append(fontSize44);
            paragraphMarkRunProperties37.Append(fontSizeComplexScript44);
            paragraphMarkRunProperties37.Append(shading52);

            paragraphProperties37.Append(paragraphStyleId37);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Run run37 = new Run();

            RunProperties runProperties37 = new RunProperties();
            FontSize fontSize45 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "26" };
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties37.Append(fontSize45);
            runProperties37.Append(fontSizeComplexScript45);
            runProperties37.Append(shading53);

            run37.Append(runProperties37);

            paragraph37.Append(paragraphProperties37);
            paragraph37.Append(run37);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph37);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan26 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders26 = new TableCellBorders();
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties26.Append(tableCellWidth26);
            tableCellProperties26.Append(gridSpan26);
            tableCellProperties26.Append(tableCellBorders26);
            tableCellProperties26.Append(shading54);

            Paragraph paragraph38 = new Paragraph();

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId38 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            FontSize fontSize46 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "26" };
            Shading shading55 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties38.Append(fontSize46);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript46);
            paragraphMarkRunProperties38.Append(shading55);

            paragraphProperties38.Append(paragraphStyleId38);
            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run38 = new Run();

            RunProperties runProperties38 = new RunProperties();
            FontSize fontSize47 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "26" };
            Shading shading56 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties38.Append(fontSize47);
            runProperties38.Append(fontSizeComplexScript47);
            runProperties38.Append(shading56);

            run38.Append(runProperties38);

            paragraph38.Append(paragraphProperties38);
            paragraph38.Append(run38);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph38);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan27 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge11 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders27 = new TableCellBorders();
            Shading shading57 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties27.Append(tableCellWidth27);
            tableCellProperties27.Append(gridSpan27);
            tableCellProperties27.Append(verticalMerge11);
            tableCellProperties27.Append(tableCellBorders27);
            tableCellProperties27.Append(shading57);

            Paragraph paragraph39 = new Paragraph();

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId39 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification16 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            FontSize fontSize48 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties39.Append(fontSize48);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript48);

            paragraphProperties39.Append(paragraphStyleId39);
            paragraphProperties39.Append(justification16);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run39 = new Run();

            RunProperties runProperties39 = new RunProperties();
            FontSize fontSize49 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "26" };

            runProperties39.Append(fontSize49);
            runProperties39.Append(fontSizeComplexScript49);

            run39.Append(runProperties39);

            paragraph39.Append(paragraphProperties39);
            paragraph39.Append(run39);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph39);

            tableRow9.Append(tableRowProperties9);
            tableRow9.Append(tableCell25);
            tableRow9.Append(tableCell26);
            tableRow9.Append(tableCell27);

            TableRow tableRow10 = new TableRow();
            TableRowProperties tableRowProperties10 = new TableRowProperties();

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan28 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders28 = new TableCellBorders();
            Shading shading58 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(gridSpan28);
            tableCellProperties28.Append(tableCellBorders28);
            tableCellProperties28.Append(shading58);

            Paragraph paragraph40 = new Paragraph();

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId40 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            FontSize fontSize50 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "26" };
            Shading shading59 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties40.Append(fontSize50);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript50);
            paragraphMarkRunProperties40.Append(shading59);

            paragraphProperties40.Append(paragraphStyleId40);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run40 = new Run();

            RunProperties runProperties40 = new RunProperties();
            FontSize fontSize51 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "26" };
            Shading shading60 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties40.Append(fontSize51);
            runProperties40.Append(fontSizeComplexScript51);
            runProperties40.Append(shading60);

            run40.Append(runProperties40);

            paragraph40.Append(paragraphProperties40);
            paragraph40.Append(run40);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph40);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan29 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders29 = new TableCellBorders();
            Shading shading61 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(gridSpan29);
            tableCellProperties29.Append(tableCellBorders29);
            tableCellProperties29.Append(shading61);

            Paragraph paragraph41 = new Paragraph();

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId41 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            FontSize fontSize52 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "26" };
            Shading shading62 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties41.Append(fontSize52);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript52);
            paragraphMarkRunProperties41.Append(shading62);

            paragraphProperties41.Append(paragraphStyleId41);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run41 = new Run();

            RunProperties runProperties41 = new RunProperties();
            FontSize fontSize53 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "26" };
            Shading shading63 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties41.Append(fontSize53);
            runProperties41.Append(fontSizeComplexScript53);
            runProperties41.Append(shading63);

            run41.Append(runProperties41);

            paragraph41.Append(paragraphProperties41);
            paragraph41.Append(run41);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph41);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan30 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge12 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders30 = new TableCellBorders();
            Shading shading64 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(gridSpan30);
            tableCellProperties30.Append(verticalMerge12);
            tableCellProperties30.Append(tableCellBorders30);
            tableCellProperties30.Append(shading64);

            Paragraph paragraph42 = new Paragraph();

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId42 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification17 = new Justification() { Val = JustificationValues.End };
            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();

            paragraphProperties42.Append(paragraphStyleId42);
            paragraphProperties42.Append(justification17);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run42 = new Run();
            RunProperties runProperties42 = new RunProperties();

            run42.Append(runProperties42);

            paragraph42.Append(paragraphProperties42);
            paragraph42.Append(run42);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph42);

            tableRow10.Append(tableRowProperties10);
            tableRow10.Append(tableCell28);
            tableRow10.Append(tableCell29);
            tableRow10.Append(tableCell30);

            TableRow tableRow11 = new TableRow();
            TableRowProperties tableRowProperties11 = new TableRowProperties();

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan31 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders31 = new TableCellBorders();
            Shading shading65 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(gridSpan31);
            tableCellProperties31.Append(tableCellBorders31);
            tableCellProperties31.Append(shading65);

            Paragraph paragraph43 = new Paragraph();

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId43 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            FontSize fontSize54 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "26" };
            Shading shading66 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties43.Append(fontSize54);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript54);
            paragraphMarkRunProperties43.Append(shading66);

            paragraphProperties43.Append(paragraphStyleId43);
            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run43 = new Run();

            RunProperties runProperties43 = new RunProperties();
            FontSize fontSize55 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "26" };
            Shading shading67 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties43.Append(fontSize55);
            runProperties43.Append(fontSizeComplexScript55);
            runProperties43.Append(shading67);

            run43.Append(runProperties43);

            paragraph43.Append(paragraphProperties43);
            paragraph43.Append(run43);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph43);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan32 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders32 = new TableCellBorders();
            Shading shading68 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(gridSpan32);
            tableCellProperties32.Append(tableCellBorders32);
            tableCellProperties32.Append(shading68);

            Paragraph paragraph44 = new Paragraph();

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId44 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            FontSize fontSize56 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "26" };
            Shading shading69 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties44.Append(fontSize56);
            paragraphMarkRunProperties44.Append(fontSizeComplexScript56);
            paragraphMarkRunProperties44.Append(shading69);

            paragraphProperties44.Append(paragraphStyleId44);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run44 = new Run();

            RunProperties runProperties44 = new RunProperties();
            FontSize fontSize57 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "26" };
            Shading shading70 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties44.Append(fontSize57);
            runProperties44.Append(fontSizeComplexScript57);
            runProperties44.Append(shading70);

            run44.Append(runProperties44);

            paragraph44.Append(paragraphProperties44);
            paragraph44.Append(run44);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph44);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan33 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge13 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders33 = new TableCellBorders();
            Shading shading71 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(gridSpan33);
            tableCellProperties33.Append(verticalMerge13);
            tableCellProperties33.Append(tableCellBorders33);
            tableCellProperties33.Append(shading71);

            Paragraph paragraph45 = new Paragraph();

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId45 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            Shading shading72 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties45.Append(shading72);

            paragraphProperties45.Append(paragraphStyleId45);
            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run45 = new Run();

            RunProperties runProperties45 = new RunProperties();
            Shading shading73 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties45.Append(shading73);

            run45.Append(runProperties45);

            paragraph45.Append(paragraphProperties45);
            paragraph45.Append(run45);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph45);

            tableRow11.Append(tableRowProperties11);
            tableRow11.Append(tableCell31);
            tableRow11.Append(tableCell32);
            tableRow11.Append(tableCell33);

            TableRow tableRow12 = new TableRow();
            TableRowProperties tableRowProperties12 = new TableRowProperties();

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan34 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders34 = new TableCellBorders();
            Shading shading74 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(gridSpan34);
            tableCellProperties34.Append(tableCellBorders34);
            tableCellProperties34.Append(shading74);

            Paragraph paragraph46 = new Paragraph();

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId46 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            FontSize fontSize58 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "26" };
            Shading shading75 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties46.Append(fontSize58);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript58);
            paragraphMarkRunProperties46.Append(shading75);

            paragraphProperties46.Append(paragraphStyleId46);
            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run46 = new Run();

            RunProperties runProperties46 = new RunProperties();
            FontSize fontSize59 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "26" };
            Shading shading76 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties46.Append(fontSize59);
            runProperties46.Append(fontSizeComplexScript59);
            runProperties46.Append(shading76);

            run46.Append(runProperties46);

            paragraph46.Append(paragraphProperties46);
            paragraph46.Append(run46);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph46);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan35 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders35 = new TableCellBorders();
            Shading shading77 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(gridSpan35);
            tableCellProperties35.Append(tableCellBorders35);
            tableCellProperties35.Append(shading77);

            Paragraph paragraph47 = new Paragraph();

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId47 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            FontSize fontSize60 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "26" };
            Shading shading78 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties47.Append(fontSize60);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript60);
            paragraphMarkRunProperties47.Append(shading78);

            paragraphProperties47.Append(paragraphStyleId47);
            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run47 = new Run();

            RunProperties runProperties47 = new RunProperties();
            FontSize fontSize61 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "26" };
            Shading shading79 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties47.Append(fontSize61);
            runProperties47.Append(fontSizeComplexScript61);
            runProperties47.Append(shading79);

            run47.Append(runProperties47);

            paragraph47.Append(paragraphProperties47);
            paragraph47.Append(run47);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph47);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan36 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders36 = new TableCellBorders();
            Shading shading80 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(gridSpan36);
            tableCellProperties36.Append(tableCellBorders36);
            tableCellProperties36.Append(shading80);

            Paragraph paragraph48 = new Paragraph();

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId48 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification18 = new Justification() { Val = JustificationValues.Start };
            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();

            paragraphProperties48.Append(paragraphStyleId48);
            paragraphProperties48.Append(justification18);
            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run48 = new Run();

            RunProperties runProperties48 = new RunProperties();
            FontSize fontSize62 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "26" };
            Shading shading81 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties48.Append(fontSize62);
            runProperties48.Append(fontSizeComplexScript62);
            runProperties48.Append(shading81);
            Text text14 = new Text();
            text14.Text = "М.П.";

            run48.Append(runProperties48);
            run48.Append(text14);

            paragraph48.Append(paragraphProperties48);
            paragraph48.Append(run48);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph48);

            tableRow12.Append(tableRowProperties12);
            tableRow12.Append(tableCell34);
            tableRow12.Append(tableCell35);
            tableRow12.Append(tableCell36);

            TableRow tableRow13 = new TableRow();
            TableRowProperties tableRowProperties13 = new TableRowProperties();

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan37 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders37 = new TableCellBorders();
            Shading shading82 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(gridSpan37);
            tableCellProperties37.Append(tableCellBorders37);
            tableCellProperties37.Append(shading82);

            Paragraph paragraph49 = new Paragraph();

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId49 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            FontSize fontSize63 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "26" };
            Shading shading83 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties49.Append(fontSize63);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript63);
            paragraphMarkRunProperties49.Append(shading83);

            paragraphProperties49.Append(paragraphStyleId49);
            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Run run49 = new Run();

            RunProperties runProperties49 = new RunProperties();
            FontSize fontSize64 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "26" };
            Shading shading84 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties49.Append(fontSize64);
            runProperties49.Append(fontSizeComplexScript64);
            runProperties49.Append(shading84);

            run49.Append(runProperties49);

            paragraph49.Append(paragraphProperties49);
            paragraph49.Append(run49);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph49);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan38 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders38 = new TableCellBorders();
            Shading shading85 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(gridSpan38);
            tableCellProperties38.Append(tableCellBorders38);
            tableCellProperties38.Append(shading85);

            Paragraph paragraph50 = new Paragraph();

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId50 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            FontSize fontSize65 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "26" };
            Shading shading86 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties50.Append(fontSize65);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript65);
            paragraphMarkRunProperties50.Append(shading86);

            paragraphProperties50.Append(paragraphStyleId50);
            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run50 = new Run();

            RunProperties runProperties50 = new RunProperties();
            FontSize fontSize66 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "26" };
            Shading shading87 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties50.Append(fontSize66);
            runProperties50.Append(fontSizeComplexScript66);
            runProperties50.Append(shading87);

            run50.Append(runProperties50);

            paragraph50.Append(paragraphProperties50);
            paragraph50.Append(run50);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph50);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan39 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders39 = new TableCellBorders();
            Shading shading88 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(gridSpan39);
            tableCellProperties39.Append(tableCellBorders39);
            tableCellProperties39.Append(shading88);

            Paragraph paragraph51 = new Paragraph();

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId51 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            FontSize fontSize67 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "26" };
            Shading shading89 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties51.Append(fontSize67);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript67);
            paragraphMarkRunProperties51.Append(shading89);

            paragraphProperties51.Append(paragraphStyleId51);
            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run51 = new Run();

            RunProperties runProperties51 = new RunProperties();
            FontSize fontSize68 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "26" };
            Shading shading90 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties51.Append(fontSize68);
            runProperties51.Append(fontSizeComplexScript68);
            runProperties51.Append(shading90);

            run51.Append(runProperties51);

            paragraph51.Append(paragraphProperties51);
            paragraph51.Append(run51);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph51);

            tableRow13.Append(tableRowProperties13);
            tableRow13.Append(tableCell37);
            tableRow13.Append(tableCell38);
            tableRow13.Append(tableCell39);

            TableRow tableRow14 = new TableRow();
            TableRowProperties tableRowProperties14 = new TableRowProperties();

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan40 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders40 = new TableCellBorders();
            Shading shading91 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(gridSpan40);
            tableCellProperties40.Append(tableCellBorders40);
            tableCellProperties40.Append(shading91);

            Paragraph paragraph52 = new Paragraph();

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId52 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            FontSize fontSize69 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "26" };
            Shading shading92 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties52.Append(fontSize69);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript69);
            paragraphMarkRunProperties52.Append(shading92);

            paragraphProperties52.Append(paragraphStyleId52);
            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run52 = new Run();

            RunProperties runProperties52 = new RunProperties();
            FontSize fontSize70 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "26" };
            Shading shading93 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties52.Append(fontSize70);
            runProperties52.Append(fontSizeComplexScript70);
            runProperties52.Append(shading93);

            run52.Append(runProperties52);

            paragraph52.Append(paragraphProperties52);
            paragraph52.Append(run52);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph52);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan41 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders41 = new TableCellBorders();
            Shading shading94 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(gridSpan41);
            tableCellProperties41.Append(tableCellBorders41);
            tableCellProperties41.Append(shading94);

            Paragraph paragraph53 = new Paragraph();

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId53 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            FontSize fontSize71 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "26" };
            Shading shading95 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties53.Append(fontSize71);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript71);
            paragraphMarkRunProperties53.Append(shading95);

            paragraphProperties53.Append(paragraphStyleId53);
            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run53 = new Run();

            RunProperties runProperties53 = new RunProperties();
            FontSize fontSize72 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "26" };
            Shading shading96 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties53.Append(fontSize72);
            runProperties53.Append(fontSizeComplexScript72);
            runProperties53.Append(shading96);

            run53.Append(runProperties53);

            paragraph53.Append(paragraphProperties53);
            paragraph53.Append(run53);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph53);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan42 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge14 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders42 = new TableCellBorders();
            Shading shading97 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(gridSpan42);
            tableCellProperties42.Append(verticalMerge14);
            tableCellProperties42.Append(tableCellBorders42);
            tableCellProperties42.Append(shading97);

            Paragraph paragraph54 = new Paragraph();

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId54 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification19 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();

            paragraphProperties54.Append(paragraphStyleId54);
            paragraphProperties54.Append(justification19);
            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run54 = new Run();

            RunProperties runProperties54 = new RunProperties();
            Bold bold3 = new Bold();
            FontSize fontSize73 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "26" };

            runProperties54.Append(bold3);
            runProperties54.Append(fontSize73);
            runProperties54.Append(fontSizeComplexScript73);
            Text text15 = new Text();
            text15.Text = "УТВЕРЖДАЮ";

            run54.Append(runProperties54);
            run54.Append(text15);

            paragraph54.Append(paragraphProperties54);
            paragraph54.Append(run54);

            Paragraph paragraph55 = new Paragraph();

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId55 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification20 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();

            paragraphProperties55.Append(paragraphStyleId55);
            paragraphProperties55.Append(justification20);
            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run55 = new Run();

            RunProperties runProperties55 = new RunProperties();
            FontSize fontSize74 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "26" };

            runProperties55.Append(fontSize74);
            runProperties55.Append(fontSizeComplexScript74);
            Text text16 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text16.Text = "Генеральный директор ";

            run55.Append(runProperties55);
            run55.Append(text16);

            paragraph55.Append(paragraphProperties55);
            paragraph55.Append(run55);

            Paragraph paragraph56 = new Paragraph();

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId56 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification21 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();

            paragraphProperties56.Append(paragraphStyleId56);
            paragraphProperties56.Append(justification21);
            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run56 = new Run();

            RunProperties runProperties56 = new RunProperties();
            FontSize fontSize75 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "26" };

            runProperties56.Append(fontSize75);
            runProperties56.Append(fontSizeComplexScript75);
            Text text17 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text17.Text = "ООО «Газпром энергохолдинг» - управляющей организации ";

            run56.Append(runProperties56);
            run56.Append(text17);

            paragraph56.Append(paragraphProperties56);
            paragraph56.Append(run56);

            Paragraph paragraph57 = new Paragraph();

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId57 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification22 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();

            paragraphProperties57.Append(paragraphStyleId57);
            paragraphProperties57.Append(justification22);
            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run57 = new Run();

            RunProperties runProperties57 = new RunProperties();
            FontSize fontSize76 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "26" };

            runProperties57.Append(fontSize76);
            runProperties57.Append(fontSizeComplexScript76);
            Text text18 = new Text();
            text18.Text = "ПАО «МОЭК»";

            run57.Append(runProperties57);
            run57.Append(text18);

            paragraph57.Append(paragraphProperties57);
            paragraph57.Append(run57);

            Paragraph paragraph58 = new Paragraph();

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId58 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification23 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            FontSize fontSize77 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties58.Append(fontSize77);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript77);

            paragraphProperties58.Append(paragraphStyleId58);
            paragraphProperties58.Append(justification23);
            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run58 = new Run();

            RunProperties runProperties58 = new RunProperties();
            FontSize fontSize78 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "26" };

            runProperties58.Append(fontSize78);
            runProperties58.Append(fontSizeComplexScript78);

            run58.Append(runProperties58);

            paragraph58.Append(paragraphProperties58);
            paragraph58.Append(run58);

            Paragraph paragraph59 = new Paragraph();

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId59 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification24 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();

            paragraphProperties59.Append(paragraphStyleId59);
            paragraphProperties59.Append(justification24);
            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run59 = new Run();

            RunProperties runProperties59 = new RunProperties();
            FontSize fontSize79 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "26" };

            runProperties59.Append(fontSize79);
            runProperties59.Append(fontSizeComplexScript79);
            Text text19 = new Text();
            text19.Text = "_________________ Д.В. Федоров";

            run59.Append(runProperties59);
            run59.Append(text19);

            paragraph59.Append(paragraphProperties59);
            paragraph59.Append(run59);

            Paragraph paragraph60 = new Paragraph();

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId60 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();

            paragraphProperties60.Append(paragraphStyleId60);
            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run60 = new Run();

            RunProperties runProperties60 = new RunProperties();
            FontSize fontSize80 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "26" };

            runProperties60.Append(fontSize80);
            runProperties60.Append(fontSizeComplexScript80);
            Text text20 = new Text();
            text20.Text = "«____» ____________2015 г.";

            run60.Append(runProperties60);
            run60.Append(text20);

            paragraph60.Append(paragraphProperties60);
            paragraph60.Append(run60);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph54);
            tableCell42.Append(paragraph55);
            tableCell42.Append(paragraph56);
            tableCell42.Append(paragraph57);
            tableCell42.Append(paragraph58);
            tableCell42.Append(paragraph59);
            tableCell42.Append(paragraph60);

            tableRow14.Append(tableRowProperties14);
            tableRow14.Append(tableCell40);
            tableRow14.Append(tableCell41);
            tableRow14.Append(tableCell42);

            TableRow tableRow15 = new TableRow();
            TableRowProperties tableRowProperties15 = new TableRowProperties();

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan43 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders43 = new TableCellBorders();
            Shading shading98 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(gridSpan43);
            tableCellProperties43.Append(tableCellBorders43);
            tableCellProperties43.Append(shading98);

            Paragraph paragraph61 = new Paragraph();

            ParagraphProperties paragraphProperties61 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId61 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties61 = new ParagraphMarkRunProperties();
            FontSize fontSize81 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "26" };
            Shading shading99 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties61.Append(fontSize81);
            paragraphMarkRunProperties61.Append(fontSizeComplexScript81);
            paragraphMarkRunProperties61.Append(shading99);

            paragraphProperties61.Append(paragraphStyleId61);
            paragraphProperties61.Append(paragraphMarkRunProperties61);

            Run run61 = new Run();

            RunProperties runProperties61 = new RunProperties();
            FontSize fontSize82 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "26" };
            Shading shading100 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties61.Append(fontSize82);
            runProperties61.Append(fontSizeComplexScript82);
            runProperties61.Append(shading100);

            run61.Append(runProperties61);

            paragraph61.Append(paragraphProperties61);
            paragraph61.Append(run61);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph61);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan44 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders44 = new TableCellBorders();
            Shading shading101 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(gridSpan44);
            tableCellProperties44.Append(tableCellBorders44);
            tableCellProperties44.Append(shading101);

            Paragraph paragraph62 = new Paragraph();

            ParagraphProperties paragraphProperties62 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId62 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties62 = new ParagraphMarkRunProperties();
            FontSize fontSize83 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "26" };
            Shading shading102 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties62.Append(fontSize83);
            paragraphMarkRunProperties62.Append(fontSizeComplexScript83);
            paragraphMarkRunProperties62.Append(shading102);

            paragraphProperties62.Append(paragraphStyleId62);
            paragraphProperties62.Append(paragraphMarkRunProperties62);

            Run run62 = new Run();

            RunProperties runProperties62 = new RunProperties();
            FontSize fontSize84 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "26" };
            Shading shading103 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties62.Append(fontSize84);
            runProperties62.Append(fontSizeComplexScript84);
            runProperties62.Append(shading103);

            run62.Append(runProperties62);

            paragraph62.Append(paragraphProperties62);
            paragraph62.Append(run62);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph62);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan45 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge15 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders45 = new TableCellBorders();
            Shading shading104 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(gridSpan45);
            tableCellProperties45.Append(verticalMerge15);
            tableCellProperties45.Append(tableCellBorders45);
            tableCellProperties45.Append(shading104);

            Paragraph paragraph63 = new Paragraph();

            ParagraphProperties paragraphProperties63 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId63 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification25 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties63 = new ParagraphMarkRunProperties();

            paragraphProperties63.Append(paragraphStyleId63);
            paragraphProperties63.Append(justification25);
            paragraphProperties63.Append(paragraphMarkRunProperties63);

            Run run63 = new Run();
            RunProperties runProperties63 = new RunProperties();

            run63.Append(runProperties63);

            paragraph63.Append(paragraphProperties63);
            paragraph63.Append(run63);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph63);

            tableRow15.Append(tableRowProperties15);
            tableRow15.Append(tableCell43);
            tableRow15.Append(tableCell44);
            tableRow15.Append(tableCell45);

            TableRow tableRow16 = new TableRow();
            TableRowProperties tableRowProperties16 = new TableRowProperties();

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan46 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders46 = new TableCellBorders();
            Shading shading105 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(gridSpan46);
            tableCellProperties46.Append(tableCellBorders46);
            tableCellProperties46.Append(shading105);

            Paragraph paragraph64 = new Paragraph();

            ParagraphProperties paragraphProperties64 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId64 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties64 = new ParagraphMarkRunProperties();
            FontSize fontSize85 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "26" };
            Shading shading106 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties64.Append(fontSize85);
            paragraphMarkRunProperties64.Append(fontSizeComplexScript85);
            paragraphMarkRunProperties64.Append(shading106);

            paragraphProperties64.Append(paragraphStyleId64);
            paragraphProperties64.Append(paragraphMarkRunProperties64);

            Run run64 = new Run();

            RunProperties runProperties64 = new RunProperties();
            FontSize fontSize86 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "26" };
            Shading shading107 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties64.Append(fontSize86);
            runProperties64.Append(fontSizeComplexScript86);
            runProperties64.Append(shading107);

            run64.Append(runProperties64);

            paragraph64.Append(paragraphProperties64);
            paragraph64.Append(run64);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph64);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan47 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders47 = new TableCellBorders();
            Shading shading108 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(gridSpan47);
            tableCellProperties47.Append(tableCellBorders47);
            tableCellProperties47.Append(shading108);

            Paragraph paragraph65 = new Paragraph();

            ParagraphProperties paragraphProperties65 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId65 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties65 = new ParagraphMarkRunProperties();
            FontSize fontSize87 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "26" };
            Shading shading109 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties65.Append(fontSize87);
            paragraphMarkRunProperties65.Append(fontSizeComplexScript87);
            paragraphMarkRunProperties65.Append(shading109);

            paragraphProperties65.Append(paragraphStyleId65);
            paragraphProperties65.Append(paragraphMarkRunProperties65);

            Run run65 = new Run();

            RunProperties runProperties65 = new RunProperties();
            FontSize fontSize88 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "26" };
            Shading shading110 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties65.Append(fontSize88);
            runProperties65.Append(fontSizeComplexScript88);
            runProperties65.Append(shading110);

            run65.Append(runProperties65);

            paragraph65.Append(paragraphProperties65);
            paragraph65.Append(run65);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph65);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan48 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge16 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders48 = new TableCellBorders();
            Shading shading111 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(gridSpan48);
            tableCellProperties48.Append(verticalMerge16);
            tableCellProperties48.Append(tableCellBorders48);
            tableCellProperties48.Append(shading111);

            Paragraph paragraph66 = new Paragraph();

            ParagraphProperties paragraphProperties66 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId66 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification26 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties66 = new ParagraphMarkRunProperties();
            FontSize fontSize89 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties66.Append(fontSize89);
            paragraphMarkRunProperties66.Append(fontSizeComplexScript89);

            paragraphProperties66.Append(paragraphStyleId66);
            paragraphProperties66.Append(justification26);
            paragraphProperties66.Append(paragraphMarkRunProperties66);

            Run run66 = new Run();

            RunProperties runProperties66 = new RunProperties();
            FontSize fontSize90 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "26" };

            runProperties66.Append(fontSize90);
            runProperties66.Append(fontSizeComplexScript90);

            run66.Append(runProperties66);

            paragraph66.Append(paragraphProperties66);
            paragraph66.Append(run66);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph66);

            tableRow16.Append(tableRowProperties16);
            tableRow16.Append(tableCell46);
            tableRow16.Append(tableCell47);
            tableRow16.Append(tableCell48);

            TableRow tableRow17 = new TableRow();
            TableRowProperties tableRowProperties17 = new TableRowProperties();

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan49 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders49 = new TableCellBorders();
            Shading shading112 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(gridSpan49);
            tableCellProperties49.Append(tableCellBorders49);
            tableCellProperties49.Append(shading112);

            Paragraph paragraph67 = new Paragraph();

            ParagraphProperties paragraphProperties67 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId67 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties67 = new ParagraphMarkRunProperties();
            FontSize fontSize91 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "26" };
            Shading shading113 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties67.Append(fontSize91);
            paragraphMarkRunProperties67.Append(fontSizeComplexScript91);
            paragraphMarkRunProperties67.Append(shading113);

            paragraphProperties67.Append(paragraphStyleId67);
            paragraphProperties67.Append(paragraphMarkRunProperties67);

            Run run67 = new Run();

            RunProperties runProperties67 = new RunProperties();
            FontSize fontSize92 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "26" };
            Shading shading114 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties67.Append(fontSize92);
            runProperties67.Append(fontSizeComplexScript92);
            runProperties67.Append(shading114);

            run67.Append(runProperties67);

            paragraph67.Append(paragraphProperties67);
            paragraph67.Append(run67);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph67);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan50 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders50 = new TableCellBorders();
            Shading shading115 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties50.Append(tableCellWidth50);
            tableCellProperties50.Append(gridSpan50);
            tableCellProperties50.Append(tableCellBorders50);
            tableCellProperties50.Append(shading115);

            Paragraph paragraph68 = new Paragraph();

            ParagraphProperties paragraphProperties68 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId68 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties68 = new ParagraphMarkRunProperties();
            FontSize fontSize93 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "26" };
            Shading shading116 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties68.Append(fontSize93);
            paragraphMarkRunProperties68.Append(fontSizeComplexScript93);
            paragraphMarkRunProperties68.Append(shading116);

            paragraphProperties68.Append(paragraphStyleId68);
            paragraphProperties68.Append(paragraphMarkRunProperties68);

            Run run68 = new Run();

            RunProperties runProperties68 = new RunProperties();
            FontSize fontSize94 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "26" };
            Shading shading117 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties68.Append(fontSize94);
            runProperties68.Append(fontSizeComplexScript94);
            runProperties68.Append(shading117);

            run68.Append(runProperties68);

            paragraph68.Append(paragraphProperties68);
            paragraph68.Append(run68);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph68);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan51 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge17 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders51 = new TableCellBorders();
            Shading shading118 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties51.Append(tableCellWidth51);
            tableCellProperties51.Append(gridSpan51);
            tableCellProperties51.Append(verticalMerge17);
            tableCellProperties51.Append(tableCellBorders51);
            tableCellProperties51.Append(shading118);

            Paragraph paragraph69 = new Paragraph();

            ParagraphProperties paragraphProperties69 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId69 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification27 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties69 = new ParagraphMarkRunProperties();

            paragraphProperties69.Append(paragraphStyleId69);
            paragraphProperties69.Append(justification27);
            paragraphProperties69.Append(paragraphMarkRunProperties69);

            Run run69 = new Run();
            RunProperties runProperties69 = new RunProperties();

            run69.Append(runProperties69);

            paragraph69.Append(paragraphProperties69);
            paragraph69.Append(run69);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph69);

            tableRow17.Append(tableRowProperties17);
            tableRow17.Append(tableCell49);
            tableRow17.Append(tableCell50);
            tableRow17.Append(tableCell51);

            TableRow tableRow18 = new TableRow();
            TableRowProperties tableRowProperties18 = new TableRowProperties();

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan52 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders52 = new TableCellBorders();
            Shading shading119 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties52.Append(tableCellWidth52);
            tableCellProperties52.Append(gridSpan52);
            tableCellProperties52.Append(tableCellBorders52);
            tableCellProperties52.Append(shading119);

            Paragraph paragraph70 = new Paragraph();

            ParagraphProperties paragraphProperties70 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId70 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties70 = new ParagraphMarkRunProperties();
            FontSize fontSize95 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "26" };
            Shading shading120 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties70.Append(fontSize95);
            paragraphMarkRunProperties70.Append(fontSizeComplexScript95);
            paragraphMarkRunProperties70.Append(shading120);

            paragraphProperties70.Append(paragraphStyleId70);
            paragraphProperties70.Append(paragraphMarkRunProperties70);

            Run run70 = new Run();

            RunProperties runProperties70 = new RunProperties();
            FontSize fontSize96 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "26" };
            Shading shading121 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties70.Append(fontSize96);
            runProperties70.Append(fontSizeComplexScript96);
            runProperties70.Append(shading121);

            run70.Append(runProperties70);

            paragraph70.Append(paragraphProperties70);
            paragraph70.Append(run70);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph70);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan53 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders53 = new TableCellBorders();
            Shading shading122 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties53.Append(tableCellWidth53);
            tableCellProperties53.Append(gridSpan53);
            tableCellProperties53.Append(tableCellBorders53);
            tableCellProperties53.Append(shading122);

            Paragraph paragraph71 = new Paragraph();

            ParagraphProperties paragraphProperties71 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId71 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties71 = new ParagraphMarkRunProperties();
            FontSize fontSize97 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "26" };
            Shading shading123 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties71.Append(fontSize97);
            paragraphMarkRunProperties71.Append(fontSizeComplexScript97);
            paragraphMarkRunProperties71.Append(shading123);

            paragraphProperties71.Append(paragraphStyleId71);
            paragraphProperties71.Append(paragraphMarkRunProperties71);

            Run run71 = new Run();

            RunProperties runProperties71 = new RunProperties();
            FontSize fontSize98 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "26" };
            Shading shading124 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties71.Append(fontSize98);
            runProperties71.Append(fontSizeComplexScript98);
            runProperties71.Append(shading124);

            run71.Append(runProperties71);

            paragraph71.Append(paragraphProperties71);
            paragraph71.Append(run71);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph71);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan54 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge18 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders54 = new TableCellBorders();
            Shading shading125 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties54.Append(tableCellWidth54);
            tableCellProperties54.Append(gridSpan54);
            tableCellProperties54.Append(verticalMerge18);
            tableCellProperties54.Append(tableCellBorders54);
            tableCellProperties54.Append(shading125);

            Paragraph paragraph72 = new Paragraph();

            ParagraphProperties paragraphProperties72 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId72 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties72 = new ParagraphMarkRunProperties();

            paragraphProperties72.Append(paragraphStyleId72);
            paragraphProperties72.Append(paragraphMarkRunProperties72);

            Run run72 = new Run();
            RunProperties runProperties72 = new RunProperties();

            run72.Append(runProperties72);

            paragraph72.Append(paragraphProperties72);
            paragraph72.Append(run72);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph72);

            tableRow18.Append(tableRowProperties18);
            tableRow18.Append(tableCell52);
            tableRow18.Append(tableCell53);
            tableRow18.Append(tableCell54);

            TableRow tableRow19 = new TableRow();
            TableRowProperties tableRowProperties19 = new TableRowProperties();

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan55 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders55 = new TableCellBorders();
            Shading shading126 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties55.Append(tableCellWidth55);
            tableCellProperties55.Append(gridSpan55);
            tableCellProperties55.Append(tableCellBorders55);
            tableCellProperties55.Append(shading126);

            Paragraph paragraph73 = new Paragraph();

            ParagraphProperties paragraphProperties73 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId73 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties73 = new ParagraphMarkRunProperties();
            FontSize fontSize99 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "26" };
            Shading shading127 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties73.Append(fontSize99);
            paragraphMarkRunProperties73.Append(fontSizeComplexScript99);
            paragraphMarkRunProperties73.Append(shading127);

            paragraphProperties73.Append(paragraphStyleId73);
            paragraphProperties73.Append(paragraphMarkRunProperties73);

            Run run73 = new Run();

            RunProperties runProperties73 = new RunProperties();
            FontSize fontSize100 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "26" };
            Shading shading128 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties73.Append(fontSize100);
            runProperties73.Append(fontSizeComplexScript100);
            runProperties73.Append(shading128);

            run73.Append(runProperties73);

            paragraph73.Append(paragraphProperties73);
            paragraph73.Append(run73);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph73);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan56 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders56 = new TableCellBorders();
            Shading shading129 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties56.Append(tableCellWidth56);
            tableCellProperties56.Append(gridSpan56);
            tableCellProperties56.Append(tableCellBorders56);
            tableCellProperties56.Append(shading129);

            Paragraph paragraph74 = new Paragraph();

            ParagraphProperties paragraphProperties74 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId74 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties74 = new ParagraphMarkRunProperties();
            FontSize fontSize101 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "26" };
            Shading shading130 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties74.Append(fontSize101);
            paragraphMarkRunProperties74.Append(fontSizeComplexScript101);
            paragraphMarkRunProperties74.Append(shading130);

            paragraphProperties74.Append(paragraphStyleId74);
            paragraphProperties74.Append(paragraphMarkRunProperties74);

            Run run74 = new Run();

            RunProperties runProperties74 = new RunProperties();
            FontSize fontSize102 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "26" };
            Shading shading131 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties74.Append(fontSize102);
            runProperties74.Append(fontSizeComplexScript102);
            runProperties74.Append(shading131);

            run74.Append(runProperties74);

            paragraph74.Append(paragraphProperties74);
            paragraph74.Append(run74);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph74);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan57 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders57 = new TableCellBorders();
            Shading shading132 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties57.Append(tableCellWidth57);
            tableCellProperties57.Append(gridSpan57);
            tableCellProperties57.Append(tableCellBorders57);
            tableCellProperties57.Append(shading132);

            Paragraph paragraph75 = new Paragraph();

            ParagraphProperties paragraphProperties75 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId75 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties75 = new ParagraphMarkRunProperties();

            paragraphProperties75.Append(paragraphStyleId75);
            paragraphProperties75.Append(paragraphMarkRunProperties75);

            Run run75 = new Run();

            RunProperties runProperties75 = new RunProperties();
            FontSize fontSize103 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "26" };
            Shading shading133 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties75.Append(fontSize103);
            runProperties75.Append(fontSizeComplexScript103);
            runProperties75.Append(shading133);
            Text text21 = new Text();
            text21.Text = "М.П.";

            run75.Append(runProperties75);
            run75.Append(text21);

            paragraph75.Append(paragraphProperties75);
            paragraph75.Append(run75);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph75);

            tableRow19.Append(tableRowProperties19);
            tableRow19.Append(tableCell55);
            tableRow19.Append(tableCell56);
            tableRow19.Append(tableCell57);

            TableRow tableRow20 = new TableRow();
            TableRowProperties tableRowProperties20 = new TableRowProperties();

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan58 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders58 = new TableCellBorders();
            Shading shading134 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties58.Append(tableCellWidth58);
            tableCellProperties58.Append(gridSpan58);
            tableCellProperties58.Append(tableCellBorders58);
            tableCellProperties58.Append(shading134);

            Paragraph paragraph76 = new Paragraph();

            ParagraphProperties paragraphProperties76 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId76 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties76 = new ParagraphMarkRunProperties();
            FontSize fontSize104 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "26" };
            Shading shading135 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties76.Append(fontSize104);
            paragraphMarkRunProperties76.Append(fontSizeComplexScript104);
            paragraphMarkRunProperties76.Append(shading135);

            paragraphProperties76.Append(paragraphStyleId76);
            paragraphProperties76.Append(paragraphMarkRunProperties76);

            Run run76 = new Run();

            RunProperties runProperties76 = new RunProperties();
            FontSize fontSize105 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "26" };
            Shading shading136 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties76.Append(fontSize105);
            runProperties76.Append(fontSizeComplexScript105);
            runProperties76.Append(shading136);

            run76.Append(runProperties76);

            paragraph76.Append(paragraphProperties76);
            paragraph76.Append(run76);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph76);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan59 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders59 = new TableCellBorders();
            Shading shading137 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(gridSpan59);
            tableCellProperties59.Append(tableCellBorders59);
            tableCellProperties59.Append(shading137);

            Paragraph paragraph77 = new Paragraph();

            ParagraphProperties paragraphProperties77 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId77 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties77 = new ParagraphMarkRunProperties();
            FontSize fontSize106 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "26" };
            Shading shading138 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties77.Append(fontSize106);
            paragraphMarkRunProperties77.Append(fontSizeComplexScript106);
            paragraphMarkRunProperties77.Append(shading138);

            paragraphProperties77.Append(paragraphStyleId77);
            paragraphProperties77.Append(paragraphMarkRunProperties77);

            Run run77 = new Run();

            RunProperties runProperties77 = new RunProperties();
            FontSize fontSize107 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "26" };
            Shading shading139 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties77.Append(fontSize107);
            runProperties77.Append(fontSizeComplexScript107);
            runProperties77.Append(shading139);

            run77.Append(runProperties77);

            paragraph77.Append(paragraphProperties77);
            paragraph77.Append(run77);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph77);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan60 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders60 = new TableCellBorders();
            Shading shading140 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(gridSpan60);
            tableCellProperties60.Append(tableCellBorders60);
            tableCellProperties60.Append(shading140);

            Paragraph paragraph78 = new Paragraph();

            ParagraphProperties paragraphProperties78 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId78 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties78 = new ParagraphMarkRunProperties();
            FontSize fontSize108 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "26" };
            Shading shading141 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties78.Append(fontSize108);
            paragraphMarkRunProperties78.Append(fontSizeComplexScript108);
            paragraphMarkRunProperties78.Append(shading141);

            paragraphProperties78.Append(paragraphStyleId78);
            paragraphProperties78.Append(paragraphMarkRunProperties78);

            Run run78 = new Run();

            RunProperties runProperties78 = new RunProperties();
            FontSize fontSize109 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "26" };
            Shading shading142 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties78.Append(fontSize109);
            runProperties78.Append(fontSizeComplexScript109);
            runProperties78.Append(shading142);

            run78.Append(runProperties78);

            paragraph78.Append(paragraphProperties78);
            paragraph78.Append(run78);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph78);

            tableRow20.Append(tableRowProperties20);
            tableRow20.Append(tableCell58);
            tableRow20.Append(tableCell59);
            tableRow20.Append(tableCell60);

            TableRow tableRow21 = new TableRow();
            TableRowProperties tableRowProperties21 = new TableRowProperties();

            TableCell tableCell61 = new TableCell();

            TableCellProperties tableCellProperties61 = new TableCellProperties();
            TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan61 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders61 = new TableCellBorders();
            Shading shading143 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties61.Append(tableCellWidth61);
            tableCellProperties61.Append(gridSpan61);
            tableCellProperties61.Append(tableCellBorders61);
            tableCellProperties61.Append(shading143);

            Paragraph paragraph79 = new Paragraph();

            ParagraphProperties paragraphProperties79 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId79 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties79 = new ParagraphMarkRunProperties();
            FontSize fontSize110 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "26" };
            Shading shading144 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties79.Append(fontSize110);
            paragraphMarkRunProperties79.Append(fontSizeComplexScript110);
            paragraphMarkRunProperties79.Append(shading144);

            paragraphProperties79.Append(paragraphStyleId79);
            paragraphProperties79.Append(paragraphMarkRunProperties79);

            Run run79 = new Run();

            RunProperties runProperties79 = new RunProperties();
            FontSize fontSize111 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "26" };
            Shading shading145 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties79.Append(fontSize111);
            runProperties79.Append(fontSizeComplexScript111);
            runProperties79.Append(shading145);

            run79.Append(runProperties79);

            paragraph79.Append(paragraphProperties79);
            paragraph79.Append(run79);

            tableCell61.Append(tableCellProperties61);
            tableCell61.Append(paragraph79);

            TableCell tableCell62 = new TableCell();

            TableCellProperties tableCellProperties62 = new TableCellProperties();
            TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan62 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders62 = new TableCellBorders();
            Shading shading146 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties62.Append(tableCellWidth62);
            tableCellProperties62.Append(gridSpan62);
            tableCellProperties62.Append(tableCellBorders62);
            tableCellProperties62.Append(shading146);

            Paragraph paragraph80 = new Paragraph();

            ParagraphProperties paragraphProperties80 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId80 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties80 = new ParagraphMarkRunProperties();
            FontSize fontSize112 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "26" };
            Shading shading147 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties80.Append(fontSize112);
            paragraphMarkRunProperties80.Append(fontSizeComplexScript112);
            paragraphMarkRunProperties80.Append(shading147);

            paragraphProperties80.Append(paragraphStyleId80);
            paragraphProperties80.Append(paragraphMarkRunProperties80);

            Run run80 = new Run();

            RunProperties runProperties80 = new RunProperties();
            FontSize fontSize113 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "26" };
            Shading shading148 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties80.Append(fontSize113);
            runProperties80.Append(fontSizeComplexScript113);
            runProperties80.Append(shading148);

            run80.Append(runProperties80);

            paragraph80.Append(paragraphProperties80);
            paragraph80.Append(run80);

            tableCell62.Append(tableCellProperties62);
            tableCell62.Append(paragraph80);

            TableCell tableCell63 = new TableCell();

            TableCellProperties tableCellProperties63 = new TableCellProperties();
            TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan63 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders63 = new TableCellBorders();
            Shading shading149 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties63.Append(tableCellWidth63);
            tableCellProperties63.Append(gridSpan63);
            tableCellProperties63.Append(tableCellBorders63);
            tableCellProperties63.Append(shading149);

            Paragraph paragraph81 = new Paragraph();

            ParagraphProperties paragraphProperties81 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId81 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties81 = new ParagraphMarkRunProperties();
            FontSize fontSize114 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "26" };
            Shading shading150 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties81.Append(fontSize114);
            paragraphMarkRunProperties81.Append(fontSizeComplexScript114);
            paragraphMarkRunProperties81.Append(shading150);

            paragraphProperties81.Append(paragraphStyleId81);
            paragraphProperties81.Append(paragraphMarkRunProperties81);

            Run run81 = new Run();

            RunProperties runProperties81 = new RunProperties();
            FontSize fontSize115 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "26" };
            Shading shading151 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties81.Append(fontSize115);
            runProperties81.Append(fontSizeComplexScript115);
            runProperties81.Append(shading151);

            run81.Append(runProperties81);

            paragraph81.Append(paragraphProperties81);
            paragraph81.Append(run81);

            tableCell63.Append(tableCellProperties63);
            tableCell63.Append(paragraph81);

            tableRow21.Append(tableRowProperties21);
            tableRow21.Append(tableCell61);
            tableRow21.Append(tableCell62);
            tableRow21.Append(tableCell63);

            TableRow tableRow22 = new TableRow();
            TableRowProperties tableRowProperties22 = new TableRowProperties();

            TableCell tableCell64 = new TableCell();

            TableCellProperties tableCellProperties64 = new TableCellProperties();
            TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan64 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders64 = new TableCellBorders();
            Shading shading152 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties64.Append(tableCellWidth64);
            tableCellProperties64.Append(gridSpan64);
            tableCellProperties64.Append(tableCellBorders64);
            tableCellProperties64.Append(shading152);

            Paragraph paragraph82 = new Paragraph();

            ParagraphProperties paragraphProperties82 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId82 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification28 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties82 = new ParagraphMarkRunProperties();

            paragraphProperties82.Append(paragraphStyleId82);
            paragraphProperties82.Append(justification28);
            paragraphProperties82.Append(paragraphMarkRunProperties82);

            Run run82 = new Run();

            RunProperties runProperties82 = new RunProperties();
            Bold bold4 = new Bold();
            FontSize fontSize116 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "36" };

            runProperties82.Append(bold4);
            runProperties82.Append(fontSize116);
            runProperties82.Append(fontSizeComplexScript116);
            Text text22 = new Text();
            text22.Text = "ПАСПОРТ";

            run82.Append(runProperties82);
            run82.Append(text22);

            paragraph82.Append(paragraphProperties82);
            paragraph82.Append(run82);

            tableCell64.Append(tableCellProperties64);
            tableCell64.Append(paragraph82);

            tableRow22.Append(tableRowProperties22);
            tableRow22.Append(tableCell64);

            TableRow tableRow23 = new TableRow();
            TableRowProperties tableRowProperties23 = new TableRowProperties();

            TableCell tableCell65 = new TableCell();

            TableCellProperties tableCellProperties65 = new TableCellProperties();
            TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan65 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders65 = new TableCellBorders();
            Shading shading153 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties65.Append(tableCellWidth65);
            tableCellProperties65.Append(gridSpan65);
            tableCellProperties65.Append(tableCellBorders65);
            tableCellProperties65.Append(shading153);

            Paragraph paragraph83 = new Paragraph();

            ParagraphProperties paragraphProperties83 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId83 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification29 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties83 = new ParagraphMarkRunProperties();

            paragraphProperties83.Append(paragraphStyleId83);
            paragraphProperties83.Append(justification29);
            paragraphProperties83.Append(paragraphMarkRunProperties83);

            Run run83 = new Run();

            RunProperties runProperties83 = new RunProperties();
            Bold bold5 = new Bold();
            FontSize fontSize117 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "36" };

            runProperties83.Append(bold5);
            runProperties83.Append(fontSize117);
            runProperties83.Append(fontSizeComplexScript117);
            Text text23 = new Text();
            text23.Text = "безопасности объекта топливно-энергетического комплекса";

            run83.Append(runProperties83);
            run83.Append(text23);

            paragraph83.Append(paragraphProperties83);
            paragraph83.Append(run83);

            tableCell65.Append(tableCellProperties65);
            tableCell65.Append(paragraph83);

            tableRow23.Append(tableRowProperties23);
            tableRow23.Append(tableCell65);

            TableRow tableRow24 = new TableRow();
            TableRowProperties tableRowProperties24 = new TableRowProperties();

            TableCell tableCell66 = new TableCell();

            TableCellProperties tableCellProperties66 = new TableCellProperties();
            TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan66 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders66 = new TableCellBorders();
            Shading shading154 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties66.Append(tableCellWidth66);
            tableCellProperties66.Append(gridSpan66);
            tableCellProperties66.Append(tableCellBorders66);
            tableCellProperties66.Append(shading154);

            Paragraph paragraph84 = new Paragraph();

            ParagraphProperties paragraphProperties84 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId84 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification30 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties84 = new ParagraphMarkRunProperties();

            paragraphProperties84.Append(paragraphStyleId84);
            paragraphProperties84.Append(justification30);
            paragraphProperties84.Append(paragraphMarkRunProperties84);

            Run run84 = new Run();

            RunProperties runProperties84 = new RunProperties();
            Bold bold6 = new Bold();
            FontSize fontSize118 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "36" };

            runProperties84.Append(bold6);
            runProperties84.Append(fontSize118);
            runProperties84.Append(fontSizeComplexScript118);
            Text text24 = new Text();
            text24.Text = NameObject;

            run84.Append(runProperties84);
            run84.Append(text24);

            paragraph84.Append(paragraphProperties84);
            paragraph84.Append(run84);

            tableCell66.Append(tableCellProperties66);
            tableCell66.Append(paragraph84);

            tableRow24.Append(tableRowProperties24);
            tableRow24.Append(tableCell66);

            TableRow tableRow25 = new TableRow();
            TableRowProperties tableRowProperties25 = new TableRowProperties();

            TableCell tableCell67 = new TableCell();

            TableCellProperties tableCellProperties67 = new TableCellProperties();
            TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan67 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders67 = new TableCellBorders();
            Shading shading155 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties67.Append(tableCellWidth67);
            tableCellProperties67.Append(gridSpan67);
            tableCellProperties67.Append(tableCellBorders67);
            tableCellProperties67.Append(shading155);

            Paragraph paragraph85 = new Paragraph();

            ParagraphProperties paragraphProperties85 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId85 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification31 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties85 = new ParagraphMarkRunProperties();
            FontSize fontSize119 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "26" };
            Shading shading156 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties85.Append(fontSize119);
            paragraphMarkRunProperties85.Append(fontSizeComplexScript119);
            paragraphMarkRunProperties85.Append(shading156);

            paragraphProperties85.Append(paragraphStyleId85);
            paragraphProperties85.Append(justification31);
            paragraphProperties85.Append(paragraphMarkRunProperties85);

            Run run85 = new Run();

            RunProperties runProperties85 = new RunProperties();
            FontSize fontSize120 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "26" };
            Shading shading157 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties85.Append(fontSize120);
            runProperties85.Append(fontSizeComplexScript120);
            runProperties85.Append(shading157);

            run85.Append(runProperties85);

            paragraph85.Append(paragraphProperties85);
            paragraph85.Append(run85);

            tableCell67.Append(tableCellProperties67);
            tableCell67.Append(paragraph85);

            TableCell tableCell68 = new TableCell();

            TableCellProperties tableCellProperties68 = new TableCellProperties();
            TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan68 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders68 = new TableCellBorders();
            Shading shading158 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties68.Append(tableCellWidth68);
            tableCellProperties68.Append(gridSpan68);
            tableCellProperties68.Append(tableCellBorders68);
            tableCellProperties68.Append(shading158);

            Paragraph paragraph86 = new Paragraph();

            ParagraphProperties paragraphProperties86 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId86 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification32 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties86 = new ParagraphMarkRunProperties();
            FontSize fontSize121 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "26" };
            Shading shading159 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties86.Append(fontSize121);
            paragraphMarkRunProperties86.Append(fontSizeComplexScript121);
            paragraphMarkRunProperties86.Append(shading159);

            paragraphProperties86.Append(paragraphStyleId86);
            paragraphProperties86.Append(justification32);
            paragraphProperties86.Append(paragraphMarkRunProperties86);

            Run run86 = new Run();

            RunProperties runProperties86 = new RunProperties();
            FontSize fontSize122 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "26" };
            Shading shading160 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties86.Append(fontSize122);
            runProperties86.Append(fontSizeComplexScript122);
            runProperties86.Append(shading160);

            run86.Append(runProperties86);

            paragraph86.Append(paragraphProperties86);
            paragraph86.Append(run86);

            tableCell68.Append(tableCellProperties68);
            tableCell68.Append(paragraph86);

            TableCell tableCell69 = new TableCell();

            TableCellProperties tableCellProperties69 = new TableCellProperties();
            TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan69 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders69 = new TableCellBorders();
            Shading shading161 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties69.Append(tableCellWidth69);
            tableCellProperties69.Append(gridSpan69);
            tableCellProperties69.Append(tableCellBorders69);
            tableCellProperties69.Append(shading161);

            Paragraph paragraph87 = new Paragraph();

            ParagraphProperties paragraphProperties87 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId87 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification33 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties87 = new ParagraphMarkRunProperties();
            FontSize fontSize123 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "26" };
            Shading shading162 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties87.Append(fontSize123);
            paragraphMarkRunProperties87.Append(fontSizeComplexScript123);
            paragraphMarkRunProperties87.Append(shading162);

            paragraphProperties87.Append(paragraphStyleId87);
            paragraphProperties87.Append(justification33);
            paragraphProperties87.Append(paragraphMarkRunProperties87);

            Run run87 = new Run();

            RunProperties runProperties87 = new RunProperties();
            FontSize fontSize124 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "26" };
            Shading shading163 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties87.Append(fontSize124);
            runProperties87.Append(fontSizeComplexScript124);
            runProperties87.Append(shading163);

            run87.Append(runProperties87);

            paragraph87.Append(paragraphProperties87);
            paragraph87.Append(run87);

            tableCell69.Append(tableCellProperties69);
            tableCell69.Append(paragraph87);

            tableRow25.Append(tableRowProperties25);
            tableRow25.Append(tableCell67);
            tableRow25.Append(tableCell68);
            tableRow25.Append(tableCell69);

            TableRow tableRow26 = new TableRow();
            TableRowProperties tableRowProperties26 = new TableRowProperties();

            TableCell tableCell70 = new TableCell();

            TableCellProperties tableCellProperties70 = new TableCellProperties();
            TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan70 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders70 = new TableCellBorders();
            Shading shading164 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties70.Append(tableCellWidth70);
            tableCellProperties70.Append(gridSpan70);
            tableCellProperties70.Append(tableCellBorders70);
            tableCellProperties70.Append(shading164);

            Paragraph paragraph88 = new Paragraph();

            ParagraphProperties paragraphProperties88 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId88 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification34 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties88 = new ParagraphMarkRunProperties();
            FontSize fontSize125 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "26" };
            Shading shading165 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties88.Append(fontSize125);
            paragraphMarkRunProperties88.Append(fontSizeComplexScript125);
            paragraphMarkRunProperties88.Append(shading165);

            paragraphProperties88.Append(paragraphStyleId88);
            paragraphProperties88.Append(justification34);
            paragraphProperties88.Append(paragraphMarkRunProperties88);

            Run run88 = new Run();

            RunProperties runProperties88 = new RunProperties();
            FontSize fontSize126 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "26" };
            Shading shading166 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties88.Append(fontSize126);
            runProperties88.Append(fontSizeComplexScript126);
            runProperties88.Append(shading166);

            run88.Append(runProperties88);

            paragraph88.Append(paragraphProperties88);
            paragraph88.Append(run88);

            tableCell70.Append(tableCellProperties70);
            tableCell70.Append(paragraph88);

            TableCell tableCell71 = new TableCell();

            TableCellProperties tableCellProperties71 = new TableCellProperties();
            TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan71 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders71 = new TableCellBorders();
            Shading shading167 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties71.Append(tableCellWidth71);
            tableCellProperties71.Append(gridSpan71);
            tableCellProperties71.Append(tableCellBorders71);
            tableCellProperties71.Append(shading167);

            Paragraph paragraph89 = new Paragraph();

            ParagraphProperties paragraphProperties89 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId89 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification35 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties89 = new ParagraphMarkRunProperties();
            FontSize fontSize127 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "26" };
            Shading shading168 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties89.Append(fontSize127);
            paragraphMarkRunProperties89.Append(fontSizeComplexScript127);
            paragraphMarkRunProperties89.Append(shading168);

            paragraphProperties89.Append(paragraphStyleId89);
            paragraphProperties89.Append(justification35);
            paragraphProperties89.Append(paragraphMarkRunProperties89);

            Run run89 = new Run();

            RunProperties runProperties89 = new RunProperties();
            FontSize fontSize128 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "26" };
            Shading shading169 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties89.Append(fontSize128);
            runProperties89.Append(fontSizeComplexScript128);
            runProperties89.Append(shading169);

            run89.Append(runProperties89);

            paragraph89.Append(paragraphProperties89);
            paragraph89.Append(run89);

            tableCell71.Append(tableCellProperties71);
            tableCell71.Append(paragraph89);

            TableCell tableCell72 = new TableCell();

            TableCellProperties tableCellProperties72 = new TableCellProperties();
            TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan72 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders72 = new TableCellBorders();
            Shading shading170 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties72.Append(tableCellWidth72);
            tableCellProperties72.Append(gridSpan72);
            tableCellProperties72.Append(tableCellBorders72);
            tableCellProperties72.Append(shading170);

            Paragraph paragraph90 = new Paragraph();

            ParagraphProperties paragraphProperties90 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId90 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification36 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties90 = new ParagraphMarkRunProperties();
            FontSize fontSize129 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "26" };
            Shading shading171 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties90.Append(fontSize129);
            paragraphMarkRunProperties90.Append(fontSizeComplexScript129);
            paragraphMarkRunProperties90.Append(shading171);

            paragraphProperties90.Append(paragraphStyleId90);
            paragraphProperties90.Append(justification36);
            paragraphProperties90.Append(paragraphMarkRunProperties90);

            Run run90 = new Run();

            RunProperties runProperties90 = new RunProperties();
            FontSize fontSize130 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript130 = new FontSizeComplexScript() { Val = "26" };
            Shading shading172 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties90.Append(fontSize130);
            runProperties90.Append(fontSizeComplexScript130);
            runProperties90.Append(shading172);

            run90.Append(runProperties90);

            paragraph90.Append(paragraphProperties90);
            paragraph90.Append(run90);

            tableCell72.Append(tableCellProperties72);
            tableCell72.Append(paragraph90);

            tableRow26.Append(tableRowProperties26);
            tableRow26.Append(tableCell70);
            tableRow26.Append(tableCell71);
            tableRow26.Append(tableCell72);

            TableRow tableRow27 = new TableRow();
            TableRowProperties tableRowProperties27 = new TableRowProperties();

            TableCell tableCell73 = new TableCell();

            TableCellProperties tableCellProperties73 = new TableCellProperties();
            TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan73 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders73 = new TableCellBorders();
            Shading shading173 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties73.Append(tableCellWidth73);
            tableCellProperties73.Append(gridSpan73);
            tableCellProperties73.Append(tableCellBorders73);
            tableCellProperties73.Append(shading173);

            Paragraph paragraph91 = new Paragraph();

            ParagraphProperties paragraphProperties91 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId91 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification37 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties91 = new ParagraphMarkRunProperties();
            FontSize fontSize131 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript131 = new FontSizeComplexScript() { Val = "26" };
            Shading shading174 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties91.Append(fontSize131);
            paragraphMarkRunProperties91.Append(fontSizeComplexScript131);
            paragraphMarkRunProperties91.Append(shading174);

            paragraphProperties91.Append(paragraphStyleId91);
            paragraphProperties91.Append(justification37);
            paragraphProperties91.Append(paragraphMarkRunProperties91);

            Run run91 = new Run();

            RunProperties runProperties91 = new RunProperties();
            FontSize fontSize132 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript132 = new FontSizeComplexScript() { Val = "26" };
            Shading shading175 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties91.Append(fontSize132);
            runProperties91.Append(fontSizeComplexScript132);
            runProperties91.Append(shading175);

            run91.Append(runProperties91);

            paragraph91.Append(paragraphProperties91);
            paragraph91.Append(run91);

            tableCell73.Append(tableCellProperties73);
            tableCell73.Append(paragraph91);

            TableCell tableCell74 = new TableCell();

            TableCellProperties tableCellProperties74 = new TableCellProperties();
            TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan74 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders74 = new TableCellBorders();
            Shading shading176 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties74.Append(tableCellWidth74);
            tableCellProperties74.Append(gridSpan74);
            tableCellProperties74.Append(tableCellBorders74);
            tableCellProperties74.Append(shading176);

            Paragraph paragraph92 = new Paragraph();

            ParagraphProperties paragraphProperties92 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId92 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification38 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties92 = new ParagraphMarkRunProperties();
            FontSize fontSize133 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript133 = new FontSizeComplexScript() { Val = "26" };
            Shading shading177 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties92.Append(fontSize133);
            paragraphMarkRunProperties92.Append(fontSizeComplexScript133);
            paragraphMarkRunProperties92.Append(shading177);

            paragraphProperties92.Append(paragraphStyleId92);
            paragraphProperties92.Append(justification38);
            paragraphProperties92.Append(paragraphMarkRunProperties92);

            Run run92 = new Run();

            RunProperties runProperties92 = new RunProperties();
            FontSize fontSize134 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript134 = new FontSizeComplexScript() { Val = "26" };
            Shading shading178 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties92.Append(fontSize134);
            runProperties92.Append(fontSizeComplexScript134);
            runProperties92.Append(shading178);

            run92.Append(runProperties92);

            paragraph92.Append(paragraphProperties92);
            paragraph92.Append(run92);

            tableCell74.Append(tableCellProperties74);
            tableCell74.Append(paragraph92);

            TableCell tableCell75 = new TableCell();

            TableCellProperties tableCellProperties75 = new TableCellProperties();
            TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan75 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders75 = new TableCellBorders();
            Shading shading179 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties75.Append(tableCellWidth75);
            tableCellProperties75.Append(gridSpan75);
            tableCellProperties75.Append(tableCellBorders75);
            tableCellProperties75.Append(shading179);

            Paragraph paragraph93 = new Paragraph();

            ParagraphProperties paragraphProperties93 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId93 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification39 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties93 = new ParagraphMarkRunProperties();
            FontSize fontSize135 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript135 = new FontSizeComplexScript() { Val = "26" };
            Shading shading180 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties93.Append(fontSize135);
            paragraphMarkRunProperties93.Append(fontSizeComplexScript135);
            paragraphMarkRunProperties93.Append(shading180);

            paragraphProperties93.Append(paragraphStyleId93);
            paragraphProperties93.Append(justification39);
            paragraphProperties93.Append(paragraphMarkRunProperties93);

            Run run93 = new Run();

            RunProperties runProperties93 = new RunProperties();
            FontSize fontSize136 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript136 = new FontSizeComplexScript() { Val = "26" };
            Shading shading181 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties93.Append(fontSize136);
            runProperties93.Append(fontSizeComplexScript136);
            runProperties93.Append(shading181);

            run93.Append(runProperties93);

            paragraph93.Append(paragraphProperties93);
            paragraph93.Append(run93);

            tableCell75.Append(tableCellProperties75);
            tableCell75.Append(paragraph93);

            tableRow27.Append(tableRowProperties27);
            tableRow27.Append(tableCell73);
            tableRow27.Append(tableCell74);
            tableRow27.Append(tableCell75);

            TableRow tableRow28 = new TableRow();
            TableRowProperties tableRowProperties28 = new TableRowProperties();

            TableCell tableCell76 = new TableCell();

            TableCellProperties tableCellProperties76 = new TableCellProperties();
            TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan76 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders76 = new TableCellBorders();
            Shading shading182 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties76.Append(tableCellWidth76);
            tableCellProperties76.Append(gridSpan76);
            tableCellProperties76.Append(tableCellBorders76);
            tableCellProperties76.Append(shading182);

            Paragraph paragraph94 = new Paragraph();

            ParagraphProperties paragraphProperties94 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId94 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification40 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties94 = new ParagraphMarkRunProperties();
            FontSize fontSize137 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript137 = new FontSizeComplexScript() { Val = "26" };
            Shading shading183 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties94.Append(fontSize137);
            paragraphMarkRunProperties94.Append(fontSizeComplexScript137);
            paragraphMarkRunProperties94.Append(shading183);

            paragraphProperties94.Append(paragraphStyleId94);
            paragraphProperties94.Append(justification40);
            paragraphProperties94.Append(paragraphMarkRunProperties94);

            Run run94 = new Run();

            RunProperties runProperties94 = new RunProperties();
            FontSize fontSize138 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript138 = new FontSizeComplexScript() { Val = "26" };
            Shading shading184 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties94.Append(fontSize138);
            runProperties94.Append(fontSizeComplexScript138);
            runProperties94.Append(shading184);

            run94.Append(runProperties94);

            paragraph94.Append(paragraphProperties94);
            paragraph94.Append(run94);

            tableCell76.Append(tableCellProperties76);
            tableCell76.Append(paragraph94);

            TableCell tableCell77 = new TableCell();

            TableCellProperties tableCellProperties77 = new TableCellProperties();
            TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan77 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders77 = new TableCellBorders();
            Shading shading185 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties77.Append(tableCellWidth77);
            tableCellProperties77.Append(gridSpan77);
            tableCellProperties77.Append(tableCellBorders77);
            tableCellProperties77.Append(shading185);

            Paragraph paragraph95 = new Paragraph();

            ParagraphProperties paragraphProperties95 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId95 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification41 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties95 = new ParagraphMarkRunProperties();
            FontSize fontSize139 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript139 = new FontSizeComplexScript() { Val = "26" };
            Shading shading186 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties95.Append(fontSize139);
            paragraphMarkRunProperties95.Append(fontSizeComplexScript139);
            paragraphMarkRunProperties95.Append(shading186);

            paragraphProperties95.Append(paragraphStyleId95);
            paragraphProperties95.Append(justification41);
            paragraphProperties95.Append(paragraphMarkRunProperties95);

            Run run95 = new Run();

            RunProperties runProperties95 = new RunProperties();
            FontSize fontSize140 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript140 = new FontSizeComplexScript() { Val = "26" };
            Shading shading187 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties95.Append(fontSize140);
            runProperties95.Append(fontSizeComplexScript140);
            runProperties95.Append(shading187);

            run95.Append(runProperties95);

            paragraph95.Append(paragraphProperties95);
            paragraph95.Append(run95);

            tableCell77.Append(tableCellProperties77);
            tableCell77.Append(paragraph95);

            TableCell tableCell78 = new TableCell();

            TableCellProperties tableCellProperties78 = new TableCellProperties();
            TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan78 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders78 = new TableCellBorders();
            Shading shading188 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties78.Append(tableCellWidth78);
            tableCellProperties78.Append(gridSpan78);
            tableCellProperties78.Append(tableCellBorders78);
            tableCellProperties78.Append(shading188);

            Paragraph paragraph96 = new Paragraph();

            ParagraphProperties paragraphProperties96 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId96 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification42 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties96 = new ParagraphMarkRunProperties();
            FontSize fontSize141 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript141 = new FontSizeComplexScript() { Val = "26" };
            Shading shading189 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties96.Append(fontSize141);
            paragraphMarkRunProperties96.Append(fontSizeComplexScript141);
            paragraphMarkRunProperties96.Append(shading189);

            paragraphProperties96.Append(paragraphStyleId96);
            paragraphProperties96.Append(justification42);
            paragraphProperties96.Append(paragraphMarkRunProperties96);

            Run run96 = new Run();

            RunProperties runProperties96 = new RunProperties();
            FontSize fontSize142 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript142 = new FontSizeComplexScript() { Val = "26" };
            Shading shading190 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties96.Append(fontSize142);
            runProperties96.Append(fontSizeComplexScript142);
            runProperties96.Append(shading190);

            run96.Append(runProperties96);

            paragraph96.Append(paragraphProperties96);
            paragraph96.Append(run96);

            tableCell78.Append(tableCellProperties78);
            tableCell78.Append(paragraph96);

            tableRow28.Append(tableRowProperties28);
            tableRow28.Append(tableCell76);
            tableRow28.Append(tableCell77);
            tableRow28.Append(tableCell78);

            TableRow tableRow29 = new TableRow();
            TableRowProperties tableRowProperties29 = new TableRowProperties();

            TableCell tableCell79 = new TableCell();

            TableCellProperties tableCellProperties79 = new TableCellProperties();
            TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan79 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders79 = new TableCellBorders();
            Shading shading191 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties79.Append(tableCellWidth79);
            tableCellProperties79.Append(gridSpan79);
            tableCellProperties79.Append(tableCellBorders79);
            tableCellProperties79.Append(shading191);

            Paragraph paragraph97 = new Paragraph();

            ParagraphProperties paragraphProperties97 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId97 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification43 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties97 = new ParagraphMarkRunProperties();
            FontSize fontSize143 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript143 = new FontSizeComplexScript() { Val = "26" };
            Shading shading192 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties97.Append(fontSize143);
            paragraphMarkRunProperties97.Append(fontSizeComplexScript143);
            paragraphMarkRunProperties97.Append(shading192);

            paragraphProperties97.Append(paragraphStyleId97);
            paragraphProperties97.Append(justification43);
            paragraphProperties97.Append(paragraphMarkRunProperties97);

            Run run97 = new Run();

            RunProperties runProperties97 = new RunProperties();
            FontSize fontSize144 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript144 = new FontSizeComplexScript() { Val = "26" };
            Shading shading193 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties97.Append(fontSize144);
            runProperties97.Append(fontSizeComplexScript144);
            runProperties97.Append(shading193);

            run97.Append(runProperties97);

            paragraph97.Append(paragraphProperties97);
            paragraph97.Append(run97);

            tableCell79.Append(tableCellProperties79);
            tableCell79.Append(paragraph97);

            TableCell tableCell80 = new TableCell();

            TableCellProperties tableCellProperties80 = new TableCellProperties();
            TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan80 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders80 = new TableCellBorders();
            Shading shading194 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties80.Append(tableCellWidth80);
            tableCellProperties80.Append(gridSpan80);
            tableCellProperties80.Append(tableCellBorders80);
            tableCellProperties80.Append(shading194);

            Paragraph paragraph98 = new Paragraph();

            ParagraphProperties paragraphProperties98 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId98 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification44 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties98 = new ParagraphMarkRunProperties();
            FontSize fontSize145 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript145 = new FontSizeComplexScript() { Val = "26" };
            Shading shading195 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties98.Append(fontSize145);
            paragraphMarkRunProperties98.Append(fontSizeComplexScript145);
            paragraphMarkRunProperties98.Append(shading195);

            paragraphProperties98.Append(paragraphStyleId98);
            paragraphProperties98.Append(justification44);
            paragraphProperties98.Append(paragraphMarkRunProperties98);

            Run run98 = new Run();

            RunProperties runProperties98 = new RunProperties();
            FontSize fontSize146 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript146 = new FontSizeComplexScript() { Val = "26" };
            Shading shading196 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties98.Append(fontSize146);
            runProperties98.Append(fontSizeComplexScript146);
            runProperties98.Append(shading196);

            run98.Append(runProperties98);

            paragraph98.Append(paragraphProperties98);
            paragraph98.Append(run98);

            tableCell80.Append(tableCellProperties80);
            tableCell80.Append(paragraph98);

            TableCell tableCell81 = new TableCell();

            TableCellProperties tableCellProperties81 = new TableCellProperties();
            TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan81 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders81 = new TableCellBorders();
            Shading shading197 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties81.Append(tableCellWidth81);
            tableCellProperties81.Append(gridSpan81);
            tableCellProperties81.Append(tableCellBorders81);
            tableCellProperties81.Append(shading197);

            Paragraph paragraph99 = new Paragraph();

            ParagraphProperties paragraphProperties99 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId99 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification45 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties99 = new ParagraphMarkRunProperties();
            FontSize fontSize147 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript147 = new FontSizeComplexScript() { Val = "26" };
            Shading shading198 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties99.Append(fontSize147);
            paragraphMarkRunProperties99.Append(fontSizeComplexScript147);
            paragraphMarkRunProperties99.Append(shading198);

            paragraphProperties99.Append(paragraphStyleId99);
            paragraphProperties99.Append(justification45);
            paragraphProperties99.Append(paragraphMarkRunProperties99);

            Run run99 = new Run();

            RunProperties runProperties99 = new RunProperties();
            FontSize fontSize148 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript148 = new FontSizeComplexScript() { Val = "26" };
            Shading shading199 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties99.Append(fontSize148);
            runProperties99.Append(fontSizeComplexScript148);
            runProperties99.Append(shading199);

            run99.Append(runProperties99);

            paragraph99.Append(paragraphProperties99);
            paragraph99.Append(run99);

            tableCell81.Append(tableCellProperties81);
            tableCell81.Append(paragraph99);

            tableRow29.Append(tableRowProperties29);
            tableRow29.Append(tableCell79);
            tableRow29.Append(tableCell80);
            tableRow29.Append(tableCell81);

            TableRow tableRow30 = new TableRow();
            TableRowProperties tableRowProperties30 = new TableRowProperties();

            TableCell tableCell82 = new TableCell();

            TableCellProperties tableCellProperties82 = new TableCellProperties();
            TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan82 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders82 = new TableCellBorders();
            Shading shading200 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties82.Append(tableCellWidth82);
            tableCellProperties82.Append(gridSpan82);
            tableCellProperties82.Append(tableCellBorders82);
            tableCellProperties82.Append(shading200);

            Paragraph paragraph100 = new Paragraph();

            ParagraphProperties paragraphProperties100 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId100 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification46 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties100 = new ParagraphMarkRunProperties();
            FontSize fontSize149 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript149 = new FontSizeComplexScript() { Val = "26" };
            Shading shading201 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties100.Append(fontSize149);
            paragraphMarkRunProperties100.Append(fontSizeComplexScript149);
            paragraphMarkRunProperties100.Append(shading201);

            paragraphProperties100.Append(paragraphStyleId100);
            paragraphProperties100.Append(justification46);
            paragraphProperties100.Append(paragraphMarkRunProperties100);

            Run run100 = new Run();

            RunProperties runProperties100 = new RunProperties();
            FontSize fontSize150 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript150 = new FontSizeComplexScript() { Val = "26" };
            Shading shading202 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties100.Append(fontSize150);
            runProperties100.Append(fontSizeComplexScript150);
            runProperties100.Append(shading202);

            run100.Append(runProperties100);

            paragraph100.Append(paragraphProperties100);
            paragraph100.Append(run100);

            tableCell82.Append(tableCellProperties82);
            tableCell82.Append(paragraph100);

            TableCell tableCell83 = new TableCell();

            TableCellProperties tableCellProperties83 = new TableCellProperties();
            TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan83 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders83 = new TableCellBorders();
            Shading shading203 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties83.Append(tableCellWidth83);
            tableCellProperties83.Append(gridSpan83);
            tableCellProperties83.Append(tableCellBorders83);
            tableCellProperties83.Append(shading203);

            Paragraph paragraph101 = new Paragraph();

            ParagraphProperties paragraphProperties101 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId101 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification47 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties101 = new ParagraphMarkRunProperties();
            FontSize fontSize151 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript151 = new FontSizeComplexScript() { Val = "26" };
            Shading shading204 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties101.Append(fontSize151);
            paragraphMarkRunProperties101.Append(fontSizeComplexScript151);
            paragraphMarkRunProperties101.Append(shading204);

            paragraphProperties101.Append(paragraphStyleId101);
            paragraphProperties101.Append(justification47);
            paragraphProperties101.Append(paragraphMarkRunProperties101);

            Run run101 = new Run();

            RunProperties runProperties101 = new RunProperties();
            FontSize fontSize152 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript152 = new FontSizeComplexScript() { Val = "26" };
            Shading shading205 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties101.Append(fontSize152);
            runProperties101.Append(fontSizeComplexScript152);
            runProperties101.Append(shading205);

            run101.Append(runProperties101);

            paragraph101.Append(paragraphProperties101);
            paragraph101.Append(run101);

            tableCell83.Append(tableCellProperties83);
            tableCell83.Append(paragraph101);

            TableCell tableCell84 = new TableCell();

            TableCellProperties tableCellProperties84 = new TableCellProperties();
            TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan84 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders84 = new TableCellBorders();
            Shading shading206 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties84.Append(tableCellWidth84);
            tableCellProperties84.Append(gridSpan84);
            tableCellProperties84.Append(tableCellBorders84);
            tableCellProperties84.Append(shading206);

            Paragraph paragraph102 = new Paragraph();

            ParagraphProperties paragraphProperties102 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId102 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification48 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties102 = new ParagraphMarkRunProperties();
            FontSize fontSize153 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript153 = new FontSizeComplexScript() { Val = "26" };
            Shading shading207 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties102.Append(fontSize153);
            paragraphMarkRunProperties102.Append(fontSizeComplexScript153);
            paragraphMarkRunProperties102.Append(shading207);

            paragraphProperties102.Append(paragraphStyleId102);
            paragraphProperties102.Append(justification48);
            paragraphProperties102.Append(paragraphMarkRunProperties102);

            Run run102 = new Run();

            RunProperties runProperties102 = new RunProperties();
            FontSize fontSize154 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript154 = new FontSizeComplexScript() { Val = "26" };
            Shading shading208 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties102.Append(fontSize154);
            runProperties102.Append(fontSizeComplexScript154);
            runProperties102.Append(shading208);

            run102.Append(runProperties102);

            paragraph102.Append(paragraphProperties102);
            paragraph102.Append(run102);

            tableCell84.Append(tableCellProperties84);
            tableCell84.Append(paragraph102);

            tableRow30.Append(tableRowProperties30);
            tableRow30.Append(tableCell82);
            tableRow30.Append(tableCell83);
            tableRow30.Append(tableCell84);

            TableRow tableRow31 = new TableRow();
            TableRowProperties tableRowProperties31 = new TableRowProperties();

            TableCell tableCell85 = new TableCell();

            TableCellProperties tableCellProperties85 = new TableCellProperties();
            TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan85 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders85 = new TableCellBorders();
            Shading shading209 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties85.Append(tableCellWidth85);
            tableCellProperties85.Append(gridSpan85);
            tableCellProperties85.Append(tableCellBorders85);
            tableCellProperties85.Append(shading209);

            Paragraph paragraph103 = new Paragraph();

            ParagraphProperties paragraphProperties103 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId103 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification49 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties103 = new ParagraphMarkRunProperties();
            FontSize fontSize155 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript155 = new FontSizeComplexScript() { Val = "26" };
            Shading shading210 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties103.Append(fontSize155);
            paragraphMarkRunProperties103.Append(fontSizeComplexScript155);
            paragraphMarkRunProperties103.Append(shading210);

            paragraphProperties103.Append(paragraphStyleId103);
            paragraphProperties103.Append(justification49);
            paragraphProperties103.Append(paragraphMarkRunProperties103);

            Run run103 = new Run();

            RunProperties runProperties103 = new RunProperties();
            FontSize fontSize156 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript156 = new FontSizeComplexScript() { Val = "26" };
            Shading shading211 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties103.Append(fontSize156);
            runProperties103.Append(fontSizeComplexScript156);
            runProperties103.Append(shading211);

            run103.Append(runProperties103);

            paragraph103.Append(paragraphProperties103);
            paragraph103.Append(run103);

            tableCell85.Append(tableCellProperties85);
            tableCell85.Append(paragraph103);

            TableCell tableCell86 = new TableCell();

            TableCellProperties tableCellProperties86 = new TableCellProperties();
            TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan86 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders86 = new TableCellBorders();
            Shading shading212 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties86.Append(tableCellWidth86);
            tableCellProperties86.Append(gridSpan86);
            tableCellProperties86.Append(tableCellBorders86);
            tableCellProperties86.Append(shading212);

            Paragraph paragraph104 = new Paragraph();

            ParagraphProperties paragraphProperties104 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId104 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification50 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties104 = new ParagraphMarkRunProperties();
            FontSize fontSize157 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript157 = new FontSizeComplexScript() { Val = "26" };
            Shading shading213 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties104.Append(fontSize157);
            paragraphMarkRunProperties104.Append(fontSizeComplexScript157);
            paragraphMarkRunProperties104.Append(shading213);

            paragraphProperties104.Append(paragraphStyleId104);
            paragraphProperties104.Append(justification50);
            paragraphProperties104.Append(paragraphMarkRunProperties104);

            Run run104 = new Run();

            RunProperties runProperties104 = new RunProperties();
            FontSize fontSize158 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript158 = new FontSizeComplexScript() { Val = "26" };
            Shading shading214 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties104.Append(fontSize158);
            runProperties104.Append(fontSizeComplexScript158);
            runProperties104.Append(shading214);

            run104.Append(runProperties104);

            paragraph104.Append(paragraphProperties104);
            paragraph104.Append(run104);

            tableCell86.Append(tableCellProperties86);
            tableCell86.Append(paragraph104);

            TableCell tableCell87 = new TableCell();

            TableCellProperties tableCellProperties87 = new TableCellProperties();
            TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan87 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders87 = new TableCellBorders();
            Shading shading215 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties87.Append(tableCellWidth87);
            tableCellProperties87.Append(gridSpan87);
            tableCellProperties87.Append(tableCellBorders87);
            tableCellProperties87.Append(shading215);

            Paragraph paragraph105 = new Paragraph();

            ParagraphProperties paragraphProperties105 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId105 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification51 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties105 = new ParagraphMarkRunProperties();
            FontSize fontSize159 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript159 = new FontSizeComplexScript() { Val = "26" };
            Shading shading216 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties105.Append(fontSize159);
            paragraphMarkRunProperties105.Append(fontSizeComplexScript159);
            paragraphMarkRunProperties105.Append(shading216);

            paragraphProperties105.Append(paragraphStyleId105);
            paragraphProperties105.Append(justification51);
            paragraphProperties105.Append(paragraphMarkRunProperties105);

            Run run105 = new Run();

            RunProperties runProperties105 = new RunProperties();
            FontSize fontSize160 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript160 = new FontSizeComplexScript() { Val = "26" };
            Shading shading217 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties105.Append(fontSize160);
            runProperties105.Append(fontSizeComplexScript160);
            runProperties105.Append(shading217);

            run105.Append(runProperties105);

            paragraph105.Append(paragraphProperties105);
            paragraph105.Append(run105);

            tableCell87.Append(tableCellProperties87);
            tableCell87.Append(paragraph105);

            tableRow31.Append(tableRowProperties31);
            tableRow31.Append(tableCell85);
            tableRow31.Append(tableCell86);
            tableRow31.Append(tableCell87);

            TableRow tableRow32 = new TableRow();
            TableRowProperties tableRowProperties32 = new TableRowProperties();

            TableCell tableCell88 = new TableCell();

            TableCellProperties tableCellProperties88 = new TableCellProperties();
            TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan88 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders88 = new TableCellBorders();
            Shading shading218 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties88.Append(tableCellWidth88);
            tableCellProperties88.Append(gridSpan88);
            tableCellProperties88.Append(tableCellBorders88);
            tableCellProperties88.Append(shading218);

            Paragraph paragraph106 = new Paragraph();

            ParagraphProperties paragraphProperties106 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId106 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification52 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties106 = new ParagraphMarkRunProperties();
            FontSize fontSize161 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript161 = new FontSizeComplexScript() { Val = "26" };
            Shading shading219 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties106.Append(fontSize161);
            paragraphMarkRunProperties106.Append(fontSizeComplexScript161);
            paragraphMarkRunProperties106.Append(shading219);

            paragraphProperties106.Append(paragraphStyleId106);
            paragraphProperties106.Append(justification52);
            paragraphProperties106.Append(paragraphMarkRunProperties106);

            Run run106 = new Run();

            RunProperties runProperties106 = new RunProperties();
            FontSize fontSize162 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript162 = new FontSizeComplexScript() { Val = "26" };
            Shading shading220 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties106.Append(fontSize162);
            runProperties106.Append(fontSizeComplexScript162);
            runProperties106.Append(shading220);

            run106.Append(runProperties106);

            paragraph106.Append(paragraphProperties106);
            paragraph106.Append(run106);

            tableCell88.Append(tableCellProperties88);
            tableCell88.Append(paragraph106);

            TableCell tableCell89 = new TableCell();

            TableCellProperties tableCellProperties89 = new TableCellProperties();
            TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan89 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders89 = new TableCellBorders();
            Shading shading221 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties89.Append(tableCellWidth89);
            tableCellProperties89.Append(gridSpan89);
            tableCellProperties89.Append(tableCellBorders89);
            tableCellProperties89.Append(shading221);

            Paragraph paragraph107 = new Paragraph();

            ParagraphProperties paragraphProperties107 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId107 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification53 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties107 = new ParagraphMarkRunProperties();
            FontSize fontSize163 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript163 = new FontSizeComplexScript() { Val = "26" };
            Shading shading222 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties107.Append(fontSize163);
            paragraphMarkRunProperties107.Append(fontSizeComplexScript163);
            paragraphMarkRunProperties107.Append(shading222);

            paragraphProperties107.Append(paragraphStyleId107);
            paragraphProperties107.Append(justification53);
            paragraphProperties107.Append(paragraphMarkRunProperties107);

            Run run107 = new Run();

            RunProperties runProperties107 = new RunProperties();
            FontSize fontSize164 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript164 = new FontSizeComplexScript() { Val = "26" };
            Shading shading223 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties107.Append(fontSize164);
            runProperties107.Append(fontSizeComplexScript164);
            runProperties107.Append(shading223);

            run107.Append(runProperties107);

            paragraph107.Append(paragraphProperties107);
            paragraph107.Append(run107);

            tableCell89.Append(tableCellProperties89);
            tableCell89.Append(paragraph107);

            TableCell tableCell90 = new TableCell();

            TableCellProperties tableCellProperties90 = new TableCellProperties();
            TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan90 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders90 = new TableCellBorders();
            Shading shading224 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties90.Append(tableCellWidth90);
            tableCellProperties90.Append(gridSpan90);
            tableCellProperties90.Append(tableCellBorders90);
            tableCellProperties90.Append(shading224);

            Paragraph paragraph108 = new Paragraph();

            ParagraphProperties paragraphProperties108 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId108 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification54 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties108 = new ParagraphMarkRunProperties();
            FontSize fontSize165 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript165 = new FontSizeComplexScript() { Val = "26" };
            Shading shading225 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties108.Append(fontSize165);
            paragraphMarkRunProperties108.Append(fontSizeComplexScript165);
            paragraphMarkRunProperties108.Append(shading225);

            paragraphProperties108.Append(paragraphStyleId108);
            paragraphProperties108.Append(justification54);
            paragraphProperties108.Append(paragraphMarkRunProperties108);

            Run run108 = new Run();

            RunProperties runProperties108 = new RunProperties();
            FontSize fontSize166 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript166 = new FontSizeComplexScript() { Val = "26" };
            Shading shading226 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties108.Append(fontSize166);
            runProperties108.Append(fontSizeComplexScript166);
            runProperties108.Append(shading226);

            run108.Append(runProperties108);

            paragraph108.Append(paragraphProperties108);
            paragraph108.Append(run108);

            tableCell90.Append(tableCellProperties90);
            tableCell90.Append(paragraph108);

            tableRow32.Append(tableRowProperties32);
            tableRow32.Append(tableCell88);
            tableRow32.Append(tableCell89);
            tableRow32.Append(tableCell90);

            TableRow tableRow33 = new TableRow();
            TableRowProperties tableRowProperties33 = new TableRowProperties();

            TableCell tableCell91 = new TableCell();

            TableCellProperties tableCellProperties91 = new TableCellProperties();
            TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan91 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders91 = new TableCellBorders();
            Shading shading227 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties91.Append(tableCellWidth91);
            tableCellProperties91.Append(gridSpan91);
            tableCellProperties91.Append(tableCellBorders91);
            tableCellProperties91.Append(shading227);

            Paragraph paragraph109 = new Paragraph();

            ParagraphProperties paragraphProperties109 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId109 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification55 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties109 = new ParagraphMarkRunProperties();
            FontSize fontSize167 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript167 = new FontSizeComplexScript() { Val = "26" };
            Shading shading228 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties109.Append(fontSize167);
            paragraphMarkRunProperties109.Append(fontSizeComplexScript167);
            paragraphMarkRunProperties109.Append(shading228);

            paragraphProperties109.Append(paragraphStyleId109);
            paragraphProperties109.Append(justification55);
            paragraphProperties109.Append(paragraphMarkRunProperties109);

            Run run109 = new Run();

            RunProperties runProperties109 = new RunProperties();
            FontSize fontSize168 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript168 = new FontSizeComplexScript() { Val = "26" };
            Shading shading229 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties109.Append(fontSize168);
            runProperties109.Append(fontSizeComplexScript168);
            runProperties109.Append(shading229);

            run109.Append(runProperties109);

            paragraph109.Append(paragraphProperties109);
            paragraph109.Append(run109);

            tableCell91.Append(tableCellProperties91);
            tableCell91.Append(paragraph109);

            TableCell tableCell92 = new TableCell();

            TableCellProperties tableCellProperties92 = new TableCellProperties();
            TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan92 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders92 = new TableCellBorders();
            Shading shading230 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties92.Append(tableCellWidth92);
            tableCellProperties92.Append(gridSpan92);
            tableCellProperties92.Append(tableCellBorders92);
            tableCellProperties92.Append(shading230);

            Paragraph paragraph110 = new Paragraph();

            ParagraphProperties paragraphProperties110 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId110 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification56 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties110 = new ParagraphMarkRunProperties();
            FontSize fontSize169 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript169 = new FontSizeComplexScript() { Val = "26" };
            Shading shading231 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties110.Append(fontSize169);
            paragraphMarkRunProperties110.Append(fontSizeComplexScript169);
            paragraphMarkRunProperties110.Append(shading231);

            paragraphProperties110.Append(paragraphStyleId110);
            paragraphProperties110.Append(justification56);
            paragraphProperties110.Append(paragraphMarkRunProperties110);

            Run run110 = new Run();

            RunProperties runProperties110 = new RunProperties();
            FontSize fontSize170 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript170 = new FontSizeComplexScript() { Val = "26" };
            Shading shading232 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties110.Append(fontSize170);
            runProperties110.Append(fontSizeComplexScript170);
            runProperties110.Append(shading232);

            run110.Append(runProperties110);

            paragraph110.Append(paragraphProperties110);
            paragraph110.Append(run110);

            tableCell92.Append(tableCellProperties92);
            tableCell92.Append(paragraph110);

            TableCell tableCell93 = new TableCell();

            TableCellProperties tableCellProperties93 = new TableCellProperties();
            TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan93 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders93 = new TableCellBorders();
            Shading shading233 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties93.Append(tableCellWidth93);
            tableCellProperties93.Append(gridSpan93);
            tableCellProperties93.Append(tableCellBorders93);
            tableCellProperties93.Append(shading233);

            Paragraph paragraph111 = new Paragraph();

            ParagraphProperties paragraphProperties111 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId111 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification57 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties111 = new ParagraphMarkRunProperties();
            FontSize fontSize171 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript171 = new FontSizeComplexScript() { Val = "26" };
            Shading shading234 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties111.Append(fontSize171);
            paragraphMarkRunProperties111.Append(fontSizeComplexScript171);
            paragraphMarkRunProperties111.Append(shading234);

            paragraphProperties111.Append(paragraphStyleId111);
            paragraphProperties111.Append(justification57);
            paragraphProperties111.Append(paragraphMarkRunProperties111);

            Run run111 = new Run();

            RunProperties runProperties111 = new RunProperties();
            FontSize fontSize172 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript172 = new FontSizeComplexScript() { Val = "26" };
            Shading shading235 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties111.Append(fontSize172);
            runProperties111.Append(fontSizeComplexScript172);
            runProperties111.Append(shading235);

            run111.Append(runProperties111);

            paragraph111.Append(paragraphProperties111);
            paragraph111.Append(run111);

            tableCell93.Append(tableCellProperties93);
            tableCell93.Append(paragraph111);

            tableRow33.Append(tableRowProperties33);
            tableRow33.Append(tableCell91);
            tableRow33.Append(tableCell92);
            tableRow33.Append(tableCell93);

            TableRow tableRow34 = new TableRow();
            TableRowProperties tableRowProperties34 = new TableRowProperties();

            TableCell tableCell94 = new TableCell();

            TableCellProperties tableCellProperties94 = new TableCellProperties();
            TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan94 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders94 = new TableCellBorders();
            Shading shading236 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties94.Append(tableCellWidth94);
            tableCellProperties94.Append(gridSpan94);
            tableCellProperties94.Append(tableCellBorders94);
            tableCellProperties94.Append(shading236);

            Paragraph paragraph112 = new Paragraph();

            ParagraphProperties paragraphProperties112 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId112 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification58 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties112 = new ParagraphMarkRunProperties();
            FontSize fontSize173 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript173 = new FontSizeComplexScript() { Val = "26" };
            Shading shading237 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties112.Append(fontSize173);
            paragraphMarkRunProperties112.Append(fontSizeComplexScript173);
            paragraphMarkRunProperties112.Append(shading237);

            paragraphProperties112.Append(paragraphStyleId112);
            paragraphProperties112.Append(justification58);
            paragraphProperties112.Append(paragraphMarkRunProperties112);

            Run run112 = new Run();

            RunProperties runProperties112 = new RunProperties();
            FontSize fontSize174 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript174 = new FontSizeComplexScript() { Val = "26" };
            Shading shading238 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties112.Append(fontSize174);
            runProperties112.Append(fontSizeComplexScript174);
            runProperties112.Append(shading238);

            run112.Append(runProperties112);

            paragraph112.Append(paragraphProperties112);
            paragraph112.Append(run112);

            tableCell94.Append(tableCellProperties94);
            tableCell94.Append(paragraph112);

            TableCell tableCell95 = new TableCell();

            TableCellProperties tableCellProperties95 = new TableCellProperties();
            TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan95 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders95 = new TableCellBorders();
            Shading shading239 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties95.Append(tableCellWidth95);
            tableCellProperties95.Append(gridSpan95);
            tableCellProperties95.Append(tableCellBorders95);
            tableCellProperties95.Append(shading239);

            Paragraph paragraph113 = new Paragraph();

            ParagraphProperties paragraphProperties113 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId113 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification59 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties113 = new ParagraphMarkRunProperties();
            FontSize fontSize175 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript175 = new FontSizeComplexScript() { Val = "26" };
            Shading shading240 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties113.Append(fontSize175);
            paragraphMarkRunProperties113.Append(fontSizeComplexScript175);
            paragraphMarkRunProperties113.Append(shading240);

            paragraphProperties113.Append(paragraphStyleId113);
            paragraphProperties113.Append(justification59);
            paragraphProperties113.Append(paragraphMarkRunProperties113);

            Run run113 = new Run();

            RunProperties runProperties113 = new RunProperties();
            FontSize fontSize176 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript176 = new FontSizeComplexScript() { Val = "26" };
            Shading shading241 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties113.Append(fontSize176);
            runProperties113.Append(fontSizeComplexScript176);
            runProperties113.Append(shading241);

            run113.Append(runProperties113);

            paragraph113.Append(paragraphProperties113);
            paragraph113.Append(run113);

            tableCell95.Append(tableCellProperties95);
            tableCell95.Append(paragraph113);

            TableCell tableCell96 = new TableCell();

            TableCellProperties tableCellProperties96 = new TableCellProperties();
            TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan96 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders96 = new TableCellBorders();
            Shading shading242 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties96.Append(tableCellWidth96);
            tableCellProperties96.Append(gridSpan96);
            tableCellProperties96.Append(tableCellBorders96);
            tableCellProperties96.Append(shading242);

            Paragraph paragraph114 = new Paragraph();

            ParagraphProperties paragraphProperties114 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId114 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification60 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties114 = new ParagraphMarkRunProperties();
            FontSize fontSize177 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript177 = new FontSizeComplexScript() { Val = "26" };
            Shading shading243 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties114.Append(fontSize177);
            paragraphMarkRunProperties114.Append(fontSizeComplexScript177);
            paragraphMarkRunProperties114.Append(shading243);

            paragraphProperties114.Append(paragraphStyleId114);
            paragraphProperties114.Append(justification60);
            paragraphProperties114.Append(paragraphMarkRunProperties114);

            Run run114 = new Run();

            RunProperties runProperties114 = new RunProperties();
            FontSize fontSize178 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript178 = new FontSizeComplexScript() { Val = "26" };
            Shading shading244 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties114.Append(fontSize178);
            runProperties114.Append(fontSizeComplexScript178);
            runProperties114.Append(shading244);

            run114.Append(runProperties114);

            paragraph114.Append(paragraphProperties114);
            paragraph114.Append(run114);

            tableCell96.Append(tableCellProperties96);
            tableCell96.Append(paragraph114);

            tableRow34.Append(tableRowProperties34);
            tableRow34.Append(tableCell94);
            tableRow34.Append(tableCell95);
            tableRow34.Append(tableCell96);

            TableRow tableRow35 = new TableRow();
            TableRowProperties tableRowProperties35 = new TableRowProperties();

            TableCell tableCell97 = new TableCell();

            TableCellProperties tableCellProperties97 = new TableCellProperties();
            TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan97 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders97 = new TableCellBorders();
            Shading shading245 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties97.Append(tableCellWidth97);
            tableCellProperties97.Append(gridSpan97);
            tableCellProperties97.Append(tableCellBorders97);
            tableCellProperties97.Append(shading245);

            Paragraph paragraph115 = new Paragraph();

            ParagraphProperties paragraphProperties115 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId115 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification61 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties115 = new ParagraphMarkRunProperties();
            FontSize fontSize179 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript179 = new FontSizeComplexScript() { Val = "26" };
            Shading shading246 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties115.Append(fontSize179);
            paragraphMarkRunProperties115.Append(fontSizeComplexScript179);
            paragraphMarkRunProperties115.Append(shading246);

            paragraphProperties115.Append(paragraphStyleId115);
            paragraphProperties115.Append(justification61);
            paragraphProperties115.Append(paragraphMarkRunProperties115);

            Run run115 = new Run();

            RunProperties runProperties115 = new RunProperties();
            FontSize fontSize180 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript180 = new FontSizeComplexScript() { Val = "26" };
            Shading shading247 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties115.Append(fontSize180);
            runProperties115.Append(fontSizeComplexScript180);
            runProperties115.Append(shading247);

            run115.Append(runProperties115);

            paragraph115.Append(paragraphProperties115);
            paragraph115.Append(run115);

            tableCell97.Append(tableCellProperties97);
            tableCell97.Append(paragraph115);

            TableCell tableCell98 = new TableCell();

            TableCellProperties tableCellProperties98 = new TableCellProperties();
            TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan98 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders98 = new TableCellBorders();
            Shading shading248 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties98.Append(tableCellWidth98);
            tableCellProperties98.Append(gridSpan98);
            tableCellProperties98.Append(tableCellBorders98);
            tableCellProperties98.Append(shading248);

            Paragraph paragraph116 = new Paragraph();

            ParagraphProperties paragraphProperties116 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId116 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification62 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties116 = new ParagraphMarkRunProperties();
            FontSize fontSize181 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript181 = new FontSizeComplexScript() { Val = "26" };
            Shading shading249 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties116.Append(fontSize181);
            paragraphMarkRunProperties116.Append(fontSizeComplexScript181);
            paragraphMarkRunProperties116.Append(shading249);

            paragraphProperties116.Append(paragraphStyleId116);
            paragraphProperties116.Append(justification62);
            paragraphProperties116.Append(paragraphMarkRunProperties116);

            Run run116 = new Run();

            RunProperties runProperties116 = new RunProperties();
            FontSize fontSize182 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript182 = new FontSizeComplexScript() { Val = "26" };
            Shading shading250 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties116.Append(fontSize182);
            runProperties116.Append(fontSizeComplexScript182);
            runProperties116.Append(shading250);

            run116.Append(runProperties116);

            paragraph116.Append(paragraphProperties116);
            paragraph116.Append(run116);

            tableCell98.Append(tableCellProperties98);
            tableCell98.Append(paragraph116);

            TableCell tableCell99 = new TableCell();

            TableCellProperties tableCellProperties99 = new TableCellProperties();
            TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan99 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders99 = new TableCellBorders();
            Shading shading251 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties99.Append(tableCellWidth99);
            tableCellProperties99.Append(gridSpan99);
            tableCellProperties99.Append(tableCellBorders99);
            tableCellProperties99.Append(shading251);

            Paragraph paragraph117 = new Paragraph();

            ParagraphProperties paragraphProperties117 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId117 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification63 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties117 = new ParagraphMarkRunProperties();
            FontSize fontSize183 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript183 = new FontSizeComplexScript() { Val = "26" };
            Shading shading252 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties117.Append(fontSize183);
            paragraphMarkRunProperties117.Append(fontSizeComplexScript183);
            paragraphMarkRunProperties117.Append(shading252);

            paragraphProperties117.Append(paragraphStyleId117);
            paragraphProperties117.Append(justification63);
            paragraphProperties117.Append(paragraphMarkRunProperties117);

            Run run117 = new Run();

            RunProperties runProperties117 = new RunProperties();
            FontSize fontSize184 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript184 = new FontSizeComplexScript() { Val = "26" };
            Shading shading253 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties117.Append(fontSize184);
            runProperties117.Append(fontSizeComplexScript184);
            runProperties117.Append(shading253);

            run117.Append(runProperties117);

            paragraph117.Append(paragraphProperties117);
            paragraph117.Append(run117);

            tableCell99.Append(tableCellProperties99);
            tableCell99.Append(paragraph117);

            tableRow35.Append(tableRowProperties35);
            tableRow35.Append(tableCell97);
            tableRow35.Append(tableCell98);
            tableRow35.Append(tableCell99);

            TableRow tableRow36 = new TableRow();
            TableRowProperties tableRowProperties36 = new TableRowProperties();

            TableCell tableCell100 = new TableCell();

            TableCellProperties tableCellProperties100 = new TableCellProperties();
            TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan100 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders100 = new TableCellBorders();
            Shading shading254 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties100.Append(tableCellWidth100);
            tableCellProperties100.Append(gridSpan100);
            tableCellProperties100.Append(tableCellBorders100);
            tableCellProperties100.Append(shading254);

            Paragraph paragraph118 = new Paragraph();

            ParagraphProperties paragraphProperties118 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId118 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification64 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties118 = new ParagraphMarkRunProperties();
            FontSize fontSize185 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript185 = new FontSizeComplexScript() { Val = "26" };
            Shading shading255 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties118.Append(fontSize185);
            paragraphMarkRunProperties118.Append(fontSizeComplexScript185);
            paragraphMarkRunProperties118.Append(shading255);

            paragraphProperties118.Append(paragraphStyleId118);
            paragraphProperties118.Append(justification64);
            paragraphProperties118.Append(paragraphMarkRunProperties118);

            Run run118 = new Run();

            RunProperties runProperties118 = new RunProperties();
            FontSize fontSize186 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript186 = new FontSizeComplexScript() { Val = "26" };
            Shading shading256 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties118.Append(fontSize186);
            runProperties118.Append(fontSizeComplexScript186);
            runProperties118.Append(shading256);

            run118.Append(runProperties118);

            paragraph118.Append(paragraphProperties118);
            paragraph118.Append(run118);

            tableCell100.Append(tableCellProperties100);
            tableCell100.Append(paragraph118);

            TableCell tableCell101 = new TableCell();

            TableCellProperties tableCellProperties101 = new TableCellProperties();
            TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan101 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders101 = new TableCellBorders();
            Shading shading257 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties101.Append(tableCellWidth101);
            tableCellProperties101.Append(gridSpan101);
            tableCellProperties101.Append(tableCellBorders101);
            tableCellProperties101.Append(shading257);

            Paragraph paragraph119 = new Paragraph();

            ParagraphProperties paragraphProperties119 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId119 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification65 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties119 = new ParagraphMarkRunProperties();
            FontSize fontSize187 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript187 = new FontSizeComplexScript() { Val = "26" };
            Shading shading258 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties119.Append(fontSize187);
            paragraphMarkRunProperties119.Append(fontSizeComplexScript187);
            paragraphMarkRunProperties119.Append(shading258);

            paragraphProperties119.Append(paragraphStyleId119);
            paragraphProperties119.Append(justification65);
            paragraphProperties119.Append(paragraphMarkRunProperties119);

            Run run119 = new Run();

            RunProperties runProperties119 = new RunProperties();
            FontSize fontSize188 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript188 = new FontSizeComplexScript() { Val = "26" };
            Shading shading259 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties119.Append(fontSize188);
            runProperties119.Append(fontSizeComplexScript188);
            runProperties119.Append(shading259);

            run119.Append(runProperties119);

            paragraph119.Append(paragraphProperties119);
            paragraph119.Append(run119);

            tableCell101.Append(tableCellProperties101);
            tableCell101.Append(paragraph119);

            TableCell tableCell102 = new TableCell();

            TableCellProperties tableCellProperties102 = new TableCellProperties();
            TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan102 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders102 = new TableCellBorders();
            Shading shading260 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties102.Append(tableCellWidth102);
            tableCellProperties102.Append(gridSpan102);
            tableCellProperties102.Append(tableCellBorders102);
            tableCellProperties102.Append(shading260);

            Paragraph paragraph120 = new Paragraph();

            ParagraphProperties paragraphProperties120 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId120 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification66 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties120 = new ParagraphMarkRunProperties();
            FontSize fontSize189 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript189 = new FontSizeComplexScript() { Val = "26" };
            Shading shading261 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties120.Append(fontSize189);
            paragraphMarkRunProperties120.Append(fontSizeComplexScript189);
            paragraphMarkRunProperties120.Append(shading261);

            paragraphProperties120.Append(paragraphStyleId120);
            paragraphProperties120.Append(justification66);
            paragraphProperties120.Append(paragraphMarkRunProperties120);

            Run run120 = new Run();

            RunProperties runProperties120 = new RunProperties();
            FontSize fontSize190 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript190 = new FontSizeComplexScript() { Val = "26" };
            Shading shading262 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties120.Append(fontSize190);
            runProperties120.Append(fontSizeComplexScript190);
            runProperties120.Append(shading262);

            run120.Append(runProperties120);

            paragraph120.Append(paragraphProperties120);
            paragraph120.Append(run120);

            tableCell102.Append(tableCellProperties102);
            tableCell102.Append(paragraph120);

            tableRow36.Append(tableRowProperties36);
            tableRow36.Append(tableCell100);
            tableRow36.Append(tableCell101);
            tableRow36.Append(tableCell102);

            TableRow tableRow37 = new TableRow();
            TableRowProperties tableRowProperties37 = new TableRowProperties();

            TableCell tableCell103 = new TableCell();

            TableCellProperties tableCellProperties103 = new TableCellProperties();
            TableCellWidth tableCellWidth103 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan103 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders103 = new TableCellBorders();
            Shading shading263 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties103.Append(tableCellWidth103);
            tableCellProperties103.Append(gridSpan103);
            tableCellProperties103.Append(tableCellBorders103);
            tableCellProperties103.Append(shading263);

            Paragraph paragraph121 = new Paragraph();

            ParagraphProperties paragraphProperties121 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId121 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification67 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties121 = new ParagraphMarkRunProperties();
            FontSize fontSize191 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript191 = new FontSizeComplexScript() { Val = "26" };
            Shading shading264 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties121.Append(fontSize191);
            paragraphMarkRunProperties121.Append(fontSizeComplexScript191);
            paragraphMarkRunProperties121.Append(shading264);

            paragraphProperties121.Append(paragraphStyleId121);
            paragraphProperties121.Append(justification67);
            paragraphProperties121.Append(paragraphMarkRunProperties121);

            Run run121 = new Run();

            RunProperties runProperties121 = new RunProperties();
            FontSize fontSize192 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript192 = new FontSizeComplexScript() { Val = "26" };
            Shading shading265 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties121.Append(fontSize192);
            runProperties121.Append(fontSizeComplexScript192);
            runProperties121.Append(shading265);

            run121.Append(runProperties121);

            paragraph121.Append(paragraphProperties121);
            paragraph121.Append(run121);

            tableCell103.Append(tableCellProperties103);
            tableCell103.Append(paragraph121);

            TableCell tableCell104 = new TableCell();

            TableCellProperties tableCellProperties104 = new TableCellProperties();
            TableCellWidth tableCellWidth104 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan104 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders104 = new TableCellBorders();
            Shading shading266 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties104.Append(tableCellWidth104);
            tableCellProperties104.Append(gridSpan104);
            tableCellProperties104.Append(tableCellBorders104);
            tableCellProperties104.Append(shading266);

            Paragraph paragraph122 = new Paragraph();

            ParagraphProperties paragraphProperties122 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId122 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification68 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties122 = new ParagraphMarkRunProperties();

            paragraphProperties122.Append(paragraphStyleId122);
            paragraphProperties122.Append(justification68);
            paragraphProperties122.Append(paragraphMarkRunProperties122);

            Run run122 = new Run();

            RunProperties runProperties122 = new RunProperties();
            FontSize fontSize193 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript193 = new FontSizeComplexScript() { Val = "26" };

            runProperties122.Append(fontSize193);
            runProperties122.Append(fontSizeComplexScript193);
            Text text25 = new Text();
            text25.Text = "г. Москва";

            run122.Append(runProperties122);
            run122.Append(text25);

            paragraph122.Append(paragraphProperties122);
            paragraph122.Append(run122);

            Paragraph paragraph123 = new Paragraph();

            ParagraphProperties paragraphProperties123 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId123 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification69 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties123 = new ParagraphMarkRunProperties();

            paragraphProperties123.Append(paragraphStyleId123);
            paragraphProperties123.Append(justification69);
            paragraphProperties123.Append(paragraphMarkRunProperties123);

            Run run123 = new Run();

            RunProperties runProperties123 = new RunProperties();
            FontSize fontSize194 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript194 = new FontSizeComplexScript() { Val = "26" };
            Languages languages1 = new Languages() { Val = "en-US" };

            runProperties123.Append(fontSize194);
            runProperties123.Append(fontSizeComplexScript194);
            runProperties123.Append(languages1);
            Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text26.Text = "2015 ";

            run123.Append(runProperties123);
            run123.Append(text26);

            Run run124 = new Run();

            RunProperties runProperties124 = new RunProperties();
            FontSize fontSize195 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript195 = new FontSizeComplexScript() { Val = "26" };

            runProperties124.Append(fontSize195);
            runProperties124.Append(fontSizeComplexScript195);
            Text text27 = new Text();
            text27.Text = "г.";

            run124.Append(runProperties124);
            run124.Append(text27);

            paragraph123.Append(paragraphProperties123);
            paragraph123.Append(run123);
            paragraph123.Append(run124);

            tableCell104.Append(tableCellProperties104);
            tableCell104.Append(paragraph122);
            tableCell104.Append(paragraph123);

            TableCell tableCell105 = new TableCell();

            TableCellProperties tableCellProperties105 = new TableCellProperties();
            TableCellWidth tableCellWidth105 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan105 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders105 = new TableCellBorders();
            Shading shading267 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties105.Append(tableCellWidth105);
            tableCellProperties105.Append(gridSpan105);
            tableCellProperties105.Append(tableCellBorders105);
            tableCellProperties105.Append(shading267);

            Paragraph paragraph124 = new Paragraph();

            ParagraphProperties paragraphProperties124 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId124 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification70 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties124 = new ParagraphMarkRunProperties();
            FontSize fontSize196 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript196 = new FontSizeComplexScript() { Val = "26" };
            Shading shading268 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties124.Append(fontSize196);
            paragraphMarkRunProperties124.Append(fontSizeComplexScript196);
            paragraphMarkRunProperties124.Append(shading268);

            paragraphProperties124.Append(paragraphStyleId124);
            paragraphProperties124.Append(justification70);
            paragraphProperties124.Append(paragraphMarkRunProperties124);

            Run run125 = new Run();

            RunProperties runProperties125 = new RunProperties();
            FontSize fontSize197 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript197 = new FontSizeComplexScript() { Val = "26" };
            Shading shading269 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties125.Append(fontSize197);
            runProperties125.Append(fontSizeComplexScript197);
            runProperties125.Append(shading269);

            run125.Append(runProperties125);

            paragraph124.Append(paragraphProperties124);
            paragraph124.Append(run125);

            tableCell105.Append(tableCellProperties105);
            tableCell105.Append(paragraph124);

            tableRow37.Append(tableRowProperties37);
            tableRow37.Append(tableCell103);
            tableRow37.Append(tableCell104);
            tableRow37.Append(tableCell105);

            TableRow tableRow38 = new TableRow();
            TableRowProperties tableRowProperties38 = new TableRowProperties();

            TableCell tableCell106 = new TableCell();

            TableCellProperties tableCellProperties106 = new TableCellProperties();
            TableCellWidth tableCellWidth106 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan106 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders106 = new TableCellBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder1 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder1 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders106.Append(topBorder1);
            tableCellBorders106.Append(startBorder1);
            tableCellBorders106.Append(bottomBorder1);
            tableCellBorders106.Append(endBorder1);
            tableCellBorders106.Append(insideHorizontalBorder1);
            tableCellBorders106.Append(insideVerticalBorder1);
            Shading shading270 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            StartMargin startMargin2 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(startMargin2);

            tableCellProperties106.Append(tableCellWidth106);
            tableCellProperties106.Append(gridSpan106);
            tableCellProperties106.Append(tableCellBorders106);
            tableCellProperties106.Append(shading270);
            tableCellProperties106.Append(tableCellMargin1);

            Paragraph paragraph125 = new Paragraph();

            ParagraphProperties paragraphProperties125 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId125 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation1 = new Indentation() { FirstLine = "459" };
            Justification justification71 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties125 = new ParagraphMarkRunProperties();

            paragraphProperties125.Append(paragraphStyleId125);
            paragraphProperties125.Append(indentation1);
            paragraphProperties125.Append(justification71);
            paragraphProperties125.Append(paragraphMarkRunProperties125);

            Run run126 = new Run();

            RunProperties runProperties126 = new RunProperties();
            FontSize fontSize198 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript198 = new FontSizeComplexScript() { Val = "26" };

            runProperties126.Append(fontSize198);
            runProperties126.Append(fontSizeComplexScript198);
            Text text28 = new Text();
            text28.Text = "Паспорт безопасности объекта топливно-энергетического комплекса "+NameObject+" разработан в соответствии с:";

            run126.Append(runProperties126);
            run126.Append(text28);

            paragraph125.Append(paragraphProperties125);
            paragraph125.Append(run126);

            Paragraph paragraph126 = new Paragraph();

            ParagraphProperties paragraphProperties126 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId126 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation2 = new Indentation() { FirstLine = "459" };
            Justification justification72 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties126 = new ParagraphMarkRunProperties();

            paragraphProperties126.Append(paragraphStyleId126);
            paragraphProperties126.Append(indentation2);
            paragraphProperties126.Append(justification72);
            paragraphProperties126.Append(paragraphMarkRunProperties126);

            Run run127 = new Run();

            RunProperties runProperties127 = new RunProperties();
            FontSize fontSize199 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript199 = new FontSizeComplexScript() { Val = "26" };

            runProperties127.Append(fontSize199);
            runProperties127.Append(fontSizeComplexScript199);
            Text text29 = new Text();
            text29.Text = "- Федеральном законом от 21 июля 2011 г. № 256-ФЗ «О безопасности объектов топливно- энергетического комплекса» (принят Государственной думой 6 июля 2011 года, одобрен Советом Федерации 13 июля 2011года);";

            run127.Append(runProperties127);
            run127.Append(text29);

            paragraph126.Append(paragraphProperties126);
            paragraph126.Append(run127);

            Paragraph paragraph127 = new Paragraph();

            ParagraphProperties paragraphProperties127 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId127 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation3 = new Indentation() { FirstLine = "459" };
            Justification justification73 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties127 = new ParagraphMarkRunProperties();

            paragraphProperties127.Append(paragraphStyleId127);
            paragraphProperties127.Append(indentation3);
            paragraphProperties127.Append(justification73);
            paragraphProperties127.Append(paragraphMarkRunProperties127);

            Run run128 = new Run();

            RunProperties runProperties128 = new RunProperties();
            FontSize fontSize200 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript200 = new FontSizeComplexScript() { Val = "26" };

            runProperties128.Append(fontSize200);
            runProperties128.Append(fontSizeComplexScript200);
            Text text30 = new Text();
            text30.Text = "- Постановлением правительства РФ от 05 мая 2012 г. № 458 «Об утверждении Правил по обеспечению безопасности и антитеррористической защищенности объектов топливно-энергетического комплекса»;";

            run128.Append(runProperties128);
            run128.Append(text30);

            paragraph127.Append(paragraphProperties127);
            paragraph127.Append(run128);

            Paragraph paragraph128 = new Paragraph();

            ParagraphProperties paragraphProperties128 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId128 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation4 = new Indentation() { FirstLine = "459" };
            Justification justification74 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties128 = new ParagraphMarkRunProperties();

            paragraphProperties128.Append(paragraphStyleId128);
            paragraphProperties128.Append(indentation4);
            paragraphProperties128.Append(justification74);
            paragraphProperties128.Append(paragraphMarkRunProperties128);

            Run run129 = new Run();

            RunProperties runProperties129 = new RunProperties();
            FontSize fontSize201 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript201 = new FontSizeComplexScript() { Val = "26" };

            runProperties129.Append(fontSize201);
            runProperties129.Append(fontSizeComplexScript201);
            Text text31 = new Text();
            text31.Text = "- Постановлением Правительства РФ от 05 мая 2012 г. №459 « Об утверждении Положения об исходных данных для проведения категорирования объекта топливно- энергетического комплекса , порядке его проведения и критериях категорирования»;";

            run129.Append(runProperties129);
            run129.Append(text31);

            paragraph128.Append(paragraphProperties128);
            paragraph128.Append(run129);

            Paragraph paragraph129 = new Paragraph();

            ParagraphProperties paragraphProperties129 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId129 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation5 = new Indentation() { FirstLine = "459" };
            Justification justification75 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties129 = new ParagraphMarkRunProperties();

            paragraphProperties129.Append(paragraphStyleId129);
            paragraphProperties129.Append(indentation5);
            paragraphProperties129.Append(justification75);
            paragraphProperties129.Append(paragraphMarkRunProperties129);

            Run run130 = new Run();

            RunProperties runProperties130 = new RunProperties();
            FontSize fontSize202 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript202 = new FontSizeComplexScript() { Val = "26" };

            runProperties130.Append(fontSize202);
            runProperties130.Append(fontSizeComplexScript202);
            Text text32 = new Text();
            text32.Text = "- Постановлением Правительства РФ от 05 мая 20122 г. № 460 «Об утверждении Правил актуализации паспорта безопасности объекта, топливно- энергетического комплекса»;";

            run130.Append(runProperties130);
            run130.Append(text32);

            paragraph129.Append(paragraphProperties129);
            paragraph129.Append(run130);

            Paragraph paragraph130 = new Paragraph();

            ParagraphProperties paragraphProperties130 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId130 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation6 = new Indentation() { FirstLine = "459" };
            Justification justification76 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties130 = new ParagraphMarkRunProperties();

            paragraphProperties130.Append(paragraphStyleId130);
            paragraphProperties130.Append(indentation6);
            paragraphProperties130.Append(justification76);
            paragraphProperties130.Append(paragraphMarkRunProperties130);

            Run run131 = new Run();

            RunProperties runProperties131 = new RunProperties();
            FontSize fontSize203 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript203 = new FontSizeComplexScript() { Val = "26" };

            runProperties131.Append(fontSize203);
            runProperties131.Append(fontSizeComplexScript203);
            Text text33 = new Text();
            text33.Text = "- Приказом Генерального директора ООО «Газпром энергохолдинг» - управляющей организации ОАО «МОЭК» от 09.07.2015 № П-130/15 «Об организации работ по актуализации паспортов безопасности категорированных объектов ОАО «МОЭК».";

            run131.Append(runProperties131);
            run131.Append(text33);

            paragraph130.Append(paragraphProperties130);
            paragraph130.Append(run131);

            tableCell106.Append(tableCellProperties106);
            tableCell106.Append(paragraph125);
            tableCell106.Append(paragraph126);
            tableCell106.Append(paragraph127);
            tableCell106.Append(paragraph128);
            tableCell106.Append(paragraph129);
            tableCell106.Append(paragraph130);

            tableRow38.Append(tableRowProperties38);
            tableRow38.Append(tableCell106);

            TableRow tableRow39 = new TableRow();
            TableRowProperties tableRowProperties39 = new TableRowProperties();

            TableCell tableCell107 = new TableCell();

            TableCellProperties tableCellProperties107 = new TableCellProperties();
            TableCellWidth tableCellWidth107 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan107 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders107 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder2 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder2 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders107.Append(topBorder2);
            tableCellBorders107.Append(startBorder2);
            tableCellBorders107.Append(bottomBorder2);
            tableCellBorders107.Append(endBorder2);
            tableCellBorders107.Append(insideHorizontalBorder2);
            tableCellBorders107.Append(insideVerticalBorder2);
            Shading shading271 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            StartMargin startMargin3 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(startMargin3);

            tableCellProperties107.Append(tableCellWidth107);
            tableCellProperties107.Append(gridSpan107);
            tableCellProperties107.Append(tableCellBorders107);
            tableCellProperties107.Append(shading271);
            tableCellProperties107.Append(tableCellMargin2);

            Paragraph paragraph131 = new Paragraph();

            ParagraphProperties paragraphProperties131 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId131 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation7 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties131 = new ParagraphMarkRunProperties();

            paragraphProperties131.Append(paragraphStyleId131);
            paragraphProperties131.Append(indentation7);
            paragraphProperties131.Append(paragraphMarkRunProperties131);

            Run run132 = new Run();

            RunProperties runProperties132 = new RunProperties();
            FontSize fontSize204 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript204 = new FontSizeComplexScript() { Val = "26" };

            runProperties132.Append(fontSize204);
            runProperties132.Append(fontSizeComplexScript204);
            Text text34 = new Text();
            text34.Text = NameObject;

            run132.Append(runProperties132);
            run132.Append(text34);

            paragraph131.Append(paragraphProperties131);
            paragraph131.Append(run132);

            Paragraph paragraph132 = new Paragraph();

            ParagraphProperties paragraphProperties132 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId132 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation8 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties132 = new ParagraphMarkRunProperties();

            paragraphProperties132.Append(paragraphStyleId132);
            paragraphProperties132.Append(indentation8);
            paragraphProperties132.Append(paragraphMarkRunProperties132);

            Run run133 = new Run();

            RunProperties runProperties133 = new RunProperties();
            FontSize fontSize205 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript205 = new FontSizeComplexScript() { Val = "26" };

            runProperties133.Append(fontSize205);
            runProperties133.Append(fontSizeComplexScript205);
            Text text35 = new Text();
            text35.Text = "Фактический адрес: ул. Вилиса Лациса, д. 29, корп. 1";

            run133.Append(runProperties133);
            run133.Append(text35);

            paragraph132.Append(paragraphProperties132);
            paragraph132.Append(run133);

            Paragraph paragraph133 = new Paragraph();

            ParagraphProperties paragraphProperties133 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId133 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation9 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties133 = new ParagraphMarkRunProperties();

            paragraphProperties133.Append(paragraphStyleId133);
            paragraphProperties133.Append(indentation9);
            paragraphProperties133.Append(paragraphMarkRunProperties133);

            Run run134 = new Run();

            RunProperties runProperties134 = new RunProperties();
            FontSize fontSize206 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript206 = new FontSizeComplexScript() { Val = "26" };

            runProperties134.Append(fontSize206);
            runProperties134.Append(fontSizeComplexScript206);
            Text text36 = new Text();
            text36.Text = "Почтовый адрес: ул. Вилиса Лациса, д. 29, корп. 1";

            run134.Append(runProperties134);
            run134.Append(text36);

            paragraph133.Append(paragraphProperties133);
            paragraph133.Append(run134);

            Paragraph paragraph134 = new Paragraph();

            ParagraphProperties paragraphProperties134 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId134 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation10 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties134 = new ParagraphMarkRunProperties();

            paragraphProperties134.Append(paragraphStyleId134);
            paragraphProperties134.Append(indentation10);
            paragraphProperties134.Append(paragraphMarkRunProperties134);

            Run run135 = new Run();

            RunProperties runProperties135 = new RunProperties();
            FontSize fontSize207 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript207 = new FontSizeComplexScript() { Val = "26" };

            runProperties135.Append(fontSize207);
            runProperties135.Append(fontSizeComplexScript207);
            Text text37 = new Text();
            text37.Text = "Телефон: +7 (495) 497-91-88";

            run135.Append(runProperties135);
            run135.Append(text37);

            paragraph134.Append(paragraphProperties134);
            paragraph134.Append(run135);

            tableCell107.Append(tableCellProperties107);
            tableCell107.Append(paragraph131);
            tableCell107.Append(paragraph132);
            tableCell107.Append(paragraph133);
            tableCell107.Append(paragraph134);

            tableRow39.Append(tableRowProperties39);
            tableRow39.Append(tableCell107);

            TableRow tableRow40 = new TableRow();
            TableRowProperties tableRowProperties40 = new TableRowProperties();

            TableCell tableCell108 = new TableCell();

            TableCellProperties tableCellProperties108 = new TableCellProperties();
            TableCellWidth tableCellWidth108 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan108 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders108 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder3 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder3 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders108.Append(topBorder3);
            tableCellBorders108.Append(startBorder3);
            tableCellBorders108.Append(bottomBorder3);
            tableCellBorders108.Append(endBorder3);
            tableCellBorders108.Append(insideHorizontalBorder3);
            tableCellBorders108.Append(insideVerticalBorder3);
            Shading shading272 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            StartMargin startMargin4 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(startMargin4);

            tableCellProperties108.Append(tableCellWidth108);
            tableCellProperties108.Append(gridSpan108);
            tableCellProperties108.Append(tableCellBorders108);
            tableCellProperties108.Append(shading272);
            tableCellProperties108.Append(tableCellMargin3);

            Paragraph paragraph135 = new Paragraph();

            ParagraphProperties paragraphProperties135 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId135 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation11 = new Indentation() { FirstLine = "459" };
            Justification justification77 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties135 = new ParagraphMarkRunProperties();

            paragraphProperties135.Append(paragraphStyleId135);
            paragraphProperties135.Append(indentation11);
            paragraphProperties135.Append(justification77);
            paragraphProperties135.Append(paragraphMarkRunProperties135);

            Run run136 = new Run();

            RunProperties runProperties136 = new RunProperties();
            FontSize fontSize208 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript208 = new FontSizeComplexScript() { Val = "26" };

            runProperties136.Append(fontSize208);
            runProperties136.Append(fontSizeComplexScript208);
            Text text38 = new Text();
            text38.Text = "РТС «Тушино-5» филиал № 9 ПАО «МОЭК» объект топливно- энергетического комплекса. Основной вид деятельности: отопление, выработка тепловой и электрической энергии.";

            run136.Append(runProperties136);
            run136.Append(text38);

            paragraph135.Append(paragraphProperties135);
            paragraph135.Append(run136);

            tableCell108.Append(tableCellProperties108);
            tableCell108.Append(paragraph135);

            tableRow40.Append(tableRowProperties40);
            tableRow40.Append(tableCell108);

            TableRow tableRow41 = new TableRow();
            TableRowProperties tableRowProperties41 = new TableRowProperties();

            TableCell tableCell109 = new TableCell();

            TableCellProperties tableCellProperties109 = new TableCellProperties();
            TableCellWidth tableCellWidth109 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan109 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders109 = new TableCellBorders();
            TopBorder topBorder4 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder4 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder4 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder4 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder4 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder4 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders109.Append(topBorder4);
            tableCellBorders109.Append(startBorder4);
            tableCellBorders109.Append(bottomBorder4);
            tableCellBorders109.Append(endBorder4);
            tableCellBorders109.Append(insideHorizontalBorder4);
            tableCellBorders109.Append(insideVerticalBorder4);
            Shading shading273 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            StartMargin startMargin5 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(startMargin5);

            tableCellProperties109.Append(tableCellWidth109);
            tableCellProperties109.Append(gridSpan109);
            tableCellProperties109.Append(tableCellBorders109);
            tableCellProperties109.Append(shading273);
            tableCellProperties109.Append(tableCellMargin4);

            Paragraph paragraph136 = new Paragraph();

            ParagraphProperties paragraphProperties136 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId136 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation12 = new Indentation() { FirstLine = "459" };
            Justification justification78 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties136 = new ParagraphMarkRunProperties();

            paragraphProperties136.Append(paragraphStyleId136);
            paragraphProperties136.Append(indentation12);
            paragraphProperties136.Append(justification78);
            paragraphProperties136.Append(paragraphMarkRunProperties136);

            Run run137 = new Run();

            RunProperties runProperties137 = new RunProperties();
            FontSize fontSize209 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript209 = new FontSizeComplexScript() { Val = "26" };

            runProperties137.Append(fontSize209);
            runProperties137.Append(fontSizeComplexScript209);
            Text text39 = new Text();
            text39.Text = "Публичное акционерное общество «Московская объеденная энергетическая компания»";

            run137.Append(runProperties137);
            run137.Append(text39);

            paragraph136.Append(paragraphProperties136);
            paragraph136.Append(run137);

            Paragraph paragraph137 = new Paragraph();

            ParagraphProperties paragraphProperties137 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId137 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation13 = new Indentation() { FirstLine = "459" };
            Justification justification79 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties137 = new ParagraphMarkRunProperties();

            paragraphProperties137.Append(paragraphStyleId137);
            paragraphProperties137.Append(indentation13);
            paragraphProperties137.Append(justification79);
            paragraphProperties137.Append(paragraphMarkRunProperties137);

            Run run138 = new Run();

            RunProperties runProperties138 = new RunProperties();
            FontSize fontSize210 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript210 = new FontSizeComplexScript() { Val = "26" };

            runProperties138.Append(fontSize210);
            runProperties138.Append(fontSizeComplexScript210);
            Text text40 = new Text();
            text40.Text = "Юридический адрес: ул. Ефремова, д.10, г. Москва, 119048;";

            run138.Append(runProperties138);
            run138.Append(text40);

            paragraph137.Append(paragraphProperties137);
            paragraph137.Append(run138);

            Paragraph paragraph138 = new Paragraph();

            ParagraphProperties paragraphProperties138 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId138 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation14 = new Indentation() { FirstLine = "459" };
            Justification justification80 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties138 = new ParagraphMarkRunProperties();

            paragraphProperties138.Append(paragraphStyleId138);
            paragraphProperties138.Append(indentation14);
            paragraphProperties138.Append(justification80);
            paragraphProperties138.Append(paragraphMarkRunProperties138);

            Run run139 = new Run();

            RunProperties runProperties139 = new RunProperties();
            FontSize fontSize211 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript211 = new FontSizeComplexScript() { Val = "26" };

            runProperties139.Append(fontSize211);
            runProperties139.Append(fontSizeComplexScript211);
            Text text41 = new Text();
            text41.Text = "Почтовый адрес: ул. Ефремова, д.10, г. Москва, 119048;";

            run139.Append(runProperties139);
            run139.Append(text41);

            paragraph138.Append(paragraphProperties138);
            paragraph138.Append(run139);

            Paragraph paragraph139 = new Paragraph();

            ParagraphProperties paragraphProperties139 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId139 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation15 = new Indentation() { FirstLine = "459" };
            Justification justification81 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties139 = new ParagraphMarkRunProperties();

            paragraphProperties139.Append(paragraphStyleId139);
            paragraphProperties139.Append(indentation15);
            paragraphProperties139.Append(justification81);
            paragraphProperties139.Append(paragraphMarkRunProperties139);

            Run run140 = new Run();

            RunProperties runProperties140 = new RunProperties();
            FontSize fontSize212 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript212 = new FontSizeComplexScript() { Val = "26" };

            runProperties140.Append(fontSize212);
            runProperties140.Append(fontSizeComplexScript212);
            Text text42 = new Text();
            text42.Text = "Телефон: +7 (495) 662-50-50";

            run140.Append(runProperties140);
            run140.Append(text42);

            paragraph139.Append(paragraphProperties139);
            paragraph139.Append(run140);

            Paragraph paragraph140 = new Paragraph();

            ParagraphProperties paragraphProperties140 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId140 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation16 = new Indentation() { FirstLine = "459" };
            Justification justification82 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties140 = new ParagraphMarkRunProperties();

            paragraphProperties140.Append(paragraphStyleId140);
            paragraphProperties140.Append(indentation16);
            paragraphProperties140.Append(justification82);
            paragraphProperties140.Append(paragraphMarkRunProperties140);

            Run run141 = new Run();

            RunProperties runProperties141 = new RunProperties();
            FontSize fontSize213 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript213 = new FontSizeComplexScript() { Val = "26" };

            runProperties141.Append(fontSize213);
            runProperties141.Append(fontSizeComplexScript213);
            Text text43 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text43.Text = "Генеральный директор ООО «Газпром энергохолдинг» - управляющей организации ";

            run141.Append(runProperties141);
            run141.Append(text43);

            paragraph140.Append(paragraphProperties140);
            paragraph140.Append(run141);

            Paragraph paragraph141 = new Paragraph();

            ParagraphProperties paragraphProperties141 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId141 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation17 = new Indentation() { FirstLine = "459" };
            Justification justification83 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties141 = new ParagraphMarkRunProperties();

            paragraphProperties141.Append(paragraphStyleId141);
            paragraphProperties141.Append(indentation17);
            paragraphProperties141.Append(justification83);
            paragraphProperties141.Append(paragraphMarkRunProperties141);

            Run run142 = new Run();

            RunProperties runProperties142 = new RunProperties();
            FontSize fontSize214 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript214 = new FontSizeComplexScript() { Val = "26" };

            runProperties142.Append(fontSize214);
            runProperties142.Append(fontSizeComplexScript214);
            Text text44 = new Text();
            text44.Text = "ПАО «МОЭК» - Федоров Денис Владимирович";

            run142.Append(runProperties142);
            run142.Append(text44);

            paragraph141.Append(paragraphProperties141);
            paragraph141.Append(run142);

            Paragraph paragraph142 = new Paragraph();

            ParagraphProperties paragraphProperties142 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId142 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation18 = new Indentation() { FirstLine = "459" };
            Justification justification84 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties142 = new ParagraphMarkRunProperties();

            paragraphProperties142.Append(paragraphStyleId142);
            paragraphProperties142.Append(indentation18);
            paragraphProperties142.Append(justification84);
            paragraphProperties142.Append(paragraphMarkRunProperties142);

            Run run143 = new Run();

            RunProperties runProperties143 = new RunProperties();
            FontSize fontSize215 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript215 = new FontSizeComplexScript() { Val = "26" };

            runProperties143.Append(fontSize215);
            runProperties143.Append(fontSizeComplexScript215);
            Text text45 = new Text();
            text45.Text = "телефон: +7 (495) 662-50-50";

            run143.Append(runProperties143);
            run143.Append(text45);

            paragraph142.Append(paragraphProperties142);
            paragraph142.Append(run143);

            Paragraph paragraph143 = new Paragraph();

            ParagraphProperties paragraphProperties143 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId143 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation19 = new Indentation() { FirstLine = "459" };
            Justification justification85 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties143 = new ParagraphMarkRunProperties();

            paragraphProperties143.Append(paragraphStyleId143);
            paragraphProperties143.Append(indentation19);
            paragraphProperties143.Append(justification85);
            paragraphProperties143.Append(paragraphMarkRunProperties143);

            Run run144 = new Run();

            RunProperties runProperties144 = new RunProperties();
            FontSize fontSize216 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript216 = new FontSizeComplexScript() { Val = "26" };

            runProperties144.Append(fontSize216);
            runProperties144.Append(fontSizeComplexScript216);
            Text text46 = new Text();
            text46.Text = "Заместитель генерального директора по безопасности и режиму ПАО «МОЭК» -";

            run144.Append(runProperties144);
            run144.Append(text46);

            paragraph143.Append(paragraphProperties143);
            paragraph143.Append(run144);

            Paragraph paragraph144 = new Paragraph();

            ParagraphProperties paragraphProperties144 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId144 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation20 = new Indentation() { FirstLine = "459" };
            Justification justification86 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties144 = new ParagraphMarkRunProperties();

            paragraphProperties144.Append(paragraphStyleId144);
            paragraphProperties144.Append(indentation20);
            paragraphProperties144.Append(justification86);
            paragraphProperties144.Append(paragraphMarkRunProperties144);

            Run run145 = new Run();

            RunProperties runProperties145 = new RunProperties();
            FontSize fontSize217 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript217 = new FontSizeComplexScript() { Val = "26" };

            runProperties145.Append(fontSize217);
            runProperties145.Append(fontSizeComplexScript217);
            Text text47 = new Text();
            text47.Text = "Солодовников Андрей Петрович";

            run145.Append(runProperties145);
            run145.Append(text47);

            paragraph144.Append(paragraphProperties144);
            paragraph144.Append(run145);

            Paragraph paragraph145 = new Paragraph();

            ParagraphProperties paragraphProperties145 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId145 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation21 = new Indentation() { FirstLine = "459" };
            Justification justification87 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties145 = new ParagraphMarkRunProperties();

            paragraphProperties145.Append(paragraphStyleId145);
            paragraphProperties145.Append(indentation21);
            paragraphProperties145.Append(justification87);
            paragraphProperties145.Append(paragraphMarkRunProperties145);

            Run run146 = new Run();

            RunProperties runProperties146 = new RunProperties();
            FontSize fontSize218 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript218 = new FontSizeComplexScript() { Val = "26" };

            runProperties146.Append(fontSize218);
            runProperties146.Append(fontSizeComplexScript218);
            Text text48 = new Text();
            text48.Text = "телефон: +7 (495) 662-50-50";

            run146.Append(runProperties146);
            run146.Append(text48);

            paragraph145.Append(paragraphProperties145);
            paragraph145.Append(run146);

            tableCell109.Append(tableCellProperties109);
            tableCell109.Append(paragraph136);
            tableCell109.Append(paragraph137);
            tableCell109.Append(paragraph138);
            tableCell109.Append(paragraph139);
            tableCell109.Append(paragraph140);
            tableCell109.Append(paragraph141);
            tableCell109.Append(paragraph142);
            tableCell109.Append(paragraph143);
            tableCell109.Append(paragraph144);
            tableCell109.Append(paragraph145);

            tableRow41.Append(tableRowProperties41);
            tableRow41.Append(tableCell109);

            TableRow tableRow42 = new TableRow();
            TableRowProperties tableRowProperties42 = new TableRowProperties();

            TableCell tableCell110 = new TableCell();

            TableCellProperties tableCellProperties110 = new TableCellProperties();
            TableCellWidth tableCellWidth110 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan110 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders110 = new TableCellBorders();
            TopBorder topBorder5 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder5 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder5 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder5 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder5 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders110.Append(topBorder5);
            tableCellBorders110.Append(startBorder5);
            tableCellBorders110.Append(bottomBorder5);
            tableCellBorders110.Append(endBorder5);
            tableCellBorders110.Append(insideHorizontalBorder5);
            tableCellBorders110.Append(insideVerticalBorder5);
            Shading shading274 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            StartMargin startMargin6 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(startMargin6);

            tableCellProperties110.Append(tableCellWidth110);
            tableCellProperties110.Append(gridSpan110);
            tableCellProperties110.Append(tableCellBorders110);
            tableCellProperties110.Append(shading274);
            tableCellProperties110.Append(tableCellMargin5);

            Paragraph paragraph146 = new Paragraph();

            ParagraphProperties paragraphProperties146 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId146 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation22 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties146 = new ParagraphMarkRunProperties();

            paragraphProperties146.Append(paragraphStyleId146);
            paragraphProperties146.Append(indentation22);
            paragraphProperties146.Append(paragraphMarkRunProperties146);

            Run run147 = new Run();

            RunProperties runProperties147 = new RunProperties();
            FontSize fontSize219 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript219 = new FontSizeComplexScript() { Val = "26" };

            runProperties147.Append(fontSize219);
            runProperties147.Append(fontSizeComplexScript219);
            Text text49 = new Text();
            text49.Text = "Филиал № 9 ПАО « МОЭК»";

            run147.Append(runProperties147);
            run147.Append(text49);

            paragraph146.Append(paragraphProperties146);
            paragraph146.Append(run147);

            Paragraph paragraph147 = new Paragraph();

            ParagraphProperties paragraphProperties147 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId147 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation23 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties147 = new ParagraphMarkRunProperties();

            paragraphProperties147.Append(paragraphStyleId147);
            paragraphProperties147.Append(indentation23);
            paragraphProperties147.Append(paragraphMarkRunProperties147);

            Run run148 = new Run();

            RunProperties runProperties148 = new RunProperties();
            FontSize fontSize220 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript220 = new FontSizeComplexScript() { Val = "26" };

            runProperties148.Append(fontSize220);
            runProperties148.Append(fontSizeComplexScript220);
            Text text50 = new Text();
            text50.Text = "Юридический адрес: 125480, г. Москва, ул. Героев Панфиловцев, д.10, корп.1;";

            run148.Append(runProperties148);
            run148.Append(text50);

            paragraph147.Append(paragraphProperties147);
            paragraph147.Append(run148);

            Paragraph paragraph148 = new Paragraph();

            ParagraphProperties paragraphProperties148 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId148 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation24 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties148 = new ParagraphMarkRunProperties();

            paragraphProperties148.Append(paragraphStyleId148);
            paragraphProperties148.Append(indentation24);
            paragraphProperties148.Append(paragraphMarkRunProperties148);

            Run run149 = new Run();

            RunProperties runProperties149 = new RunProperties();
            FontSize fontSize221 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript221 = new FontSizeComplexScript() { Val = "26" };

            runProperties149.Append(fontSize221);
            runProperties149.Append(fontSizeComplexScript221);
            Text text51 = new Text();
            text51.Text = "Почтовый адрес: 125480, г. Москва, ул. Героев Панфиловцев, д.10, корп.1;";

            run149.Append(runProperties149);
            run149.Append(text51);

            paragraph148.Append(paragraphProperties148);
            paragraph148.Append(run149);

            Paragraph paragraph149 = new Paragraph();

            ParagraphProperties paragraphProperties149 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId149 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation25 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties149 = new ParagraphMarkRunProperties();

            paragraphProperties149.Append(paragraphStyleId149);
            paragraphProperties149.Append(indentation25);
            paragraphProperties149.Append(paragraphMarkRunProperties149);

            Run run150 = new Run();

            RunProperties runProperties150 = new RunProperties();
            FontSize fontSize222 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript222 = new FontSizeComplexScript() { Val = "26" };

            runProperties150.Append(fontSize222);
            runProperties150.Append(fontSizeComplexScript222);
            Text text52 = new Text();
            text52.Text = "Исполнительный директор филиала № 9 ПАО « МОЭК» - Афанасьев Виктор Николаевич";

            run150.Append(runProperties150);
            run150.Append(text52);

            paragraph149.Append(paragraphProperties149);
            paragraph149.Append(run150);

            Paragraph paragraph150 = new Paragraph();

            ParagraphProperties paragraphProperties150 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId150 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation26 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties150 = new ParagraphMarkRunProperties();

            paragraphProperties150.Append(paragraphStyleId150);
            paragraphProperties150.Append(indentation26);
            paragraphProperties150.Append(paragraphMarkRunProperties150);

            Run run151 = new Run();

            RunProperties runProperties151 = new RunProperties();
            FontSize fontSize223 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript223 = new FontSizeComplexScript() { Val = "26" };

            runProperties151.Append(fontSize223);
            runProperties151.Append(fontSizeComplexScript223);
            Text text53 = new Text();
            text53.Text = "телефон: +7 (495) 657-94-82";

            run151.Append(runProperties151);
            run151.Append(text53);

            paragraph150.Append(paragraphProperties150);
            paragraph150.Append(run151);

            tableCell110.Append(tableCellProperties110);
            tableCell110.Append(paragraph146);
            tableCell110.Append(paragraph147);
            tableCell110.Append(paragraph148);
            tableCell110.Append(paragraph149);
            tableCell110.Append(paragraph150);

            tableRow42.Append(tableRowProperties42);
            tableRow42.Append(tableCell110);

            TableRow tableRow43 = new TableRow();
            TableRowProperties tableRowProperties43 = new TableRowProperties();

            TableCell tableCell111 = new TableCell();

            TableCellProperties tableCellProperties111 = new TableCellProperties();
            TableCellWidth tableCellWidth111 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan111 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders111 = new TableCellBorders();
            TopBorder topBorder6 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder6 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder6 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder6 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder6 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder6 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders111.Append(topBorder6);
            tableCellBorders111.Append(startBorder6);
            tableCellBorders111.Append(bottomBorder6);
            tableCellBorders111.Append(endBorder6);
            tableCellBorders111.Append(insideHorizontalBorder6);
            tableCellBorders111.Append(insideVerticalBorder6);
            Shading shading275 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            StartMargin startMargin7 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(startMargin7);

            tableCellProperties111.Append(tableCellWidth111);
            tableCellProperties111.Append(gridSpan111);
            tableCellProperties111.Append(tableCellBorders111);
            tableCellProperties111.Append(shading275);
            tableCellProperties111.Append(tableCellMargin6);

            Paragraph paragraph151 = new Paragraph();

            ParagraphProperties paragraphProperties151 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId151 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation27 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties151 = new ParagraphMarkRunProperties();

            paragraphProperties151.Append(paragraphStyleId151);
            paragraphProperties151.Append(indentation27);
            paragraphProperties151.Append(paragraphMarkRunProperties151);

            Run run152 = new Run();

            RunProperties runProperties152 = new RunProperties();
            FontSize fontSize224 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript224 = new FontSizeComplexScript() { Val = "26" };

            runProperties152.Append(fontSize224);
            runProperties152.Append(fontSizeComplexScript224);
            Text text54 = new Text();
            text54.Text = "Руководитель подразделения охраны – генеральный директор ООО ЧОП «МЕГУР» Ветров Леонид Александрович";

            run152.Append(runProperties152);
            run152.Append(text54);

            paragraph151.Append(paragraphProperties151);
            paragraph151.Append(run152);

            Paragraph paragraph152 = new Paragraph();

            ParagraphProperties paragraphProperties152 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId152 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation28 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties152 = new ParagraphMarkRunProperties();

            paragraphProperties152.Append(paragraphStyleId152);
            paragraphProperties152.Append(indentation28);
            paragraphProperties152.Append(paragraphMarkRunProperties152);

            Run run153 = new Run();

            RunProperties runProperties153 = new RunProperties();
            FontSize fontSize225 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript225 = new FontSizeComplexScript() { Val = "26" };

            runProperties153.Append(fontSize225);
            runProperties153.Append(fontSizeComplexScript225);
            Text text55 = new Text();
            text55.Text = "телефон: +7 (499) 142-05-45";

            run153.Append(runProperties153);
            run153.Append(text55);

            paragraph152.Append(paragraphProperties152);
            paragraph152.Append(run153);

            tableCell111.Append(tableCellProperties111);
            tableCell111.Append(paragraph151);
            tableCell111.Append(paragraph152);

            tableRow43.Append(tableRowProperties43);
            tableRow43.Append(tableCell111);

            TableRow tableRow44 = new TableRow();
            TableRowProperties tableRowProperties44 = new TableRowProperties();

            TableCell tableCell112 = new TableCell();

            TableCellProperties tableCellProperties112 = new TableCellProperties();
            TableCellWidth tableCellWidth112 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan112 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders112 = new TableCellBorders();
            Shading shading276 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties112.Append(tableCellWidth112);
            tableCellProperties112.Append(gridSpan112);
            tableCellProperties112.Append(tableCellBorders112);
            tableCellProperties112.Append(shading276);

            Paragraph paragraph153 = new Paragraph();

            ParagraphProperties paragraphProperties153 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId153 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification88 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties153 = new ParagraphMarkRunProperties();

            paragraphProperties153.Append(paragraphStyleId153);
            paragraphProperties153.Append(justification88);
            paragraphProperties153.Append(paragraphMarkRunProperties153);

            Run run154 = new Run();

            RunProperties runProperties154 = new RunProperties();
            Bold bold7 = new Bold();
            FontSize fontSize226 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript226 = new FontSizeComplexScript() { Val = "26" };

            runProperties154.Append(bold7);
            runProperties154.Append(fontSize226);
            runProperties154.Append(fontSizeComplexScript226);
            Text text56 = new Text();
            text56.Text = "1. Общие сведения об объекте:";

            run154.Append(runProperties154);
            run154.Append(text56);

            paragraph153.Append(paragraphProperties153);
            paragraph153.Append(run154);

            tableCell112.Append(tableCellProperties112);
            tableCell112.Append(paragraph153);

            tableRow44.Append(tableRowProperties44);
            tableRow44.Append(tableCell112);

            TableRow tableRow45 = new TableRow();
            TableRowProperties tableRowProperties45 = new TableRowProperties();

            TableCell tableCell113 = new TableCell();

            TableCellProperties tableCellProperties113 = new TableCellProperties();
            TableCellWidth tableCellWidth113 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan113 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders113 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder7 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders113.Append(topBorder7);
            tableCellBorders113.Append(bottomBorder7);
            tableCellBorders113.Append(insideHorizontalBorder7);
            Shading shading277 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties113.Append(tableCellWidth113);
            tableCellProperties113.Append(gridSpan113);
            tableCellProperties113.Append(tableCellBorders113);
            tableCellProperties113.Append(shading277);

            Paragraph paragraph154 = new Paragraph();

            ParagraphProperties paragraphProperties154 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId154 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification89 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties154 = new ParagraphMarkRunProperties();
            FontSize fontSize227 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript227 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties154.Append(fontSize227);
            paragraphMarkRunProperties154.Append(fontSizeComplexScript227);

            paragraphProperties154.Append(paragraphStyleId154);
            paragraphProperties154.Append(justification89);
            paragraphProperties154.Append(paragraphMarkRunProperties154);

            Run run155 = new Run();

            RunProperties runProperties155 = new RunProperties();
            FontSize fontSize228 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript228 = new FontSizeComplexScript() { Val = "26" };

            runProperties155.Append(fontSize228);
            runProperties155.Append(fontSizeComplexScript228);

            run155.Append(runProperties155);

            paragraph154.Append(paragraphProperties154);
            paragraph154.Append(run155);

            tableCell113.Append(tableCellProperties113);
            tableCell113.Append(paragraph154);

            tableRow45.Append(tableRowProperties45);
            tableRow45.Append(tableCell113);

            TableRow tableRow46 = new TableRow();
            TableRowProperties tableRowProperties46 = new TableRowProperties();

            TableCell tableCell114 = new TableCell();

            TableCellProperties tableCellProperties114 = new TableCellProperties();
            TableCellWidth tableCellWidth114 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan114 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders114 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder7 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder7 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder8 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder7 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders114.Append(topBorder8);
            tableCellBorders114.Append(startBorder7);
            tableCellBorders114.Append(bottomBorder8);
            tableCellBorders114.Append(endBorder7);
            tableCellBorders114.Append(insideHorizontalBorder8);
            tableCellBorders114.Append(insideVerticalBorder7);
            Shading shading278 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            StartMargin startMargin8 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(startMargin8);

            tableCellProperties114.Append(tableCellWidth114);
            tableCellProperties114.Append(gridSpan114);
            tableCellProperties114.Append(tableCellBorders114);
            tableCellProperties114.Append(shading278);
            tableCellProperties114.Append(tableCellMargin7);

            Paragraph paragraph155 = new Paragraph();

            ParagraphProperties paragraphProperties155 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId155 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation29 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties155 = new ParagraphMarkRunProperties();

            paragraphProperties155.Append(paragraphStyleId155);
            paragraphProperties155.Append(indentation29);
            paragraphProperties155.Append(paragraphMarkRunProperties155);

            Run run156 = new Run();

            RunProperties runProperties156 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "FontStyle48" };

            runProperties156.Append(runStyle1);
            Text text57 = new Text();
            text57.Text = "РТС «Тушино-5» филиал № 9 ПАО «МОЭК» мощностью 240 Гкал/ч (два водогрейных котла ПТВМ-120Э производства «Дорогобужкотломаш») предназначена для покрытия расчетного прироста тепловых нагрузок, а также создания резерва мощности централизованных источников теплоснабжения районов Северное и Южное Тушино и Покровское-Стрешнево Северо-Западного административного округа. Ввод в эксплуатацию 2006 г.";

            run156.Append(runProperties156);
            run156.Append(text57);

            paragraph155.Append(paragraphProperties155);
            paragraph155.Append(run156);

            tableCell114.Append(tableCellProperties114);
            tableCell114.Append(paragraph155);

            tableRow46.Append(tableRowProperties46);
            tableRow46.Append(tableCell114);

            TableRow tableRow47 = new TableRow();
            TableRowProperties tableRowProperties47 = new TableRowProperties();

            TableCell tableCell115 = new TableCell();

            TableCellProperties tableCellProperties115 = new TableCellProperties();
            TableCellWidth tableCellWidth115 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan115 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders115 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders115.Append(topBorder9);
            Shading shading279 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties115.Append(tableCellWidth115);
            tableCellProperties115.Append(gridSpan115);
            tableCellProperties115.Append(tableCellBorders115);
            tableCellProperties115.Append(shading279);

            Paragraph paragraph156 = new Paragraph();

            ParagraphProperties paragraphProperties156 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId156 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification90 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties156 = new ParagraphMarkRunProperties();
            FontSize fontSize229 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript229 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties156.Append(fontSize229);
            paragraphMarkRunProperties156.Append(fontSizeComplexScript229);

            paragraphProperties156.Append(paragraphStyleId156);
            paragraphProperties156.Append(justification90);
            paragraphProperties156.Append(paragraphMarkRunProperties156);

            Run run157 = new Run();

            RunProperties runProperties157 = new RunProperties();
            FontSize fontSize230 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript230 = new FontSizeComplexScript() { Val = "26" };

            runProperties157.Append(fontSize230);
            runProperties157.Append(fontSizeComplexScript230);

            run157.Append(runProperties157);

            paragraph156.Append(paragraphProperties156);
            paragraph156.Append(run157);

            tableCell115.Append(tableCellProperties115);
            tableCell115.Append(paragraph156);

            tableRow47.Append(tableRowProperties47);
            tableRow47.Append(tableCell115);

            TableRow tableRow48 = new TableRow();
            TableRowProperties tableRowProperties48 = new TableRowProperties();

            TableCell tableCell116 = new TableCell();

            TableCellProperties tableCellProperties116 = new TableCellProperties();
            TableCellWidth tableCellWidth116 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan116 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders116 = new TableCellBorders();
            Shading shading280 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties116.Append(tableCellWidth116);
            tableCellProperties116.Append(gridSpan116);
            tableCellProperties116.Append(tableCellBorders116);
            tableCellProperties116.Append(shading280);

            Paragraph paragraph157 = new Paragraph();

            ParagraphProperties paragraphProperties157 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId157 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties157 = new ParagraphMarkRunProperties();

            paragraphProperties157.Append(paragraphStyleId157);
            paragraphProperties157.Append(paragraphMarkRunProperties157);

            Run run158 = new Run();

            RunProperties runProperties158 = new RunProperties();
            Bold bold8 = new Bold();
            FontSize fontSize231 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript231 = new FontSizeComplexScript() { Val = "26" };

            runProperties158.Append(bold8);
            runProperties158.Append(fontSize231);
            runProperties158.Append(fontSizeComplexScript231);
            Text text58 = new Text();
            text58.Text = "1.1. Основная территория:";

            run158.Append(runProperties158);
            run158.Append(text58);

            paragraph157.Append(paragraphProperties157);
            paragraph157.Append(run158);

            tableCell116.Append(tableCellProperties116);
            tableCell116.Append(paragraph157);

            tableRow48.Append(tableRowProperties48);
            tableRow48.Append(tableCell116);

            TableRow tableRow49 = new TableRow();
            TableRowProperties tableRowProperties49 = new TableRowProperties();

            TableCell tableCell117 = new TableCell();

            TableCellProperties tableCellProperties117 = new TableCellProperties();
            TableCellWidth tableCellWidth117 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan117 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders117 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder8 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder8 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder9 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder8 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders117.Append(topBorder10);
            tableCellBorders117.Append(startBorder8);
            tableCellBorders117.Append(bottomBorder9);
            tableCellBorders117.Append(endBorder8);
            tableCellBorders117.Append(insideHorizontalBorder9);
            tableCellBorders117.Append(insideVerticalBorder8);
            Shading shading281 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            StartMargin startMargin9 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(startMargin9);

            tableCellProperties117.Append(tableCellWidth117);
            tableCellProperties117.Append(gridSpan117);
            tableCellProperties117.Append(tableCellBorders117);
            tableCellProperties117.Append(shading281);
            tableCellProperties117.Append(tableCellMargin8);

            Paragraph paragraph158 = new Paragraph();

            ParagraphProperties paragraphProperties158 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId158 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification91 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties158 = new ParagraphMarkRunProperties();

            paragraphProperties158.Append(paragraphStyleId158);
            paragraphProperties158.Append(justification91);
            paragraphProperties158.Append(paragraphMarkRunProperties158);

            Run run159 = new Run();

            RunProperties runProperties159 = new RunProperties();
            FontSize fontSize232 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript232 = new FontSizeComplexScript() { Val = "20" };

            runProperties159.Append(fontSize232);
            runProperties159.Append(fontSizeComplexScript232);
            Text text59 = new Text();
            text59.Text = "№";

            run159.Append(runProperties159);
            run159.Append(text59);

            Run run160 = new Run();

            RunProperties runProperties160 = new RunProperties();
            FontSize fontSize233 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript233 = new FontSizeComplexScript() { Val = "20" };
            Languages languages2 = new Languages() { Val = "en-US" };

            runProperties160.Append(fontSize233);
            runProperties160.Append(fontSizeComplexScript233);
            runProperties160.Append(languages2);
            Text text60 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text60.Text = " ";

            run160.Append(runProperties160);
            run160.Append(text60);

            Run run161 = new Run();

            RunProperties runProperties161 = new RunProperties();
            FontSize fontSize234 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript234 = new FontSizeComplexScript() { Val = "20" };

            runProperties161.Append(fontSize234);
            runProperties161.Append(fontSizeComplexScript234);
            Text text61 = new Text();
            text61.Text = "п/п";

            run161.Append(runProperties161);
            run161.Append(text61);

            paragraph158.Append(paragraphProperties158);
            paragraph158.Append(run159);
            paragraph158.Append(run160);
            paragraph158.Append(run161);

            tableCell117.Append(tableCellProperties117);
            tableCell117.Append(paragraph158);

            TableCell tableCell118 = new TableCell();

            TableCellProperties tableCellProperties118 = new TableCellProperties();
            TableCellWidth tableCellWidth118 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan118 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders118 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder9 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder9 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder10 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder9 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders118.Append(topBorder11);
            tableCellBorders118.Append(startBorder9);
            tableCellBorders118.Append(bottomBorder10);
            tableCellBorders118.Append(endBorder9);
            tableCellBorders118.Append(insideHorizontalBorder10);
            tableCellBorders118.Append(insideVerticalBorder9);
            Shading shading282 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            StartMargin startMargin10 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(startMargin10);

            tableCellProperties118.Append(tableCellWidth118);
            tableCellProperties118.Append(gridSpan118);
            tableCellProperties118.Append(tableCellBorders118);
            tableCellProperties118.Append(shading282);
            tableCellProperties118.Append(tableCellMargin9);

            Paragraph paragraph159 = new Paragraph();

            ParagraphProperties paragraphProperties159 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId159 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification92 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties159 = new ParagraphMarkRunProperties();

            paragraphProperties159.Append(paragraphStyleId159);
            paragraphProperties159.Append(justification92);
            paragraphProperties159.Append(paragraphMarkRunProperties159);

            Run run162 = new Run();

            RunProperties runProperties162 = new RunProperties();
            FontSize fontSize235 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript235 = new FontSizeComplexScript() { Val = "20" };

            runProperties162.Append(fontSize235);
            runProperties162.Append(fontSizeComplexScript235);
            Text text62 = new Text();
            text62.Text = "Производственные здания и сооружения";

            run162.Append(runProperties162);
            run162.Append(text62);

            paragraph159.Append(paragraphProperties159);
            paragraph159.Append(run162);

            tableCell118.Append(tableCellProperties118);
            tableCell118.Append(paragraph159);

            TableCell tableCell119 = new TableCell();

            TableCellProperties tableCellProperties119 = new TableCellProperties();
            TableCellWidth tableCellWidth119 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan119 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders119 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder10 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder10 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder11 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder10 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders119.Append(topBorder12);
            tableCellBorders119.Append(startBorder10);
            tableCellBorders119.Append(bottomBorder11);
            tableCellBorders119.Append(endBorder10);
            tableCellBorders119.Append(insideHorizontalBorder11);
            tableCellBorders119.Append(insideVerticalBorder10);
            Shading shading283 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            StartMargin startMargin11 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(startMargin11);

            tableCellProperties119.Append(tableCellWidth119);
            tableCellProperties119.Append(gridSpan119);
            tableCellProperties119.Append(tableCellBorders119);
            tableCellProperties119.Append(shading283);
            tableCellProperties119.Append(tableCellMargin10);

            Paragraph paragraph160 = new Paragraph();

            ParagraphProperties paragraphProperties160 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId160 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification93 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties160 = new ParagraphMarkRunProperties();

            paragraphProperties160.Append(paragraphStyleId160);
            paragraphProperties160.Append(justification93);
            paragraphProperties160.Append(paragraphMarkRunProperties160);

            Run run163 = new Run();

            RunProperties runProperties163 = new RunProperties();
            FontSize fontSize236 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript236 = new FontSizeComplexScript() { Val = "20" };

            runProperties163.Append(fontSize236);
            runProperties163.Append(fontSizeComplexScript236);
            Text text63 = new Text();
            text63.Text = "Конструктивные и технологические элементы";

            run163.Append(runProperties163);
            run163.Append(text63);

            paragraph160.Append(paragraphProperties160);
            paragraph160.Append(run163);

            tableCell119.Append(tableCellProperties119);
            tableCell119.Append(paragraph160);

            tableRow49.Append(tableRowProperties49);
            tableRow49.Append(tableCell117);
            tableRow49.Append(tableCell118);
            tableRow49.Append(tableCell119);

            TableRow tableRow50 = new TableRow();
            TableRowProperties tableRowProperties50 = new TableRowProperties();

            TableCell tableCell120 = new TableCell();

            TableCellProperties tableCellProperties120 = new TableCellProperties();
            TableCellWidth tableCellWidth120 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan120 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders120 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder11 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder11 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder12 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder11 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders120.Append(topBorder13);
            tableCellBorders120.Append(startBorder11);
            tableCellBorders120.Append(bottomBorder12);
            tableCellBorders120.Append(endBorder11);
            tableCellBorders120.Append(insideHorizontalBorder12);
            tableCellBorders120.Append(insideVerticalBorder11);
            Shading shading284 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            StartMargin startMargin12 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(startMargin12);
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties120.Append(tableCellWidth120);
            tableCellProperties120.Append(gridSpan120);
            tableCellProperties120.Append(tableCellBorders120);
            tableCellProperties120.Append(shading284);
            tableCellProperties120.Append(tableCellMargin11);
            tableCellProperties120.Append(tableCellVerticalAlignment1);

            Paragraph paragraph161 = new Paragraph();

            ParagraphProperties paragraphProperties161 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId161 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification94 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties161 = new ParagraphMarkRunProperties();

            paragraphProperties161.Append(paragraphStyleId161);
            paragraphProperties161.Append(justification94);
            paragraphProperties161.Append(paragraphMarkRunProperties161);

            Run run164 = new Run();

            RunProperties runProperties164 = new RunProperties();
            FontSize fontSize237 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript237 = new FontSizeComplexScript() { Val = "20" };

            runProperties164.Append(fontSize237);
            runProperties164.Append(fontSizeComplexScript237);
            Text text64 = new Text();
            text64.Text = "1";

            run164.Append(runProperties164);
            run164.Append(text64);

            paragraph161.Append(paragraphProperties161);
            paragraph161.Append(run164);

            tableCell120.Append(tableCellProperties120);
            tableCell120.Append(paragraph161);

            TableCell tableCell121 = new TableCell();

            TableCellProperties tableCellProperties121 = new TableCellProperties();
            TableCellWidth tableCellWidth121 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan121 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders121 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder12 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder12 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder13 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder12 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders121.Append(topBorder14);
            tableCellBorders121.Append(startBorder12);
            tableCellBorders121.Append(bottomBorder13);
            tableCellBorders121.Append(endBorder12);
            tableCellBorders121.Append(insideHorizontalBorder13);
            tableCellBorders121.Append(insideVerticalBorder12);
            Shading shading285 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            StartMargin startMargin13 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(startMargin13);
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties121.Append(tableCellWidth121);
            tableCellProperties121.Append(gridSpan121);
            tableCellProperties121.Append(tableCellBorders121);
            tableCellProperties121.Append(shading285);
            tableCellProperties121.Append(tableCellMargin12);
            tableCellProperties121.Append(tableCellVerticalAlignment2);

            Paragraph paragraph162 = new Paragraph();

            ParagraphProperties paragraphProperties162 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId162 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification95 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties162 = new ParagraphMarkRunProperties();

            paragraphProperties162.Append(paragraphStyleId162);
            paragraphProperties162.Append(justification95);
            paragraphProperties162.Append(paragraphMarkRunProperties162);

            Run run165 = new Run();

            RunProperties runProperties165 = new RunProperties();
            FontSize fontSize238 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript238 = new FontSizeComplexScript() { Val = "20" };

            runProperties165.Append(fontSize238);
            runProperties165.Append(fontSizeComplexScript238);
            Text text65 = new Text();
            text65.Text = "Здание газораспределительного пункта";

            run165.Append(runProperties165);
            run165.Append(text65);

            paragraph162.Append(paragraphProperties162);
            paragraph162.Append(run165);

            tableCell121.Append(tableCellProperties121);
            tableCell121.Append(paragraph162);

            TableCell tableCell122 = new TableCell();

            TableCellProperties tableCellProperties122 = new TableCellProperties();
            TableCellWidth tableCellWidth122 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan122 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders122 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder13 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder13 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder14 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder13 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders122.Append(topBorder15);
            tableCellBorders122.Append(startBorder13);
            tableCellBorders122.Append(bottomBorder14);
            tableCellBorders122.Append(endBorder13);
            tableCellBorders122.Append(insideHorizontalBorder14);
            tableCellBorders122.Append(insideVerticalBorder13);
            Shading shading286 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            StartMargin startMargin14 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(startMargin14);
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties122.Append(tableCellWidth122);
            tableCellProperties122.Append(gridSpan122);
            tableCellProperties122.Append(tableCellBorders122);
            tableCellProperties122.Append(shading286);
            tableCellProperties122.Append(tableCellMargin13);
            tableCellProperties122.Append(tableCellVerticalAlignment3);

            Paragraph paragraph163 = new Paragraph();

            ParagraphProperties paragraphProperties163 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId163 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification96 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties163 = new ParagraphMarkRunProperties();

            paragraphProperties163.Append(paragraphStyleId163);
            paragraphProperties163.Append(justification96);
            paragraphProperties163.Append(paragraphMarkRunProperties163);

            Run run166 = new Run();

            RunProperties runProperties166 = new RunProperties();
            FontSize fontSize239 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript239 = new FontSizeComplexScript() { Val = "20" };

            runProperties166.Append(fontSize239);
            runProperties166.Append(fontSizeComplexScript239);
            Text text66 = new Text();
            text66.Text = "Отдельно стоящее одноэтажное кирпичное здание с облегченной кровлей, предназначенное для размещения технологического оборудования по обеспечению процесса распределения газа. Площадь-562,6м².";

            run166.Append(runProperties166);
            run166.Append(text66);

            paragraph163.Append(paragraphProperties163);
            paragraph163.Append(run166);

            Paragraph paragraph164 = new Paragraph();

            ParagraphProperties paragraphProperties164 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId164 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification97 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties164 = new ParagraphMarkRunProperties();

            paragraphProperties164.Append(paragraphStyleId164);
            paragraphProperties164.Append(justification97);
            paragraphProperties164.Append(paragraphMarkRunProperties164);

            Run run167 = new Run();

            RunProperties runProperties167 = new RunProperties();
            FontSize fontSize240 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript240 = new FontSizeComplexScript() { Val = "20" };

            runProperties167.Append(fontSize240);
            runProperties167.Append(fontSizeComplexScript240);
            Text text67 = new Text();
            text67.Text = "Входное давление газа в городской части ГРП =12 кгс/см2";

            run167.Append(runProperties167);
            run167.Append(text67);

            paragraph164.Append(paragraphProperties164);
            paragraph164.Append(run167);

            Paragraph paragraph165 = new Paragraph();

            ParagraphProperties paragraphProperties165 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId165 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification98 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties165 = new ParagraphMarkRunProperties();

            paragraphProperties165.Append(paragraphStyleId165);
            paragraphProperties165.Append(justification98);
            paragraphProperties165.Append(paragraphMarkRunProperties165);

            Run run168 = new Run();

            RunProperties runProperties168 = new RunProperties();
            FontSize fontSize241 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript241 = new FontSizeComplexScript() { Val = "20" };

            runProperties168.Append(fontSize241);
            runProperties168.Append(fontSizeComplexScript241);
            Text text68 = new Text();
            text68.Text = "Входное давление газа в станционной части ГРП =3 кгс/см2";

            run168.Append(runProperties168);
            run168.Append(text68);

            paragraph165.Append(paragraphProperties165);
            paragraph165.Append(run168);

            Paragraph paragraph166 = new Paragraph();

            ParagraphProperties paragraphProperties166 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId166 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification99 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties166 = new ParagraphMarkRunProperties();

            paragraphProperties166.Append(paragraphStyleId166);
            paragraphProperties166.Append(justification99);
            paragraphProperties166.Append(paragraphMarkRunProperties166);

            Run run169 = new Run();

            RunProperties runProperties169 = new RunProperties();
            FontSize fontSize242 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript242 = new FontSizeComplexScript() { Val = "20" };

            runProperties169.Append(fontSize242);
            runProperties169.Append(fontSizeComplexScript242);
            Text text69 = new Text();
            text69.Text = "Рабочее давление на котлы = 0.7 кгс/см2";

            run169.Append(runProperties169);
            run169.Append(text69);

            paragraph166.Append(paragraphProperties166);
            paragraph166.Append(run169);

            tableCell122.Append(tableCellProperties122);
            tableCell122.Append(paragraph163);
            tableCell122.Append(paragraph164);
            tableCell122.Append(paragraph165);
            tableCell122.Append(paragraph166);

            tableRow50.Append(tableRowProperties50);
            tableRow50.Append(tableCell120);
            tableRow50.Append(tableCell121);
            tableRow50.Append(tableCell122);

            TableRow tableRow51 = new TableRow();
            TableRowProperties tableRowProperties51 = new TableRowProperties();

            TableCell tableCell123 = new TableCell();

            TableCellProperties tableCellProperties123 = new TableCellProperties();
            TableCellWidth tableCellWidth123 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan123 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders123 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder14 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder14 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder15 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder14 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders123.Append(topBorder16);
            tableCellBorders123.Append(startBorder14);
            tableCellBorders123.Append(bottomBorder15);
            tableCellBorders123.Append(endBorder14);
            tableCellBorders123.Append(insideHorizontalBorder15);
            tableCellBorders123.Append(insideVerticalBorder14);
            Shading shading287 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            StartMargin startMargin15 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(startMargin15);
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties123.Append(tableCellWidth123);
            tableCellProperties123.Append(gridSpan123);
            tableCellProperties123.Append(tableCellBorders123);
            tableCellProperties123.Append(shading287);
            tableCellProperties123.Append(tableCellMargin14);
            tableCellProperties123.Append(tableCellVerticalAlignment4);

            Paragraph paragraph167 = new Paragraph();

            ParagraphProperties paragraphProperties167 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId167 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification100 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties167 = new ParagraphMarkRunProperties();

            paragraphProperties167.Append(paragraphStyleId167);
            paragraphProperties167.Append(justification100);
            paragraphProperties167.Append(paragraphMarkRunProperties167);

            Run run170 = new Run();

            RunProperties runProperties170 = new RunProperties();
            FontSize fontSize243 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript243 = new FontSizeComplexScript() { Val = "20" };

            runProperties170.Append(fontSize243);
            runProperties170.Append(fontSizeComplexScript243);
            Text text70 = new Text();
            text70.Text = "2";

            run170.Append(runProperties170);
            run170.Append(text70);

            paragraph167.Append(paragraphProperties167);
            paragraph167.Append(run170);

            tableCell123.Append(tableCellProperties123);
            tableCell123.Append(paragraph167);

            TableCell tableCell124 = new TableCell();

            TableCellProperties tableCellProperties124 = new TableCellProperties();
            TableCellWidth tableCellWidth124 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan124 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders124 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder15 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder15 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder16 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder15 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders124.Append(topBorder17);
            tableCellBorders124.Append(startBorder15);
            tableCellBorders124.Append(bottomBorder16);
            tableCellBorders124.Append(endBorder15);
            tableCellBorders124.Append(insideHorizontalBorder16);
            tableCellBorders124.Append(insideVerticalBorder15);
            Shading shading288 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            StartMargin startMargin16 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(startMargin16);
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties124.Append(tableCellWidth124);
            tableCellProperties124.Append(gridSpan124);
            tableCellProperties124.Append(tableCellBorders124);
            tableCellProperties124.Append(shading288);
            tableCellProperties124.Append(tableCellMargin15);
            tableCellProperties124.Append(tableCellVerticalAlignment5);

            Paragraph paragraph168 = new Paragraph();

            ParagraphProperties paragraphProperties168 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId168 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification101 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties168 = new ParagraphMarkRunProperties();

            paragraphProperties168.Append(paragraphStyleId168);
            paragraphProperties168.Append(justification101);
            paragraphProperties168.Append(paragraphMarkRunProperties168);

            Run run171 = new Run();

            RunProperties runProperties171 = new RunProperties();
            FontSize fontSize244 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript244 = new FontSizeComplexScript() { Val = "20" };

            runProperties171.Append(fontSize244);
            runProperties171.Append(fontSizeComplexScript244);
            Text text71 = new Text();
            text71.Text = "Здание объединённого вспомогательного корпуса";

            run171.Append(runProperties171);
            run171.Append(text71);

            paragraph168.Append(paragraphProperties168);
            paragraph168.Append(run171);

            tableCell124.Append(tableCellProperties124);
            tableCell124.Append(paragraph168);

            TableCell tableCell125 = new TableCell();

            TableCellProperties tableCellProperties125 = new TableCellProperties();
            TableCellWidth tableCellWidth125 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan125 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders125 = new TableCellBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder16 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder16 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder17 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder16 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders125.Append(topBorder18);
            tableCellBorders125.Append(startBorder16);
            tableCellBorders125.Append(bottomBorder17);
            tableCellBorders125.Append(endBorder16);
            tableCellBorders125.Append(insideHorizontalBorder17);
            tableCellBorders125.Append(insideVerticalBorder16);
            Shading shading289 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            StartMargin startMargin17 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(startMargin17);
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties125.Append(tableCellWidth125);
            tableCellProperties125.Append(gridSpan125);
            tableCellProperties125.Append(tableCellBorders125);
            tableCellProperties125.Append(shading289);
            tableCellProperties125.Append(tableCellMargin16);
            tableCellProperties125.Append(tableCellVerticalAlignment6);

            Paragraph paragraph169 = new Paragraph();

            ParagraphProperties paragraphProperties169 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId169 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification102 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties169 = new ParagraphMarkRunProperties();

            paragraphProperties169.Append(paragraphStyleId169);
            paragraphProperties169.Append(justification102);
            paragraphProperties169.Append(paragraphMarkRunProperties169);

            Run run172 = new Run();

            RunProperties runProperties172 = new RunProperties();
            FontSize fontSize245 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript245 = new FontSizeComplexScript() { Val = "20" };

            runProperties172.Append(fontSize245);
            runProperties172.Append(fontSizeComplexScript245);
            Text text72 = new Text();
            text72.Text = "4-х этажное здание, предназначенное для размещения персонала             РТС «Тушино-5», специалистов службы диагностики тепловых сетей Филиала №9, а так же в нем размещена механическая мастерская. Наружные стены выполнены из сэндвич-панелей. Площадь- 673,6 м².";

            run172.Append(runProperties172);
            run172.Append(text72);

            paragraph169.Append(paragraphProperties169);
            paragraph169.Append(run172);

            tableCell125.Append(tableCellProperties125);
            tableCell125.Append(paragraph169);

            tableRow51.Append(tableRowProperties51);
            tableRow51.Append(tableCell123);
            tableRow51.Append(tableCell124);
            tableRow51.Append(tableCell125);

            TableRow tableRow52 = new TableRow();
            TableRowProperties tableRowProperties52 = new TableRowProperties();

            TableCell tableCell126 = new TableCell();

            TableCellProperties tableCellProperties126 = new TableCellProperties();
            TableCellWidth tableCellWidth126 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan126 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders126 = new TableCellBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder17 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder17 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder18 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder17 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders126.Append(topBorder19);
            tableCellBorders126.Append(startBorder17);
            tableCellBorders126.Append(bottomBorder18);
            tableCellBorders126.Append(endBorder17);
            tableCellBorders126.Append(insideHorizontalBorder18);
            tableCellBorders126.Append(insideVerticalBorder17);
            Shading shading290 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            StartMargin startMargin18 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(startMargin18);
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties126.Append(tableCellWidth126);
            tableCellProperties126.Append(gridSpan126);
            tableCellProperties126.Append(tableCellBorders126);
            tableCellProperties126.Append(shading290);
            tableCellProperties126.Append(tableCellMargin17);
            tableCellProperties126.Append(tableCellVerticalAlignment7);

            Paragraph paragraph170 = new Paragraph();

            ParagraphProperties paragraphProperties170 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId170 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification103 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties170 = new ParagraphMarkRunProperties();

            paragraphProperties170.Append(paragraphStyleId170);
            paragraphProperties170.Append(justification103);
            paragraphProperties170.Append(paragraphMarkRunProperties170);

            Run run173 = new Run();

            RunProperties runProperties173 = new RunProperties();
            FontSize fontSize246 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript246 = new FontSizeComplexScript() { Val = "20" };

            runProperties173.Append(fontSize246);
            runProperties173.Append(fontSizeComplexScript246);
            Text text73 = new Text();
            text73.Text = "3";

            run173.Append(runProperties173);
            run173.Append(text73);

            paragraph170.Append(paragraphProperties170);
            paragraph170.Append(run173);

            tableCell126.Append(tableCellProperties126);
            tableCell126.Append(paragraph170);

            TableCell tableCell127 = new TableCell();

            TableCellProperties tableCellProperties127 = new TableCellProperties();
            TableCellWidth tableCellWidth127 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan127 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders127 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder18 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder18 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder19 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder18 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders127.Append(topBorder20);
            tableCellBorders127.Append(startBorder18);
            tableCellBorders127.Append(bottomBorder19);
            tableCellBorders127.Append(endBorder18);
            tableCellBorders127.Append(insideHorizontalBorder19);
            tableCellBorders127.Append(insideVerticalBorder18);
            Shading shading291 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            StartMargin startMargin19 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(startMargin19);
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties127.Append(tableCellWidth127);
            tableCellProperties127.Append(gridSpan127);
            tableCellProperties127.Append(tableCellBorders127);
            tableCellProperties127.Append(shading291);
            tableCellProperties127.Append(tableCellMargin18);
            tableCellProperties127.Append(tableCellVerticalAlignment8);

            Paragraph paragraph171 = new Paragraph();

            ParagraphProperties paragraphProperties171 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId171 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification104 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties171 = new ParagraphMarkRunProperties();

            paragraphProperties171.Append(paragraphStyleId171);
            paragraphProperties171.Append(justification104);
            paragraphProperties171.Append(paragraphMarkRunProperties171);

            Run run174 = new Run();

            RunProperties runProperties174 = new RunProperties();
            FontSize fontSize247 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript247 = new FontSizeComplexScript() { Val = "20" };

            runProperties174.Append(fontSize247);
            runProperties174.Append(fontSizeComplexScript247);
            Text text74 = new Text();
            text74.Text = "Главный корпус";

            run174.Append(runProperties174);
            run174.Append(text74);

            paragraph171.Append(paragraphProperties171);
            paragraph171.Append(run174);

            tableCell127.Append(tableCellProperties127);
            tableCell127.Append(paragraph171);

            TableCell tableCell128 = new TableCell();

            TableCellProperties tableCellProperties128 = new TableCellProperties();
            TableCellWidth tableCellWidth128 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan128 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders128 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder19 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder19 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder20 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder19 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders128.Append(topBorder21);
            tableCellBorders128.Append(startBorder19);
            tableCellBorders128.Append(bottomBorder20);
            tableCellBorders128.Append(endBorder19);
            tableCellBorders128.Append(insideHorizontalBorder20);
            tableCellBorders128.Append(insideVerticalBorder19);
            Shading shading292 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            StartMargin startMargin20 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(startMargin20);
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties128.Append(tableCellWidth128);
            tableCellProperties128.Append(gridSpan128);
            tableCellProperties128.Append(tableCellBorders128);
            tableCellProperties128.Append(shading292);
            tableCellProperties128.Append(tableCellMargin19);
            tableCellProperties128.Append(tableCellVerticalAlignment9);

            Paragraph paragraph172 = new Paragraph();

            ParagraphProperties paragraphProperties172 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId172 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification105 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties172 = new ParagraphMarkRunProperties();

            paragraphProperties172.Append(paragraphStyleId172);
            paragraphProperties172.Append(justification105);
            paragraphProperties172.Append(paragraphMarkRunProperties172);

            Run run175 = new Run();

            RunProperties runProperties175 = new RunProperties();
            FontSize fontSize248 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript248 = new FontSizeComplexScript() { Val = "20" };

            runProperties175.Append(fontSize248);
            runProperties175.Append(fontSizeComplexScript248);
            Text text75 = new Text();
            text75.Text = "5-и этажное здание, предназначенное для размещения технологического оборудования по выработке и поставке теплоносителя потребителям (население, организации и учреждения) в границах обслуживаемого района и персонала станции. Наружные стены выполнены из сэндвич-панелей. Площадь- 7447,2 м².";

            run175.Append(runProperties175);
            run175.Append(text75);

            paragraph172.Append(paragraphProperties172);
            paragraph172.Append(run175);

            Paragraph paragraph173 = new Paragraph();

            ParagraphProperties paragraphProperties173 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId173 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification106 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties173 = new ParagraphMarkRunProperties();

            paragraphProperties173.Append(paragraphStyleId173);
            paragraphProperties173.Append(justification106);
            paragraphProperties173.Append(paragraphMarkRunProperties173);

            Run run176 = new Run();

            RunProperties runProperties176 = new RunProperties();
            FontSize fontSize249 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript249 = new FontSizeComplexScript() { Val = "20" };

            runProperties176.Append(fontSize249);
            runProperties176.Append(fontSizeComplexScript249);
            Text text76 = new Text();
            text76.Text = "В главном корпусе находятся машинный и котельный залы, ВПУ-ДПУ, ЧРП, РТП, административная часть.";

            run176.Append(runProperties176);
            run176.Append(text76);

            paragraph173.Append(paragraphProperties173);
            paragraph173.Append(run176);

            tableCell128.Append(tableCellProperties128);
            tableCell128.Append(paragraph172);
            tableCell128.Append(paragraph173);

            tableRow52.Append(tableRowProperties52);
            tableRow52.Append(tableCell126);
            tableRow52.Append(tableCell127);
            tableRow52.Append(tableCell128);

            TableRow tableRow53 = new TableRow();
            TableRowProperties tableRowProperties53 = new TableRowProperties();

            TableCell tableCell129 = new TableCell();

            TableCellProperties tableCellProperties129 = new TableCellProperties();
            TableCellWidth tableCellWidth129 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan129 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders129 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder20 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder20 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder21 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder20 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders129.Append(topBorder22);
            tableCellBorders129.Append(startBorder20);
            tableCellBorders129.Append(bottomBorder21);
            tableCellBorders129.Append(endBorder20);
            tableCellBorders129.Append(insideHorizontalBorder21);
            tableCellBorders129.Append(insideVerticalBorder20);
            Shading shading293 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            StartMargin startMargin21 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(startMargin21);
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties129.Append(tableCellWidth129);
            tableCellProperties129.Append(gridSpan129);
            tableCellProperties129.Append(tableCellBorders129);
            tableCellProperties129.Append(shading293);
            tableCellProperties129.Append(tableCellMargin20);
            tableCellProperties129.Append(tableCellVerticalAlignment10);

            Paragraph paragraph174 = new Paragraph();

            ParagraphProperties paragraphProperties174 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId174 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification107 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties174 = new ParagraphMarkRunProperties();

            paragraphProperties174.Append(paragraphStyleId174);
            paragraphProperties174.Append(justification107);
            paragraphProperties174.Append(paragraphMarkRunProperties174);

            Run run177 = new Run();

            RunProperties runProperties177 = new RunProperties();
            FontSize fontSize250 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript250 = new FontSizeComplexScript() { Val = "20" };

            runProperties177.Append(fontSize250);
            runProperties177.Append(fontSizeComplexScript250);
            Text text77 = new Text();
            text77.Text = "4";

            run177.Append(runProperties177);
            run177.Append(text77);

            paragraph174.Append(paragraphProperties174);
            paragraph174.Append(run177);

            tableCell129.Append(tableCellProperties129);
            tableCell129.Append(paragraph174);

            TableCell tableCell130 = new TableCell();

            TableCellProperties tableCellProperties130 = new TableCellProperties();
            TableCellWidth tableCellWidth130 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan130 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders130 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder21 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder21 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder22 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder21 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders130.Append(topBorder23);
            tableCellBorders130.Append(startBorder21);
            tableCellBorders130.Append(bottomBorder22);
            tableCellBorders130.Append(endBorder21);
            tableCellBorders130.Append(insideHorizontalBorder22);
            tableCellBorders130.Append(insideVerticalBorder21);
            Shading shading294 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            StartMargin startMargin22 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(startMargin22);
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties130.Append(tableCellWidth130);
            tableCellProperties130.Append(gridSpan130);
            tableCellProperties130.Append(tableCellBorders130);
            tableCellProperties130.Append(shading294);
            tableCellProperties130.Append(tableCellMargin21);
            tableCellProperties130.Append(tableCellVerticalAlignment11);

            Paragraph paragraph175 = new Paragraph();

            ParagraphProperties paragraphProperties175 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId175 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification108 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties175 = new ParagraphMarkRunProperties();

            paragraphProperties175.Append(paragraphStyleId175);
            paragraphProperties175.Append(justification108);
            paragraphProperties175.Append(paragraphMarkRunProperties175);

            Run run178 = new Run();

            RunProperties runProperties178 = new RunProperties();
            FontSize fontSize251 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript251 = new FontSizeComplexScript() { Val = "20" };

            runProperties178.Append(fontSize251);
            runProperties178.Append(fontSizeComplexScript251);
            Text text78 = new Text();
            text78.Text = "Здание проходной";

            run178.Append(runProperties178);
            run178.Append(text78);

            paragraph175.Append(paragraphProperties175);
            paragraph175.Append(run178);

            tableCell130.Append(tableCellProperties130);
            tableCell130.Append(paragraph175);

            TableCell tableCell131 = new TableCell();

            TableCellProperties tableCellProperties131 = new TableCellProperties();
            TableCellWidth tableCellWidth131 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan131 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders131 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder22 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder22 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder23 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder22 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders131.Append(topBorder24);
            tableCellBorders131.Append(startBorder22);
            tableCellBorders131.Append(bottomBorder23);
            tableCellBorders131.Append(endBorder22);
            tableCellBorders131.Append(insideHorizontalBorder23);
            tableCellBorders131.Append(insideVerticalBorder22);
            Shading shading295 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            StartMargin startMargin23 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(startMargin23);
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties131.Append(tableCellWidth131);
            tableCellProperties131.Append(gridSpan131);
            tableCellProperties131.Append(tableCellBorders131);
            tableCellProperties131.Append(shading295);
            tableCellProperties131.Append(tableCellMargin22);
            tableCellProperties131.Append(tableCellVerticalAlignment12);

            Paragraph paragraph176 = new Paragraph();

            ParagraphProperties paragraphProperties176 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId176 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification109 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties176 = new ParagraphMarkRunProperties();

            paragraphProperties176.Append(paragraphStyleId176);
            paragraphProperties176.Append(justification109);
            paragraphProperties176.Append(paragraphMarkRunProperties176);

            Run run179 = new Run();

            RunProperties runProperties179 = new RunProperties();
            FontSize fontSize252 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript252 = new FontSizeComplexScript() { Val = "20" };

            runProperties179.Append(fontSize252);
            runProperties179.Append(fontSizeComplexScript252);
            Text text79 = new Text();
            text79.Text = "Кирпичное одноэтажное здание, предназначенное для пропуска людей, размещения сотрудников охраны и технических средств безопасности. Площадь-63,9м².";

            run179.Append(runProperties179);
            run179.Append(text79);

            paragraph176.Append(paragraphProperties176);
            paragraph176.Append(run179);

            tableCell131.Append(tableCellProperties131);
            tableCell131.Append(paragraph176);

            tableRow53.Append(tableRowProperties53);
            tableRow53.Append(tableCell129);
            tableRow53.Append(tableCell130);
            tableRow53.Append(tableCell131);

            TableRow tableRow54 = new TableRow();
            TableRowProperties tableRowProperties54 = new TableRowProperties();

            TableCell tableCell132 = new TableCell();

            TableCellProperties tableCellProperties132 = new TableCellProperties();
            TableCellWidth tableCellWidth132 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan132 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders132 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder23 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder23 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder24 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder23 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders132.Append(topBorder25);
            tableCellBorders132.Append(startBorder23);
            tableCellBorders132.Append(bottomBorder24);
            tableCellBorders132.Append(endBorder23);
            tableCellBorders132.Append(insideHorizontalBorder24);
            tableCellBorders132.Append(insideVerticalBorder23);
            Shading shading296 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            StartMargin startMargin24 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(startMargin24);

            tableCellProperties132.Append(tableCellWidth132);
            tableCellProperties132.Append(gridSpan132);
            tableCellProperties132.Append(tableCellBorders132);
            tableCellProperties132.Append(shading296);
            tableCellProperties132.Append(tableCellMargin23);

            Paragraph paragraph177 = new Paragraph();

            ParagraphProperties paragraphProperties177 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId177 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties177 = new ParagraphMarkRunProperties();

            paragraphProperties177.Append(paragraphStyleId177);
            paragraphProperties177.Append(paragraphMarkRunProperties177);

            Run run180 = new Run();

            RunProperties runProperties180 = new RunProperties();
            Bold bold9 = new Bold();
            FontSize fontSize253 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript253 = new FontSizeComplexScript() { Val = "26" };

            runProperties180.Append(bold9);
            runProperties180.Append(fontSize253);
            runProperties180.Append(fontSizeComplexScript253);
            Text text80 = new Text();
            text80.Text = "Общая площадь объекта";

            run180.Append(runProperties180);
            run180.Append(text80);

            Run run181 = new Run();

            RunProperties runProperties181 = new RunProperties();
            FontSize fontSize254 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript254 = new FontSizeComplexScript() { Val = "26" };

            runProperties181.Append(fontSize254);
            runProperties181.Append(fontSizeComplexScript254);
            Text text81 = new Text();
            text81.Text = ", м";

            run181.Append(runProperties181);
            run181.Append(text81);

            Run run182 = new Run();

            RunProperties runProperties182 = new RunProperties();
            FontSize fontSize255 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript255 = new FontSizeComplexScript() { Val = "26" };
            VerticalTextAlignment verticalTextAlignment1 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties182.Append(fontSize255);
            runProperties182.Append(fontSizeComplexScript255);
            runProperties182.Append(verticalTextAlignment1);
            Text text82 = new Text();
            text82.Text = "2";

            run182.Append(runProperties182);
            run182.Append(text82);

            Run run183 = new Run();

            RunProperties runProperties183 = new RunProperties();
            FontSize fontSize256 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript256 = new FontSizeComplexScript() { Val = "26" };

            runProperties183.Append(fontSize256);
            runProperties183.Append(fontSizeComplexScript256);
            Text text83 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text83.Text = " -9200. ";

            run183.Append(runProperties183);
            run183.Append(text83);

            Run run184 = new Run();

            RunProperties runProperties184 = new RunProperties();
            Bold bold10 = new Bold();
            FontSize fontSize257 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript257 = new FontSizeComplexScript() { Val = "26" };

            runProperties184.Append(bold10);
            runProperties184.Append(fontSize257);
            runProperties184.Append(fontSizeComplexScript257);
            Text text84 = new Text();
            text84.Text = "Периметр";

            run184.Append(runProperties184);
            run184.Append(text84);

            Run run185 = new Run();

            RunProperties runProperties185 = new RunProperties();
            FontSize fontSize258 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript258 = new FontSizeComplexScript() { Val = "26" };

            runProperties185.Append(fontSize258);
            runProperties185.Append(fontSizeComplexScript258);
            Text text85 = new Text();
            text85.Text = ", м. – 360.";

            run185.Append(runProperties185);
            run185.Append(text85);

            paragraph177.Append(paragraphProperties177);
            paragraph177.Append(run180);
            paragraph177.Append(run181);
            paragraph177.Append(run182);
            paragraph177.Append(run183);
            paragraph177.Append(run184);
            paragraph177.Append(run185);

            Paragraph paragraph178 = new Paragraph();

            ParagraphProperties paragraphProperties178 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId178 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties178 = new ParagraphMarkRunProperties();

            paragraphProperties178.Append(paragraphStyleId178);
            paragraphProperties178.Append(paragraphMarkRunProperties178);

            Run run186 = new Run();

            RunProperties runProperties186 = new RunProperties();
            FontSize fontSize259 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript259 = new FontSizeComplexScript() { Val = "26" };

            runProperties186.Append(fontSize259);
            runProperties186.Append(fontSizeComplexScript259);
            Text text86 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text86.Text = "Электроснабжение РП 20079 осуществляется по 2-м основным ПКЛ (питающая кабельная линия) питающих центров п/ст 111 ПАО «МОЭСК» и п/ст 837 ПАО «ОЭК» и резервной линии 20076 ПАО «ОЭК»: ";

            run186.Append(runProperties186);
            run186.Append(text86);

            paragraph178.Append(paragraphProperties178);
            paragraph178.Append(run186);

            Paragraph paragraph179 = new Paragraph();

            ParagraphProperties paragraphProperties179 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId179 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties179 = new ParagraphMarkRunProperties();

            paragraphProperties179.Append(paragraphStyleId179);
            paragraphProperties179.Append(paragraphMarkRunProperties179);

            Run run187 = new Run();

            RunProperties runProperties187 = new RunProperties();
            FontSize fontSize260 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript260 = new FontSizeComplexScript() { Val = "26" };

            runProperties187.Append(fontSize260);
            runProperties187.Append(fontSizeComplexScript260);
            Text text87 = new Text();
            text87.Text = "Секция № 1, яч. 15 - ПКЛ 3х240) от ПС № 837, 10 кВ (ПАО «ОЭК»)";

            run187.Append(runProperties187);
            run187.Append(text87);

            paragraph179.Append(paragraphProperties179);
            paragraph179.Append(run187);

            Paragraph paragraph180 = new Paragraph();

            ParagraphProperties paragraphProperties180 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId180 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties180 = new ParagraphMarkRunProperties();

            paragraphProperties180.Append(paragraphStyleId180);
            paragraphProperties180.Append(paragraphMarkRunProperties180);

            Run run188 = new Run();

            RunProperties runProperties188 = new RunProperties();
            FontSize fontSize261 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript261 = new FontSizeComplexScript() { Val = "26" };

            runProperties188.Append(fontSize261);
            runProperties188.Append(fontSizeComplexScript261);
            Text text88 = new Text();
            text88.Text = "Секция № 1, яч. 13 - ПКЛ 3х240) от РП 20076, 10 кВ (ПАО «ОЭК»)";

            run188.Append(runProperties188);
            run188.Append(text88);

            paragraph180.Append(paragraphProperties180);
            paragraph180.Append(run188);

            Paragraph paragraph181 = new Paragraph();

            ParagraphProperties paragraphProperties181 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId181 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties181 = new ParagraphMarkRunProperties();

            paragraphProperties181.Append(paragraphStyleId181);
            paragraphProperties181.Append(paragraphMarkRunProperties181);

            Run run189 = new Run();

            RunProperties runProperties189 = new RunProperties();
            FontSize fontSize262 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript262 = new FontSizeComplexScript() { Val = "26" };

            runProperties189.Append(fontSize262);
            runProperties189.Append(fontSizeComplexScript262);
            Text text89 = new Text();
            text89.Text = "Секция № 2, яч. 12 - ПКЛ 3х240 от ПС № 111 , 10 кВ (ПАО «МОЭСК»)";

            run189.Append(runProperties189);
            run189.Append(text89);

            paragraph181.Append(paragraphProperties181);
            paragraph181.Append(run189);

            Paragraph paragraph182 = new Paragraph();

            ParagraphProperties paragraphProperties182 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId182 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties182 = new ParagraphMarkRunProperties();

            paragraphProperties182.Append(paragraphStyleId182);
            paragraphProperties182.Append(paragraphMarkRunProperties182);

            Run run190 = new Run();

            RunProperties runProperties190 = new RunProperties();
            FontSize fontSize263 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript263 = new FontSizeComplexScript() { Val = "26" };

            runProperties190.Append(fontSize263);
            runProperties190.Append(fontSizeComplexScript263);
            Text text90 = new Text();
            text90.Text = "Секция № 2, яч. 8 - ПКЛ 3х240 от РП 20076, 10 кВ (ПАО «ОЭК»)";

            run190.Append(runProperties190);
            run190.Append(text90);

            paragraph182.Append(paragraphProperties182);
            paragraph182.Append(run190);

            Paragraph paragraph183 = new Paragraph();

            ParagraphProperties paragraphProperties183 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId183 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties183 = new ParagraphMarkRunProperties();

            paragraphProperties183.Append(paragraphStyleId183);
            paragraphProperties183.Append(paragraphMarkRunProperties183);

            Run run191 = new Run();

            RunProperties runProperties191 = new RunProperties();
            FontSize fontSize264 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript264 = new FontSizeComplexScript() { Val = "26" };

            runProperties191.Append(fontSize264);
            runProperties191.Append(fontSizeComplexScript264);
            Text text91 = new Text();
            text91.Text = "Между секциями предусмотрен АВР";

            run191.Append(runProperties191);
            run191.Append(text91);

            paragraph183.Append(paragraphProperties183);
            paragraph183.Append(run191);

            tableCell132.Append(tableCellProperties132);
            tableCell132.Append(paragraph177);
            tableCell132.Append(paragraph178);
            tableCell132.Append(paragraph179);
            tableCell132.Append(paragraph180);
            tableCell132.Append(paragraph181);
            tableCell132.Append(paragraph182);
            tableCell132.Append(paragraph183);

            tableRow54.Append(tableRowProperties54);
            tableRow54.Append(tableCell132);

            TableRow tableRow55 = new TableRow();
            TableRowProperties tableRowProperties55 = new TableRowProperties();

            TableCell tableCell133 = new TableCell();

            TableCellProperties tableCellProperties133 = new TableCellProperties();
            TableCellWidth tableCellWidth133 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan133 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders133 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders133.Append(topBorder26);
            Shading shading297 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties133.Append(tableCellWidth133);
            tableCellProperties133.Append(gridSpan133);
            tableCellProperties133.Append(tableCellBorders133);
            tableCellProperties133.Append(shading297);

            Paragraph paragraph184 = new Paragraph();

            ParagraphProperties paragraphProperties184 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId184 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties184 = new ParagraphMarkRunProperties();
            FontSize fontSize265 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript265 = new FontSizeComplexScript() { Val = "26" };
            Shading shading298 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties184.Append(fontSize265);
            paragraphMarkRunProperties184.Append(fontSizeComplexScript265);
            paragraphMarkRunProperties184.Append(shading298);

            paragraphProperties184.Append(paragraphStyleId184);
            paragraphProperties184.Append(paragraphMarkRunProperties184);

            Run run192 = new Run();

            RunProperties runProperties192 = new RunProperties();
            FontSize fontSize266 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript266 = new FontSizeComplexScript() { Val = "26" };
            Shading shading299 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties192.Append(fontSize266);
            runProperties192.Append(fontSizeComplexScript266);
            runProperties192.Append(shading299);

            run192.Append(runProperties192);

            paragraph184.Append(paragraphProperties184);
            paragraph184.Append(run192);

            tableCell133.Append(tableCellProperties133);
            tableCell133.Append(paragraph184);

            tableRow55.Append(tableRowProperties55);
            tableRow55.Append(tableCell133);

            TableRow tableRow56 = new TableRow();
            TableRowProperties tableRowProperties56 = new TableRowProperties();

            TableCell tableCell134 = new TableCell();

            TableCellProperties tableCellProperties134 = new TableCellProperties();
            TableCellWidth tableCellWidth134 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan134 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders134 = new TableCellBorders();
            Shading shading300 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties134.Append(tableCellWidth134);
            tableCellProperties134.Append(gridSpan134);
            tableCellProperties134.Append(tableCellBorders134);
            tableCellProperties134.Append(shading300);

            Paragraph paragraph185 = new Paragraph();

            ParagraphProperties paragraphProperties185 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId185 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties185 = new ParagraphMarkRunProperties();

            paragraphProperties185.Append(paragraphStyleId185);
            paragraphProperties185.Append(paragraphMarkRunProperties185);

            Run run193 = new Run();

            RunProperties runProperties193 = new RunProperties();
            RunStyle runStyle2 = new RunStyle() { Val = "FontStyle48" };
            Bold bold11 = new Bold();

            runProperties193.Append(runStyle2);
            runProperties193.Append(bold11);
            Text text92 = new Text();
            text92.Text = "1.2. Объекты вне основной территории:";

            run193.Append(runProperties193);
            run193.Append(text92);

            paragraph185.Append(paragraphProperties185);
            paragraph185.Append(run193);

            tableCell134.Append(tableCellProperties134);
            tableCell134.Append(paragraph185);

            tableRow56.Append(tableRowProperties56);
            tableRow56.Append(tableCell134);

            TableRow tableRow57 = new TableRow();
            TableRowProperties tableRowProperties57 = new TableRowProperties();

            TableCell tableCell135 = new TableCell();

            TableCellProperties tableCellProperties135 = new TableCellProperties();
            TableCellWidth tableCellWidth135 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan135 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders135 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder24 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder24 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder25 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder24 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders135.Append(topBorder27);
            tableCellBorders135.Append(startBorder24);
            tableCellBorders135.Append(bottomBorder25);
            tableCellBorders135.Append(endBorder24);
            tableCellBorders135.Append(insideHorizontalBorder25);
            tableCellBorders135.Append(insideVerticalBorder24);
            Shading shading301 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            StartMargin startMargin25 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(startMargin25);

            tableCellProperties135.Append(tableCellWidth135);
            tableCellProperties135.Append(gridSpan135);
            tableCellProperties135.Append(tableCellBorders135);
            tableCellProperties135.Append(shading301);
            tableCellProperties135.Append(tableCellMargin24);

            Paragraph paragraph186 = new Paragraph();

            ParagraphProperties paragraphProperties186 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId186 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification110 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties186 = new ParagraphMarkRunProperties();

            paragraphProperties186.Append(paragraphStyleId186);
            paragraphProperties186.Append(justification110);
            paragraphProperties186.Append(paragraphMarkRunProperties186);

            Run run194 = new Run();

            RunProperties runProperties194 = new RunProperties();
            RunStyle runStyle3 = new RunStyle() { Val = "FontStyle48" };

            runProperties194.Append(runStyle3);
            Text text93 = new Text();
            text93.Text = "ОТСУТСТВУЮТ";

            run194.Append(runProperties194);
            run194.Append(text93);

            paragraph186.Append(paragraphProperties186);
            paragraph186.Append(run194);

            tableCell135.Append(tableCellProperties135);
            tableCell135.Append(paragraph186);

            tableRow57.Append(tableRowProperties57);
            tableRow57.Append(tableCell135);

            TableRow tableRow58 = new TableRow();
            TableRowProperties tableRowProperties58 = new TableRowProperties();

            TableCell tableCell136 = new TableCell();

            TableCellProperties tableCellProperties136 = new TableCellProperties();
            TableCellWidth tableCellWidth136 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan136 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders136 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders136.Append(topBorder28);
            Shading shading302 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties136.Append(tableCellWidth136);
            tableCellProperties136.Append(gridSpan136);
            tableCellProperties136.Append(tableCellBorders136);
            tableCellProperties136.Append(shading302);

            Paragraph paragraph187 = new Paragraph();

            ParagraphProperties paragraphProperties187 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId187 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties187 = new ParagraphMarkRunProperties();
            FontSize fontSize267 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript267 = new FontSizeComplexScript() { Val = "26" };
            Shading shading303 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties187.Append(fontSize267);
            paragraphMarkRunProperties187.Append(fontSizeComplexScript267);
            paragraphMarkRunProperties187.Append(shading303);

            paragraphProperties187.Append(paragraphStyleId187);
            paragraphProperties187.Append(paragraphMarkRunProperties187);

            Run run195 = new Run();

            RunProperties runProperties195 = new RunProperties();
            FontSize fontSize268 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript268 = new FontSizeComplexScript() { Val = "26" };
            Shading shading304 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties195.Append(fontSize268);
            runProperties195.Append(fontSizeComplexScript268);
            runProperties195.Append(shading304);

            run195.Append(runProperties195);

            paragraph187.Append(paragraphProperties187);
            paragraph187.Append(run195);

            tableCell136.Append(tableCellProperties136);
            tableCell136.Append(paragraph187);

            tableRow58.Append(tableRowProperties58);
            tableRow58.Append(tableCell136);

            TableRow tableRow59 = new TableRow();
            TableRowProperties tableRowProperties59 = new TableRowProperties();

            TableCell tableCell137 = new TableCell();

            TableCellProperties tableCellProperties137 = new TableCellProperties();
            TableCellWidth tableCellWidth137 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan137 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders137 = new TableCellBorders();
            Shading shading305 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties137.Append(tableCellWidth137);
            tableCellProperties137.Append(gridSpan137);
            tableCellProperties137.Append(tableCellBorders137);
            tableCellProperties137.Append(shading305);

            Paragraph paragraph188 = new Paragraph();

            ParagraphProperties paragraphProperties188 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId188 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties188 = new ParagraphMarkRunProperties();

            paragraphProperties188.Append(paragraphStyleId188);
            paragraphProperties188.Append(paragraphMarkRunProperties188);

            Run run196 = new Run();

            RunProperties runProperties196 = new RunProperties();
            Bold bold12 = new Bold();
            FontSize fontSize269 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript269 = new FontSizeComplexScript() { Val = "26" };

            runProperties196.Append(bold12);
            runProperties196.Append(fontSize269);
            runProperties196.Append(fontSizeComplexScript269);
            Text text94 = new Text();
            text94.Text = "1.3. Сведения о персонале объекта (организации):";

            run196.Append(runProperties196);
            run196.Append(text94);

            paragraph188.Append(paragraphProperties188);
            paragraph188.Append(run196);

            tableCell137.Append(tableCellProperties137);
            tableCell137.Append(paragraph188);

            tableRow59.Append(tableRowProperties59);
            tableRow59.Append(tableCell137);

            TableRow tableRow60 = new TableRow();
            TableRowProperties tableRowProperties60 = new TableRowProperties();

            TableCell tableCell138 = new TableCell();

            TableCellProperties tableCellProperties138 = new TableCellProperties();
            TableCellWidth tableCellWidth138 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan138 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders138 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder25 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder25 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder26 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder25 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders138.Append(topBorder29);
            tableCellBorders138.Append(startBorder25);
            tableCellBorders138.Append(bottomBorder26);
            tableCellBorders138.Append(endBorder25);
            tableCellBorders138.Append(insideHorizontalBorder26);
            tableCellBorders138.Append(insideVerticalBorder25);
            Shading shading306 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            StartMargin startMargin26 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(startMargin26);

            tableCellProperties138.Append(tableCellWidth138);
            tableCellProperties138.Append(gridSpan138);
            tableCellProperties138.Append(tableCellBorders138);
            tableCellProperties138.Append(shading306);
            tableCellProperties138.Append(tableCellMargin25);

            Paragraph paragraph189 = new Paragraph();

            ParagraphProperties paragraphProperties189 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId189 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties189 = new ParagraphMarkRunProperties();

            paragraphProperties189.Append(paragraphStyleId189);
            paragraphProperties189.Append(paragraphMarkRunProperties189);

            Run run197 = new Run();

            RunProperties runProperties197 = new RunProperties();
            RunFonts runFonts1 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize270 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript270 = new FontSizeComplexScript() { Val = "26" };

            runProperties197.Append(runFonts1);
            runProperties197.Append(fontSize270);
            runProperties197.Append(fontSizeComplexScript270);
            Text text95 = new Text();
            text95.Text = "Общая численность – 35 чел.; из них: инженерный состав – 6 чел., сменный персонал – 29 чел., дневной персонал – 2 чел.";

            run197.Append(runProperties197);
            run197.Append(text95);

            paragraph189.Append(paragraphProperties189);
            paragraph189.Append(run197);

            tableCell138.Append(tableCellProperties138);
            tableCell138.Append(paragraph189);

            tableRow60.Append(tableRowProperties60);
            tableRow60.Append(tableCell138);

            TableRow tableRow61 = new TableRow();
            TableRowProperties tableRowProperties61 = new TableRowProperties();

            TableCell tableCell139 = new TableCell();

            TableCellProperties tableCellProperties139 = new TableCellProperties();
            TableCellWidth tableCellWidth139 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan139 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders139 = new TableCellBorders();
            Shading shading307 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties139.Append(tableCellWidth139);
            tableCellProperties139.Append(gridSpan139);
            tableCellProperties139.Append(tableCellBorders139);
            tableCellProperties139.Append(shading307);

            Paragraph paragraph190 = new Paragraph();

            ParagraphProperties paragraphProperties190 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId190 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties190 = new ParagraphMarkRunProperties();

            paragraphProperties190.Append(paragraphStyleId190);
            paragraphProperties190.Append(paragraphMarkRunProperties190);

            Run run198 = new Run();
            RunProperties runProperties198 = new RunProperties();

            run198.Append(runProperties198);

            paragraph190.Append(paragraphProperties190);
            paragraph190.Append(run198);

            tableCell139.Append(tableCellProperties139);
            tableCell139.Append(paragraph190);

            tableRow61.Append(tableRowProperties61);
            tableRow61.Append(tableCell139);

            TableRow tableRow62 = new TableRow();
            TableRowProperties tableRowProperties62 = new TableRowProperties();

            TableCell tableCell140 = new TableCell();

            TableCellProperties tableCellProperties140 = new TableCellProperties();
            TableCellWidth tableCellWidth140 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan140 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders140 = new TableCellBorders();
            Shading shading308 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties140.Append(tableCellWidth140);
            tableCellProperties140.Append(gridSpan140);
            tableCellProperties140.Append(tableCellBorders140);
            tableCellProperties140.Append(shading308);

            Paragraph paragraph191 = new Paragraph();

            ParagraphProperties paragraphProperties191 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId191 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties191 = new ParagraphMarkRunProperties();

            paragraphProperties191.Append(paragraphStyleId191);
            paragraphProperties191.Append(paragraphMarkRunProperties191);

            Run run199 = new Run();

            RunProperties runProperties199 = new RunProperties();
            Bold bold13 = new Bold();
            FontSize fontSize271 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript271 = new FontSizeComplexScript() { Val = "26" };

            runProperties199.Append(bold13);
            runProperties199.Append(fontSize271);
            runProperties199.Append(fontSizeComplexScript271);
            Text text96 = new Text();
            text96.Text = "1.4. Режим работы объектов (организации):";

            run199.Append(runProperties199);
            run199.Append(text96);

            paragraph191.Append(paragraphProperties191);
            paragraph191.Append(run199);

            tableCell140.Append(tableCellProperties140);
            tableCell140.Append(paragraph191);

            tableRow62.Append(tableRowProperties62);
            tableRow62.Append(tableCell140);

            TableRow tableRow63 = new TableRow();
            TableRowProperties tableRowProperties63 = new TableRowProperties();

            TableCell tableCell141 = new TableCell();

            TableCellProperties tableCellProperties141 = new TableCellProperties();
            TableCellWidth tableCellWidth141 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan141 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders141 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder26 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder26 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder27 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder26 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders141.Append(topBorder30);
            tableCellBorders141.Append(startBorder26);
            tableCellBorders141.Append(bottomBorder27);
            tableCellBorders141.Append(endBorder26);
            tableCellBorders141.Append(insideHorizontalBorder27);
            tableCellBorders141.Append(insideVerticalBorder26);
            Shading shading309 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            StartMargin startMargin27 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(startMargin27);

            tableCellProperties141.Append(tableCellWidth141);
            tableCellProperties141.Append(gridSpan141);
            tableCellProperties141.Append(tableCellBorders141);
            tableCellProperties141.Append(shading309);
            tableCellProperties141.Append(tableCellMargin26);

            Paragraph paragraph192 = new Paragraph();

            ParagraphProperties paragraphProperties192 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId192 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties192 = new ParagraphMarkRunProperties();

            paragraphProperties192.Append(paragraphStyleId192);
            paragraphProperties192.Append(paragraphMarkRunProperties192);

            Run run200 = new Run();

            RunProperties runProperties200 = new RunProperties();
            FontSize fontSize272 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript272 = new FontSizeComplexScript() { Val = "26" };

            runProperties200.Append(fontSize272);
            runProperties200.Append(fontSizeComplexScript272);
            Text text97 = new Text();
            text97.Text = "Режим работы-непрерывный: круглогодичный, односменный, для дежурных смен- двухсменный.";

            run200.Append(runProperties200);
            run200.Append(text97);

            paragraph192.Append(paragraphProperties192);
            paragraph192.Append(run200);

            tableCell141.Append(tableCellProperties141);
            tableCell141.Append(paragraph192);

            tableRow63.Append(tableRowProperties63);
            tableRow63.Append(tableCell141);

            TableRow tableRow64 = new TableRow();
            TableRowProperties tableRowProperties64 = new TableRowProperties();

            TableCell tableCell142 = new TableCell();

            TableCellProperties tableCellProperties142 = new TableCellProperties();
            TableCellWidth tableCellWidth142 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan142 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders142 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder27 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder27 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder28 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder27 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders142.Append(topBorder31);
            tableCellBorders142.Append(startBorder27);
            tableCellBorders142.Append(bottomBorder28);
            tableCellBorders142.Append(endBorder27);
            tableCellBorders142.Append(insideHorizontalBorder28);
            tableCellBorders142.Append(insideVerticalBorder27);
            Shading shading310 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            StartMargin startMargin28 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(startMargin28);

            tableCellProperties142.Append(tableCellWidth142);
            tableCellProperties142.Append(gridSpan142);
            tableCellProperties142.Append(tableCellBorders142);
            tableCellProperties142.Append(shading310);
            tableCellProperties142.Append(tableCellMargin27);

            Paragraph paragraph193 = new Paragraph();

            ParagraphProperties paragraphProperties193 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId193 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties193 = new ParagraphMarkRunProperties();

            paragraphProperties193.Append(paragraphStyleId193);
            paragraphProperties193.Append(paragraphMarkRunProperties193);

            Run run201 = new Run();

            RunProperties runProperties201 = new RunProperties();
            FontSize fontSize273 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript273 = new FontSizeComplexScript() { Val = "26" };

            runProperties201.Append(fontSize273);
            runProperties201.Append(fontSizeComplexScript273);
            Text text98 = new Text();
            text98.Text = "Максимальная численность работающих";

            run201.Append(runProperties201);
            run201.Append(text98);

            paragraph193.Append(paragraphProperties193);
            paragraph193.Append(run201);

            tableCell142.Append(tableCellProperties142);
            tableCell142.Append(paragraph193);

            TableCell tableCell143 = new TableCell();

            TableCellProperties tableCellProperties143 = new TableCellProperties();
            TableCellWidth tableCellWidth143 = new TableCellWidth() { Width = "2147", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan143 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders143 = new TableCellBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder28 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder28 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder29 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder28 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders143.Append(topBorder32);
            tableCellBorders143.Append(startBorder28);
            tableCellBorders143.Append(bottomBorder29);
            tableCellBorders143.Append(endBorder28);
            tableCellBorders143.Append(insideHorizontalBorder29);
            tableCellBorders143.Append(insideVerticalBorder28);
            Shading shading311 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            StartMargin startMargin29 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(startMargin29);

            tableCellProperties143.Append(tableCellWidth143);
            tableCellProperties143.Append(gridSpan143);
            tableCellProperties143.Append(tableCellBorders143);
            tableCellProperties143.Append(shading311);
            tableCellProperties143.Append(tableCellMargin28);

            Paragraph paragraph194 = new Paragraph();

            ParagraphProperties paragraphProperties194 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId194 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification111 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties194 = new ParagraphMarkRunProperties();

            paragraphProperties194.Append(paragraphStyleId194);
            paragraphProperties194.Append(justification111);
            paragraphProperties194.Append(paragraphMarkRunProperties194);

            Run run202 = new Run();

            RunProperties runProperties202 = new RunProperties();
            FontSize fontSize274 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript274 = new FontSizeComplexScript() { Val = "26" };

            runProperties202.Append(fontSize274);
            runProperties202.Append(fontSizeComplexScript274);
            Text text99 = new Text();
            text99.Text = "В дневное время";

            run202.Append(runProperties202);
            run202.Append(text99);

            paragraph194.Append(paragraphProperties194);
            paragraph194.Append(run202);

            tableCell143.Append(tableCellProperties143);
            tableCell143.Append(paragraph194);

            TableCell tableCell144 = new TableCell();

            TableCellProperties tableCellProperties144 = new TableCellProperties();
            TableCellWidth tableCellWidth144 = new TableCellWidth() { Width = "2164", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan144 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders144 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder29 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder29 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder30 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder29 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders144.Append(topBorder33);
            tableCellBorders144.Append(startBorder29);
            tableCellBorders144.Append(bottomBorder30);
            tableCellBorders144.Append(endBorder29);
            tableCellBorders144.Append(insideHorizontalBorder30);
            tableCellBorders144.Append(insideVerticalBorder29);
            Shading shading312 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            StartMargin startMargin30 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(startMargin30);

            tableCellProperties144.Append(tableCellWidth144);
            tableCellProperties144.Append(gridSpan144);
            tableCellProperties144.Append(tableCellBorders144);
            tableCellProperties144.Append(shading312);
            tableCellProperties144.Append(tableCellMargin29);

            Paragraph paragraph195 = new Paragraph();

            ParagraphProperties paragraphProperties195 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId195 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification112 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties195 = new ParagraphMarkRunProperties();

            paragraphProperties195.Append(paragraphStyleId195);
            paragraphProperties195.Append(justification112);
            paragraphProperties195.Append(paragraphMarkRunProperties195);

            Run run203 = new Run();

            RunProperties runProperties203 = new RunProperties();
            FontSize fontSize275 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript275 = new FontSizeComplexScript() { Val = "26" };

            runProperties203.Append(fontSize275);
            runProperties203.Append(fontSizeComplexScript275);
            Text text100 = new Text();
            text100.Text = "20 человек";

            run203.Append(runProperties203);
            run203.Append(text100);

            paragraph195.Append(paragraphProperties195);
            paragraph195.Append(run203);

            tableCell144.Append(tableCellProperties144);
            tableCell144.Append(paragraph195);

            tableRow64.Append(tableRowProperties64);
            tableRow64.Append(tableCell142);
            tableRow64.Append(tableCell143);
            tableRow64.Append(tableCell144);

            TableRow tableRow65 = new TableRow();
            TableRowProperties tableRowProperties65 = new TableRowProperties();

            TableCell tableCell145 = new TableCell();

            TableCellProperties tableCellProperties145 = new TableCellProperties();
            TableCellWidth tableCellWidth145 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan145 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders145 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder30 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder30 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder31 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder30 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders145.Append(topBorder34);
            tableCellBorders145.Append(startBorder30);
            tableCellBorders145.Append(bottomBorder31);
            tableCellBorders145.Append(endBorder30);
            tableCellBorders145.Append(insideHorizontalBorder31);
            tableCellBorders145.Append(insideVerticalBorder30);
            Shading shading313 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            StartMargin startMargin31 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(startMargin31);

            tableCellProperties145.Append(tableCellWidth145);
            tableCellProperties145.Append(gridSpan145);
            tableCellProperties145.Append(tableCellBorders145);
            tableCellProperties145.Append(shading313);
            tableCellProperties145.Append(tableCellMargin30);

            Paragraph paragraph196 = new Paragraph();

            ParagraphProperties paragraphProperties196 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId196 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties196 = new ParagraphMarkRunProperties();
            FontSize fontSize276 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript276 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties196.Append(fontSize276);
            paragraphMarkRunProperties196.Append(fontSizeComplexScript276);

            paragraphProperties196.Append(paragraphStyleId196);
            paragraphProperties196.Append(paragraphMarkRunProperties196);

            Run run204 = new Run();

            RunProperties runProperties204 = new RunProperties();
            FontSize fontSize277 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript277 = new FontSizeComplexScript() { Val = "26" };

            runProperties204.Append(fontSize277);
            runProperties204.Append(fontSizeComplexScript277);

            run204.Append(runProperties204);

            paragraph196.Append(paragraphProperties196);
            paragraph196.Append(run204);

            tableCell145.Append(tableCellProperties145);
            tableCell145.Append(paragraph196);

            TableCell tableCell146 = new TableCell();

            TableCellProperties tableCellProperties146 = new TableCellProperties();
            TableCellWidth tableCellWidth146 = new TableCellWidth() { Width = "2147", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan146 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders146 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder31 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder31 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder32 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder31 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders146.Append(topBorder35);
            tableCellBorders146.Append(startBorder31);
            tableCellBorders146.Append(bottomBorder32);
            tableCellBorders146.Append(endBorder31);
            tableCellBorders146.Append(insideHorizontalBorder32);
            tableCellBorders146.Append(insideVerticalBorder31);
            Shading shading314 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            StartMargin startMargin32 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(startMargin32);

            tableCellProperties146.Append(tableCellWidth146);
            tableCellProperties146.Append(gridSpan146);
            tableCellProperties146.Append(tableCellBorders146);
            tableCellProperties146.Append(shading314);
            tableCellProperties146.Append(tableCellMargin31);

            Paragraph paragraph197 = new Paragraph();

            ParagraphProperties paragraphProperties197 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId197 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification113 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties197 = new ParagraphMarkRunProperties();

            paragraphProperties197.Append(paragraphStyleId197);
            paragraphProperties197.Append(justification113);
            paragraphProperties197.Append(paragraphMarkRunProperties197);

            Run run205 = new Run();

            RunProperties runProperties205 = new RunProperties();
            FontSize fontSize278 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript278 = new FontSizeComplexScript() { Val = "26" };

            runProperties205.Append(fontSize278);
            runProperties205.Append(fontSizeComplexScript278);
            Text text101 = new Text();
            text101.Text = "В ночное время";

            run205.Append(runProperties205);
            run205.Append(text101);

            paragraph197.Append(paragraphProperties197);
            paragraph197.Append(run205);

            tableCell146.Append(tableCellProperties146);
            tableCell146.Append(paragraph197);

            TableCell tableCell147 = new TableCell();

            TableCellProperties tableCellProperties147 = new TableCellProperties();
            TableCellWidth tableCellWidth147 = new TableCellWidth() { Width = "2164", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan147 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders147 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder32 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder32 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder33 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder32 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders147.Append(topBorder36);
            tableCellBorders147.Append(startBorder32);
            tableCellBorders147.Append(bottomBorder33);
            tableCellBorders147.Append(endBorder32);
            tableCellBorders147.Append(insideHorizontalBorder33);
            tableCellBorders147.Append(insideVerticalBorder32);
            Shading shading315 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            StartMargin startMargin33 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(startMargin33);

            tableCellProperties147.Append(tableCellWidth147);
            tableCellProperties147.Append(gridSpan147);
            tableCellProperties147.Append(tableCellBorders147);
            tableCellProperties147.Append(shading315);
            tableCellProperties147.Append(tableCellMargin32);

            Paragraph paragraph198 = new Paragraph();

            ParagraphProperties paragraphProperties198 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId198 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification114 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties198 = new ParagraphMarkRunProperties();

            paragraphProperties198.Append(paragraphStyleId198);
            paragraphProperties198.Append(justification114);
            paragraphProperties198.Append(paragraphMarkRunProperties198);

            Run run206 = new Run();

            RunProperties runProperties206 = new RunProperties();
            FontSize fontSize279 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript279 = new FontSizeComplexScript() { Val = "26" };

            runProperties206.Append(fontSize279);
            runProperties206.Append(fontSizeComplexScript279);
            Text text102 = new Text();
            text102.Text = "8 человек";

            run206.Append(runProperties206);
            run206.Append(text102);

            paragraph198.Append(paragraphProperties198);
            paragraph198.Append(run206);

            tableCell147.Append(tableCellProperties147);
            tableCell147.Append(paragraph198);

            tableRow65.Append(tableRowProperties65);
            tableRow65.Append(tableCell145);
            tableRow65.Append(tableCell146);
            tableRow65.Append(tableCell147);

            TableRow tableRow66 = new TableRow();
            TableRowProperties tableRowProperties66 = new TableRowProperties();

            TableCell tableCell148 = new TableCell();

            TableCellProperties tableCellProperties148 = new TableCellProperties();
            TableCellWidth tableCellWidth148 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan148 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders148 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder33 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder33 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder34 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder33 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders148.Append(topBorder37);
            tableCellBorders148.Append(startBorder33);
            tableCellBorders148.Append(bottomBorder34);
            tableCellBorders148.Append(endBorder33);
            tableCellBorders148.Append(insideHorizontalBorder34);
            tableCellBorders148.Append(insideVerticalBorder33);
            Shading shading316 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin33 = new TableCellMargin();
            StartMargin startMargin34 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin33.Append(startMargin34);

            tableCellProperties148.Append(tableCellWidth148);
            tableCellProperties148.Append(gridSpan148);
            tableCellProperties148.Append(tableCellBorders148);
            tableCellProperties148.Append(shading316);
            tableCellProperties148.Append(tableCellMargin33);

            Paragraph paragraph199 = new Paragraph();

            ParagraphProperties paragraphProperties199 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId199 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop2 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop3 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop4 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop5 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop6 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop7 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop8 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop9 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop10 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop11 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop12 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop13 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop14 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop15 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop16 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop17 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop18 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop19 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop20 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop21 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop22 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop23 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop24 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop25 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs1.Append(tabStop1);
            tabs1.Append(tabStop2);
            tabs1.Append(tabStop3);
            tabs1.Append(tabStop4);
            tabs1.Append(tabStop5);
            tabs1.Append(tabStop6);
            tabs1.Append(tabStop7);
            tabs1.Append(tabStop8);
            tabs1.Append(tabStop9);
            tabs1.Append(tabStop10);
            tabs1.Append(tabStop11);
            tabs1.Append(tabStop12);
            tabs1.Append(tabStop13);
            tabs1.Append(tabStop14);
            tabs1.Append(tabStop15);
            tabs1.Append(tabStop16);
            tabs1.Append(tabStop17);
            tabs1.Append(tabStop18);
            tabs1.Append(tabStop19);
            tabs1.Append(tabStop20);
            tabs1.Append(tabStop21);
            tabs1.Append(tabStop22);
            tabs1.Append(tabStop23);
            tabs1.Append(tabStop24);
            tabs1.Append(tabStop25);
            ParagraphMarkRunProperties paragraphMarkRunProperties199 = new ParagraphMarkRunProperties();

            paragraphProperties199.Append(paragraphStyleId199);
            paragraphProperties199.Append(tabs1);
            paragraphProperties199.Append(paragraphMarkRunProperties199);

            Run run207 = new Run();

            RunProperties runProperties207 = new RunProperties();
            FontSize fontSize280 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript280 = new FontSizeComplexScript() { Val = "26" };

            runProperties207.Append(fontSize280);
            runProperties207.Append(fontSizeComplexScript280);
            Text text103 = new Text();
            text103.Text = "Численность работающих на элементах";

            run207.Append(runProperties207);
            run207.Append(text103);

            paragraph199.Append(paragraphProperties199);
            paragraph199.Append(run207);

            tableCell148.Append(tableCellProperties148);
            tableCell148.Append(paragraph199);

            TableCell tableCell149 = new TableCell();

            TableCellProperties tableCellProperties149 = new TableCellProperties();
            TableCellWidth tableCellWidth149 = new TableCellWidth() { Width = "4311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan149 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders149 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder34 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder34 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder35 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder34 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders149.Append(topBorder38);
            tableCellBorders149.Append(startBorder34);
            tableCellBorders149.Append(bottomBorder35);
            tableCellBorders149.Append(endBorder34);
            tableCellBorders149.Append(insideHorizontalBorder35);
            tableCellBorders149.Append(insideVerticalBorder34);
            Shading shading317 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin34 = new TableCellMargin();
            StartMargin startMargin35 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin34.Append(startMargin35);

            tableCellProperties149.Append(tableCellWidth149);
            tableCellProperties149.Append(gridSpan149);
            tableCellProperties149.Append(tableCellBorders149);
            tableCellProperties149.Append(shading317);
            tableCellProperties149.Append(tableCellMargin34);

            Paragraph paragraph200 = new Paragraph();

            ParagraphProperties paragraphProperties200 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId200 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs2 = new Tabs();
            TabStop tabStop26 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop27 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop28 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop29 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop30 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop31 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop32 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop33 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop34 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop35 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop36 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop37 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop38 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop39 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop40 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop41 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop42 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop43 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop44 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop45 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop46 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop47 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop48 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop49 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop50 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs2.Append(tabStop26);
            tabs2.Append(tabStop27);
            tabs2.Append(tabStop28);
            tabs2.Append(tabStop29);
            tabs2.Append(tabStop30);
            tabs2.Append(tabStop31);
            tabs2.Append(tabStop32);
            tabs2.Append(tabStop33);
            tabs2.Append(tabStop34);
            tabs2.Append(tabStop35);
            tabs2.Append(tabStop36);
            tabs2.Append(tabStop37);
            tabs2.Append(tabStop38);
            tabs2.Append(tabStop39);
            tabs2.Append(tabStop40);
            tabs2.Append(tabStop41);
            tabs2.Append(tabStop42);
            tabs2.Append(tabStop43);
            tabs2.Append(tabStop44);
            tabs2.Append(tabStop45);
            tabs2.Append(tabStop46);
            tabs2.Append(tabStop47);
            tabs2.Append(tabStop48);
            tabs2.Append(tabStop49);
            tabs2.Append(tabStop50);
            Justification justification115 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties200 = new ParagraphMarkRunProperties();

            paragraphProperties200.Append(paragraphStyleId200);
            paragraphProperties200.Append(tabs2);
            paragraphProperties200.Append(justification115);
            paragraphProperties200.Append(paragraphMarkRunProperties200);

            Run run208 = new Run();

            RunProperties runProperties208 = new RunProperties();
            FontSize fontSize281 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript281 = new FontSizeComplexScript() { Val = "26" };

            runProperties208.Append(fontSize281);
            runProperties208.Append(fontSizeComplexScript281);
            Text text104 = new Text();
            text104.Text = "0 чел.";

            run208.Append(runProperties208);
            run208.Append(text104);

            paragraph200.Append(paragraphProperties200);
            paragraph200.Append(run208);

            tableCell149.Append(tableCellProperties149);
            tableCell149.Append(paragraph200);

            tableRow66.Append(tableRowProperties66);
            tableRow66.Append(tableCell148);
            tableRow66.Append(tableCell149);

            TableRow tableRow67 = new TableRow();
            TableRowProperties tableRowProperties67 = new TableRowProperties();

            TableCell tableCell150 = new TableCell();

            TableCellProperties tableCellProperties150 = new TableCellProperties();
            TableCellWidth tableCellWidth150 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan150 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders150 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders150.Append(topBorder39);
            Shading shading318 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties150.Append(tableCellWidth150);
            tableCellProperties150.Append(gridSpan150);
            tableCellProperties150.Append(tableCellBorders150);
            tableCellProperties150.Append(shading318);

            Paragraph paragraph201 = new Paragraph();

            ParagraphProperties paragraphProperties201 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId201 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties201 = new ParagraphMarkRunProperties();
            FontSize fontSize282 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript282 = new FontSizeComplexScript() { Val = "26" };
            Shading shading319 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties201.Append(fontSize282);
            paragraphMarkRunProperties201.Append(fontSizeComplexScript282);
            paragraphMarkRunProperties201.Append(shading319);

            paragraphProperties201.Append(paragraphStyleId201);
            paragraphProperties201.Append(paragraphMarkRunProperties201);

            Run run209 = new Run();

            RunProperties runProperties209 = new RunProperties();
            FontSize fontSize283 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript283 = new FontSizeComplexScript() { Val = "26" };
            Shading shading320 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties209.Append(fontSize283);
            runProperties209.Append(fontSizeComplexScript283);
            runProperties209.Append(shading320);

            run209.Append(runProperties209);

            paragraph201.Append(paragraphProperties201);
            paragraph201.Append(run209);

            tableCell150.Append(tableCellProperties150);
            tableCell150.Append(paragraph201);

            tableRow67.Append(tableRowProperties67);
            tableRow67.Append(tableCell150);

            TableRow tableRow68 = new TableRow();
            TableRowProperties tableRowProperties68 = new TableRowProperties();

            TableCell tableCell151 = new TableCell();

            TableCellProperties tableCellProperties151 = new TableCellProperties();
            TableCellWidth tableCellWidth151 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan151 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders151 = new TableCellBorders();
            Shading shading321 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties151.Append(tableCellWidth151);
            tableCellProperties151.Append(gridSpan151);
            tableCellProperties151.Append(tableCellBorders151);
            tableCellProperties151.Append(shading321);

            Paragraph paragraph202 = new Paragraph();

            ParagraphProperties paragraphProperties202 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId202 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties202 = new ParagraphMarkRunProperties();

            paragraphProperties202.Append(paragraphStyleId202);
            paragraphProperties202.Append(paragraphMarkRunProperties202);

            Run run210 = new Run();

            RunProperties runProperties210 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold14 = new Bold();
            FontSize fontSize284 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript284 = new FontSizeComplexScript() { Val = "26" };

            runProperties210.Append(runFonts2);
            runProperties210.Append(bold14);
            runProperties210.Append(fontSize284);
            runProperties210.Append(fontSizeComplexScript284);
            Text text105 = new Text();
            text105.Text = "1.5. Первоначальная балансовая стоимость основных";

            run210.Append(runProperties210);
            run210.Append(text105);

            Run run211 = new Run();

            RunProperties runProperties211 = new RunProperties();
            Bold bold15 = new Bold();
            FontSize fontSize285 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript285 = new FontSizeComplexScript() { Val = "26" };

            runProperties211.Append(bold15);
            runProperties211.Append(fontSize285);
            runProperties211.Append(fontSizeComplexScript285);
            Text text106 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text106.Text = " производственных фондов:";

            run211.Append(runProperties211);
            run211.Append(text106);

            paragraph202.Append(paragraphProperties202);
            paragraph202.Append(run210);
            paragraph202.Append(run211);

            tableCell151.Append(tableCellProperties151);
            tableCell151.Append(paragraph202);

            tableRow68.Append(tableRowProperties68);
            tableRow68.Append(tableCell151);

            TableRow tableRow69 = new TableRow();
            TableRowProperties tableRowProperties69 = new TableRowProperties();

            TableCell tableCell152 = new TableCell();

            TableCellProperties tableCellProperties152 = new TableCellProperties();
            TableCellWidth tableCellWidth152 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan152 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders152 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder36 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders152.Append(topBorder40);
            tableCellBorders152.Append(bottomBorder36);
            tableCellBorders152.Append(insideHorizontalBorder36);
            Shading shading322 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties152.Append(tableCellWidth152);
            tableCellProperties152.Append(gridSpan152);
            tableCellProperties152.Append(tableCellBorders152);
            tableCellProperties152.Append(shading322);

            Paragraph paragraph203 = new Paragraph();

            ParagraphProperties paragraphProperties203 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId203 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties203 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold16 = new Bold();
            Bold bold17 = new Bold();
            FontSize fontSize286 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript286 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties203.Append(runFonts3);
            paragraphMarkRunProperties203.Append(bold16);
            paragraphMarkRunProperties203.Append(bold17);
            paragraphMarkRunProperties203.Append(fontSize286);
            paragraphMarkRunProperties203.Append(fontSizeComplexScript286);

            paragraphProperties203.Append(paragraphStyleId203);
            paragraphProperties203.Append(paragraphMarkRunProperties203);

            Run run212 = new Run();

            RunProperties runProperties212 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold18 = new Bold();
            FontSize fontSize287 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript287 = new FontSizeComplexScript() { Val = "26" };

            runProperties212.Append(runFonts4);
            runProperties212.Append(bold18);
            runProperties212.Append(fontSize287);
            runProperties212.Append(fontSizeComplexScript287);

            run212.Append(runProperties212);

            paragraph203.Append(paragraphProperties203);
            paragraph203.Append(run212);

            tableCell152.Append(tableCellProperties152);
            tableCell152.Append(paragraph203);

            tableRow69.Append(tableRowProperties69);
            tableRow69.Append(tableCell152);

            TableRow tableRow70 = new TableRow();
            TableRowProperties tableRowProperties70 = new TableRowProperties();

            TableCell tableCell153 = new TableCell();

            TableCellProperties tableCellProperties153 = new TableCellProperties();
            TableCellWidth tableCellWidth153 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan153 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders153 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder35 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder35 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder37 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder35 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders153.Append(topBorder41);
            tableCellBorders153.Append(startBorder35);
            tableCellBorders153.Append(bottomBorder37);
            tableCellBorders153.Append(endBorder35);
            tableCellBorders153.Append(insideHorizontalBorder37);
            tableCellBorders153.Append(insideVerticalBorder35);
            Shading shading323 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin35 = new TableCellMargin();
            StartMargin startMargin36 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin35.Append(startMargin36);

            tableCellProperties153.Append(tableCellWidth153);
            tableCellProperties153.Append(gridSpan153);
            tableCellProperties153.Append(tableCellBorders153);
            tableCellProperties153.Append(shading323);
            tableCellProperties153.Append(tableCellMargin35);

            Paragraph paragraph204 = new Paragraph();

            ParagraphProperties paragraphProperties204 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId204 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs3 = new Tabs();
            TabStop tabStop51 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop52 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop53 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop54 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop55 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop56 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop57 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop58 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop59 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop60 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop61 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop62 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop63 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop64 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop65 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop66 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop67 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop68 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop69 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop70 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop71 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop72 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop73 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop74 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop75 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs3.Append(tabStop51);
            tabs3.Append(tabStop52);
            tabs3.Append(tabStop53);
            tabs3.Append(tabStop54);
            tabs3.Append(tabStop55);
            tabs3.Append(tabStop56);
            tabs3.Append(tabStop57);
            tabs3.Append(tabStop58);
            tabs3.Append(tabStop59);
            tabs3.Append(tabStop60);
            tabs3.Append(tabStop61);
            tabs3.Append(tabStop62);
            tabs3.Append(tabStop63);
            tabs3.Append(tabStop64);
            tabs3.Append(tabStop65);
            tabs3.Append(tabStop66);
            tabs3.Append(tabStop67);
            tabs3.Append(tabStop68);
            tabs3.Append(tabStop69);
            tabs3.Append(tabStop70);
            tabs3.Append(tabStop71);
            tabs3.Append(tabStop72);
            tabs3.Append(tabStop73);
            tabs3.Append(tabStop74);
            tabs3.Append(tabStop75);
            Indentation indentation30 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties204 = new ParagraphMarkRunProperties();

            paragraphProperties204.Append(paragraphStyleId204);
            paragraphProperties204.Append(tabs3);
            paragraphProperties204.Append(indentation30);
            paragraphProperties204.Append(paragraphMarkRunProperties204);

            Run run213 = new Run();

            RunProperties runProperties213 = new RunProperties();
            FontSize fontSize288 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript288 = new FontSizeComplexScript() { Val = "26" };

            runProperties213.Append(fontSize288);
            runProperties213.Append(fontSizeComplexScript288);
            Text text107 = new Text();
            text107.Text = "По состоянию на 30.06.2015г.:";

            run213.Append(runProperties213);
            run213.Append(text107);

            paragraph204.Append(paragraphProperties204);
            paragraph204.Append(run213);

            Paragraph paragraph205 = new Paragraph();

            ParagraphProperties paragraphProperties205 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId205 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs4 = new Tabs();
            TabStop tabStop76 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop77 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop78 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop79 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop80 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop81 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop82 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop83 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop84 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop85 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop86 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop87 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop88 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop89 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop90 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop91 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop92 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop93 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop94 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop95 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop96 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop97 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop98 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop99 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop100 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs4.Append(tabStop76);
            tabs4.Append(tabStop77);
            tabs4.Append(tabStop78);
            tabs4.Append(tabStop79);
            tabs4.Append(tabStop80);
            tabs4.Append(tabStop81);
            tabs4.Append(tabStop82);
            tabs4.Append(tabStop83);
            tabs4.Append(tabStop84);
            tabs4.Append(tabStop85);
            tabs4.Append(tabStop86);
            tabs4.Append(tabStop87);
            tabs4.Append(tabStop88);
            tabs4.Append(tabStop89);
            tabs4.Append(tabStop90);
            tabs4.Append(tabStop91);
            tabs4.Append(tabStop92);
            tabs4.Append(tabStop93);
            tabs4.Append(tabStop94);
            tabs4.Append(tabStop95);
            tabs4.Append(tabStop96);
            tabs4.Append(tabStop97);
            tabs4.Append(tabStop98);
            tabs4.Append(tabStop99);
            tabs4.Append(tabStop100);
            Indentation indentation31 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties205 = new ParagraphMarkRunProperties();

            paragraphProperties205.Append(paragraphStyleId205);
            paragraphProperties205.Append(tabs4);
            paragraphProperties205.Append(indentation31);
            paragraphProperties205.Append(paragraphMarkRunProperties205);

            Run run214 = new Run();

            RunProperties runProperties214 = new RunProperties();
            FontSize fontSize289 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript289 = new FontSizeComplexScript() { Val = "26" };

            runProperties214.Append(fontSize289);
            runProperties214.Append(fontSizeComplexScript289);
            Text text108 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text108.Text = "- суммарная первоначальная балансовая стоимость основных производственных фондов (активов) объекта ";

            run214.Append(runProperties214);
            run214.Append(text108);

            paragraph205.Append(paragraphProperties205);
            paragraph205.Append(run214);

            Paragraph paragraph206 = new Paragraph();

            ParagraphProperties paragraphProperties206 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId206 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs5 = new Tabs();
            TabStop tabStop101 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop102 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop103 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop104 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop105 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop106 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop107 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop108 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop109 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop110 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop111 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop112 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop113 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop114 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop115 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop116 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop117 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop118 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop119 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop120 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop121 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop122 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop123 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop124 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop125 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs5.Append(tabStop101);
            tabs5.Append(tabStop102);
            tabs5.Append(tabStop103);
            tabs5.Append(tabStop104);
            tabs5.Append(tabStop105);
            tabs5.Append(tabStop106);
            tabs5.Append(tabStop107);
            tabs5.Append(tabStop108);
            tabs5.Append(tabStop109);
            tabs5.Append(tabStop110);
            tabs5.Append(tabStop111);
            tabs5.Append(tabStop112);
            tabs5.Append(tabStop113);
            tabs5.Append(tabStop114);
            tabs5.Append(tabStop115);
            tabs5.Append(tabStop116);
            tabs5.Append(tabStop117);
            tabs5.Append(tabStop118);
            tabs5.Append(tabStop119);
            tabs5.Append(tabStop120);
            tabs5.Append(tabStop121);
            tabs5.Append(tabStop122);
            tabs5.Append(tabStop123);
            tabs5.Append(tabStop124);
            tabs5.Append(tabStop125);
            Indentation indentation32 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties206 = new ParagraphMarkRunProperties();

            paragraphProperties206.Append(paragraphStyleId206);
            paragraphProperties206.Append(tabs5);
            paragraphProperties206.Append(indentation32);
            paragraphProperties206.Append(paragraphMarkRunProperties206);

            Run run215 = new Run();

            RunProperties runProperties215 = new RunProperties();
            FontSize fontSize290 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript290 = new FontSizeComplexScript() { Val = "26" };

            runProperties215.Append(fontSize290);
            runProperties215.Append(fontSizeComplexScript290);
            Text text109 = new Text();
            text109.Text = "составляет 1785704,71 тыс. руб.;";

            run215.Append(runProperties215);
            run215.Append(text109);

            paragraph206.Append(paragraphProperties206);
            paragraph206.Append(run215);

            Paragraph paragraph207 = new Paragraph();

            ParagraphProperties paragraphProperties207 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId207 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs6 = new Tabs();
            TabStop tabStop126 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop127 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop128 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop129 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop130 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop131 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop132 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop133 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop134 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop135 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop136 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop137 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop138 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop139 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop140 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop141 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop142 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop143 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop144 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop145 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop146 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop147 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop148 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop149 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop150 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs6.Append(tabStop126);
            tabs6.Append(tabStop127);
            tabs6.Append(tabStop128);
            tabs6.Append(tabStop129);
            tabs6.Append(tabStop130);
            tabs6.Append(tabStop131);
            tabs6.Append(tabStop132);
            tabs6.Append(tabStop133);
            tabs6.Append(tabStop134);
            tabs6.Append(tabStop135);
            tabs6.Append(tabStop136);
            tabs6.Append(tabStop137);
            tabs6.Append(tabStop138);
            tabs6.Append(tabStop139);
            tabs6.Append(tabStop140);
            tabs6.Append(tabStop141);
            tabs6.Append(tabStop142);
            tabs6.Append(tabStop143);
            tabs6.Append(tabStop144);
            tabs6.Append(tabStop145);
            tabs6.Append(tabStop146);
            tabs6.Append(tabStop147);
            tabs6.Append(tabStop148);
            tabs6.Append(tabStop149);
            tabs6.Append(tabStop150);
            Indentation indentation33 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties207 = new ParagraphMarkRunProperties();

            paragraphProperties207.Append(paragraphStyleId207);
            paragraphProperties207.Append(tabs6);
            paragraphProperties207.Append(indentation33);
            paragraphProperties207.Append(paragraphMarkRunProperties207);

            Run run216 = new Run();

            RunProperties runProperties216 = new RunProperties();
            FontSize fontSize291 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript291 = new FontSizeComplexScript() { Val = "26" };

            runProperties216.Append(fontSize291);
            runProperties216.Append(fontSizeComplexScript291);
            Text text110 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text110.Text = "- суммарная остаточная стоимость основных производственных фондов (активов) объекта ";

            run216.Append(runProperties216);
            run216.Append(text110);

            paragraph207.Append(paragraphProperties207);
            paragraph207.Append(run216);

            Paragraph paragraph208 = new Paragraph();

            ParagraphProperties paragraphProperties208 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId208 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs7 = new Tabs();
            TabStop tabStop151 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop152 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop153 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop154 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop155 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop156 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop157 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop158 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop159 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop160 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop161 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop162 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop163 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop164 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop165 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop166 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop167 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop168 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop169 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop170 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop171 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop172 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop173 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop174 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop175 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs7.Append(tabStop151);
            tabs7.Append(tabStop152);
            tabs7.Append(tabStop153);
            tabs7.Append(tabStop154);
            tabs7.Append(tabStop155);
            tabs7.Append(tabStop156);
            tabs7.Append(tabStop157);
            tabs7.Append(tabStop158);
            tabs7.Append(tabStop159);
            tabs7.Append(tabStop160);
            tabs7.Append(tabStop161);
            tabs7.Append(tabStop162);
            tabs7.Append(tabStop163);
            tabs7.Append(tabStop164);
            tabs7.Append(tabStop165);
            tabs7.Append(tabStop166);
            tabs7.Append(tabStop167);
            tabs7.Append(tabStop168);
            tabs7.Append(tabStop169);
            tabs7.Append(tabStop170);
            tabs7.Append(tabStop171);
            tabs7.Append(tabStop172);
            tabs7.Append(tabStop173);
            tabs7.Append(tabStop174);
            tabs7.Append(tabStop175);
            Indentation indentation34 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties208 = new ParagraphMarkRunProperties();

            paragraphProperties208.Append(paragraphStyleId208);
            paragraphProperties208.Append(tabs7);
            paragraphProperties208.Append(indentation34);
            paragraphProperties208.Append(paragraphMarkRunProperties208);

            Run run217 = new Run();

            RunProperties runProperties217 = new RunProperties();
            FontSize fontSize292 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript292 = new FontSizeComplexScript() { Val = "26" };

            runProperties217.Append(fontSize292);
            runProperties217.Append(fontSizeComplexScript292);
            Text text111 = new Text();
            text111.Text = "составляет 1196380,68 тыс. руб., в том числе:";

            run217.Append(runProperties217);
            run217.Append(text111);

            paragraph208.Append(paragraphProperties208);
            paragraph208.Append(run217);

            tableCell153.Append(tableCellProperties153);
            tableCell153.Append(paragraph204);
            tableCell153.Append(paragraph205);
            tableCell153.Append(paragraph206);
            tableCell153.Append(paragraph207);
            tableCell153.Append(paragraph208);

            tableRow70.Append(tableRowProperties70);
            tableRow70.Append(tableCell153);

            TableRow tableRow71 = new TableRow();
            TableRowProperties tableRowProperties71 = new TableRowProperties();

            TableCell tableCell154 = new TableCell();

            TableCellProperties tableCellProperties154 = new TableCellProperties();
            TableCellWidth tableCellWidth154 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan154 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders154 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders154.Append(topBorder42);
            Shading shading324 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties154.Append(tableCellWidth154);
            tableCellProperties154.Append(gridSpan154);
            tableCellProperties154.Append(tableCellBorders154);
            tableCellProperties154.Append(shading324);

            Paragraph paragraph209 = new Paragraph();

            ParagraphProperties paragraphProperties209 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId209 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs8 = new Tabs();
            TabStop tabStop176 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop177 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop178 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop179 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop180 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop181 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop182 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop183 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop184 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop185 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop186 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop187 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop188 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop189 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop190 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop191 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop192 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop193 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop194 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop195 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop196 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop197 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop198 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop199 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop200 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs8.Append(tabStop176);
            tabs8.Append(tabStop177);
            tabs8.Append(tabStop178);
            tabs8.Append(tabStop179);
            tabs8.Append(tabStop180);
            tabs8.Append(tabStop181);
            tabs8.Append(tabStop182);
            tabs8.Append(tabStop183);
            tabs8.Append(tabStop184);
            tabs8.Append(tabStop185);
            tabs8.Append(tabStop186);
            tabs8.Append(tabStop187);
            tabs8.Append(tabStop188);
            tabs8.Append(tabStop189);
            tabs8.Append(tabStop190);
            tabs8.Append(tabStop191);
            tabs8.Append(tabStop192);
            tabs8.Append(tabStop193);
            tabs8.Append(tabStop194);
            tabs8.Append(tabStop195);
            tabs8.Append(tabStop196);
            tabs8.Append(tabStop197);
            tabs8.Append(tabStop198);
            tabs8.Append(tabStop199);
            tabs8.Append(tabStop200);
            Justification justification116 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties209 = new ParagraphMarkRunProperties();
            FontSize fontSize293 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript293 = new FontSizeComplexScript() { Val = "26" };
            Shading shading325 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties209.Append(fontSize293);
            paragraphMarkRunProperties209.Append(fontSizeComplexScript293);
            paragraphMarkRunProperties209.Append(shading325);

            paragraphProperties209.Append(paragraphStyleId209);
            paragraphProperties209.Append(tabs8);
            paragraphProperties209.Append(justification116);
            paragraphProperties209.Append(paragraphMarkRunProperties209);

            Run run218 = new Run();

            RunProperties runProperties218 = new RunProperties();
            FontSize fontSize294 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript294 = new FontSizeComplexScript() { Val = "26" };
            Shading shading326 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties218.Append(fontSize294);
            runProperties218.Append(fontSizeComplexScript294);
            runProperties218.Append(shading326);

            run218.Append(runProperties218);

            paragraph209.Append(paragraphProperties209);
            paragraph209.Append(run218);

            tableCell154.Append(tableCellProperties154);
            tableCell154.Append(paragraph209);

            tableRow71.Append(tableRowProperties71);
            tableRow71.Append(tableCell154);

            TableRow tableRow72 = new TableRow();
            TableRowProperties tableRowProperties72 = new TableRowProperties();

            TableCell tableCell155 = new TableCell();

            TableCellProperties tableCellProperties155 = new TableCellProperties();
            TableCellWidth tableCellWidth155 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan155 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders155 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder36 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder36 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder36 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders155.Append(topBorder43);
            tableCellBorders155.Append(startBorder36);
            tableCellBorders155.Append(endBorder36);
            tableCellBorders155.Append(insideVerticalBorder36);
            Shading shading327 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin36 = new TableCellMargin();
            StartMargin startMargin37 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin36.Append(startMargin37);

            tableCellProperties155.Append(tableCellWidth155);
            tableCellProperties155.Append(gridSpan155);
            tableCellProperties155.Append(tableCellBorders155);
            tableCellProperties155.Append(shading327);
            tableCellProperties155.Append(tableCellMargin36);

            Paragraph paragraph210 = new Paragraph();

            ParagraphProperties paragraphProperties210 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId210 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs9 = new Tabs();
            TabStop tabStop201 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop202 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop203 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop204 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop205 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop206 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop207 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop208 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop209 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop210 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop211 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop212 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop213 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop214 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop215 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop216 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop217 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop218 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop219 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop220 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop221 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop222 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop223 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop224 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop225 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs9.Append(tabStop201);
            tabs9.Append(tabStop202);
            tabs9.Append(tabStop203);
            tabs9.Append(tabStop204);
            tabs9.Append(tabStop205);
            tabs9.Append(tabStop206);
            tabs9.Append(tabStop207);
            tabs9.Append(tabStop208);
            tabs9.Append(tabStop209);
            tabs9.Append(tabStop210);
            tabs9.Append(tabStop211);
            tabs9.Append(tabStop212);
            tabs9.Append(tabStop213);
            tabs9.Append(tabStop214);
            tabs9.Append(tabStop215);
            tabs9.Append(tabStop216);
            tabs9.Append(tabStop217);
            tabs9.Append(tabStop218);
            tabs9.Append(tabStop219);
            tabs9.Append(tabStop220);
            tabs9.Append(tabStop221);
            tabs9.Append(tabStop222);
            tabs9.Append(tabStop223);
            tabs9.Append(tabStop224);
            tabs9.Append(tabStop225);
            Justification justification117 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties210 = new ParagraphMarkRunProperties();

            paragraphProperties210.Append(paragraphStyleId210);
            paragraphProperties210.Append(tabs9);
            paragraphProperties210.Append(justification117);
            paragraphProperties210.Append(paragraphMarkRunProperties210);

            Run run219 = new Run();

            RunProperties runProperties219 = new RunProperties();
            FontSize fontSize295 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript295 = new FontSizeComplexScript() { Val = "26" };

            runProperties219.Append(fontSize295);
            runProperties219.Append(fontSizeComplexScript295);
            Text text112 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text112.Text = "№ ";

            run219.Append(runProperties219);
            run219.Append(text112);

            Run run220 = new Run();

            RunProperties runProperties220 = new RunProperties();
            FontSize fontSize296 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript296 = new FontSizeComplexScript() { Val = "26" };

            runProperties220.Append(fontSize296);
            runProperties220.Append(fontSizeComplexScript296);
            Text text113 = new Text();
            text113.Text = "п/п";

            run220.Append(runProperties220);
            run220.Append(text113);

            paragraph210.Append(paragraphProperties210);
            paragraph210.Append(run219);
            paragraph210.Append(run220);

            tableCell155.Append(tableCellProperties155);
            tableCell155.Append(paragraph210);

            TableCell tableCell156 = new TableCell();

            TableCellProperties tableCellProperties156 = new TableCellProperties();
            TableCellWidth tableCellWidth156 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan156 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders156 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder37 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder37 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder37 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders156.Append(topBorder44);
            tableCellBorders156.Append(startBorder37);
            tableCellBorders156.Append(endBorder37);
            tableCellBorders156.Append(insideVerticalBorder37);
            Shading shading328 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin37 = new TableCellMargin();
            StartMargin startMargin38 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin37.Append(startMargin38);

            tableCellProperties156.Append(tableCellWidth156);
            tableCellProperties156.Append(gridSpan156);
            tableCellProperties156.Append(tableCellBorders156);
            tableCellProperties156.Append(shading328);
            tableCellProperties156.Append(tableCellMargin37);

            Paragraph paragraph211 = new Paragraph();

            ParagraphProperties paragraphProperties211 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId211 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs10 = new Tabs();
            TabStop tabStop226 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop227 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop228 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop229 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop230 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop231 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop232 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop233 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop234 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop235 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop236 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop237 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop238 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop239 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop240 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop241 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop242 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop243 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop244 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop245 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop246 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop247 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop248 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop249 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop250 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs10.Append(tabStop226);
            tabs10.Append(tabStop227);
            tabs10.Append(tabStop228);
            tabs10.Append(tabStop229);
            tabs10.Append(tabStop230);
            tabs10.Append(tabStop231);
            tabs10.Append(tabStop232);
            tabs10.Append(tabStop233);
            tabs10.Append(tabStop234);
            tabs10.Append(tabStop235);
            tabs10.Append(tabStop236);
            tabs10.Append(tabStop237);
            tabs10.Append(tabStop238);
            tabs10.Append(tabStop239);
            tabs10.Append(tabStop240);
            tabs10.Append(tabStop241);
            tabs10.Append(tabStop242);
            tabs10.Append(tabStop243);
            tabs10.Append(tabStop244);
            tabs10.Append(tabStop245);
            tabs10.Append(tabStop246);
            tabs10.Append(tabStop247);
            tabs10.Append(tabStop248);
            tabs10.Append(tabStop249);
            tabs10.Append(tabStop250);
            Justification justification118 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties211 = new ParagraphMarkRunProperties();

            paragraphProperties211.Append(paragraphStyleId211);
            paragraphProperties211.Append(tabs10);
            paragraphProperties211.Append(justification118);
            paragraphProperties211.Append(paragraphMarkRunProperties211);

            Run run221 = new Run();

            RunProperties runProperties221 = new RunProperties();
            FontSize fontSize297 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript297 = new FontSizeComplexScript() { Val = "26" };

            runProperties221.Append(fontSize297);
            runProperties221.Append(fontSizeComplexScript297);
            Text text114 = new Text();
            text114.Text = "Наименование критического элемента";

            run221.Append(runProperties221);
            run221.Append(text114);

            paragraph211.Append(paragraphProperties211);
            paragraph211.Append(run221);

            tableCell156.Append(tableCellProperties156);
            tableCell156.Append(paragraph211);

            TableCell tableCell157 = new TableCell();

            TableCellProperties tableCellProperties157 = new TableCellProperties();
            TableCellWidth tableCellWidth157 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan157 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders157 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder38 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder38 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder38 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders157.Append(topBorder45);
            tableCellBorders157.Append(startBorder38);
            tableCellBorders157.Append(endBorder38);
            tableCellBorders157.Append(insideVerticalBorder38);
            Shading shading329 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin38 = new TableCellMargin();
            StartMargin startMargin39 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin38.Append(startMargin39);

            tableCellProperties157.Append(tableCellWidth157);
            tableCellProperties157.Append(gridSpan157);
            tableCellProperties157.Append(tableCellBorders157);
            tableCellProperties157.Append(shading329);
            tableCellProperties157.Append(tableCellMargin38);

            Paragraph paragraph212 = new Paragraph();

            ParagraphProperties paragraphProperties212 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId212 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs11 = new Tabs();
            TabStop tabStop251 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop252 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop253 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop254 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop255 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop256 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop257 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop258 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop259 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop260 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop261 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop262 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop263 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop264 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop265 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop266 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop267 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop268 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop269 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop270 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop271 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop272 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop273 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop274 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop275 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs11.Append(tabStop251);
            tabs11.Append(tabStop252);
            tabs11.Append(tabStop253);
            tabs11.Append(tabStop254);
            tabs11.Append(tabStop255);
            tabs11.Append(tabStop256);
            tabs11.Append(tabStop257);
            tabs11.Append(tabStop258);
            tabs11.Append(tabStop259);
            tabs11.Append(tabStop260);
            tabs11.Append(tabStop261);
            tabs11.Append(tabStop262);
            tabs11.Append(tabStop263);
            tabs11.Append(tabStop264);
            tabs11.Append(tabStop265);
            tabs11.Append(tabStop266);
            tabs11.Append(tabStop267);
            tabs11.Append(tabStop268);
            tabs11.Append(tabStop269);
            tabs11.Append(tabStop270);
            tabs11.Append(tabStop271);
            tabs11.Append(tabStop272);
            tabs11.Append(tabStop273);
            tabs11.Append(tabStop274);
            tabs11.Append(tabStop275);
            Justification justification119 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties212 = new ParagraphMarkRunProperties();

            paragraphProperties212.Append(paragraphStyleId212);
            paragraphProperties212.Append(tabs11);
            paragraphProperties212.Append(justification119);
            paragraphProperties212.Append(paragraphMarkRunProperties212);

            Run run222 = new Run();

            RunProperties runProperties222 = new RunProperties();
            FontSize fontSize298 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript298 = new FontSizeComplexScript() { Val = "26" };

            runProperties222.Append(fontSize298);
            runProperties222.Append(fontSizeComplexScript298);
            Text text115 = new Text();
            text115.Text = "Первоначальная стоимость (тыс. рублей)";

            run222.Append(runProperties222);
            run222.Append(text115);

            paragraph212.Append(paragraphProperties212);
            paragraph212.Append(run222);

            tableCell157.Append(tableCellProperties157);
            tableCell157.Append(paragraph212);

            TableCell tableCell158 = new TableCell();

            TableCellProperties tableCellProperties158 = new TableCellProperties();
            TableCellWidth tableCellWidth158 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan158 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders158 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder39 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder39 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder39 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders158.Append(topBorder46);
            tableCellBorders158.Append(startBorder39);
            tableCellBorders158.Append(endBorder39);
            tableCellBorders158.Append(insideVerticalBorder39);
            Shading shading330 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin39 = new TableCellMargin();
            StartMargin startMargin40 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin39.Append(startMargin40);

            tableCellProperties158.Append(tableCellWidth158);
            tableCellProperties158.Append(gridSpan158);
            tableCellProperties158.Append(tableCellBorders158);
            tableCellProperties158.Append(shading330);
            tableCellProperties158.Append(tableCellMargin39);

            Paragraph paragraph213 = new Paragraph();

            ParagraphProperties paragraphProperties213 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId213 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs12 = new Tabs();
            TabStop tabStop276 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop277 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop278 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop279 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop280 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop281 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop282 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop283 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop284 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop285 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop286 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop287 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop288 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop289 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop290 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop291 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop292 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop293 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop294 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop295 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop296 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop297 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop298 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop299 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop300 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs12.Append(tabStop276);
            tabs12.Append(tabStop277);
            tabs12.Append(tabStop278);
            tabs12.Append(tabStop279);
            tabs12.Append(tabStop280);
            tabs12.Append(tabStop281);
            tabs12.Append(tabStop282);
            tabs12.Append(tabStop283);
            tabs12.Append(tabStop284);
            tabs12.Append(tabStop285);
            tabs12.Append(tabStop286);
            tabs12.Append(tabStop287);
            tabs12.Append(tabStop288);
            tabs12.Append(tabStop289);
            tabs12.Append(tabStop290);
            tabs12.Append(tabStop291);
            tabs12.Append(tabStop292);
            tabs12.Append(tabStop293);
            tabs12.Append(tabStop294);
            tabs12.Append(tabStop295);
            tabs12.Append(tabStop296);
            tabs12.Append(tabStop297);
            tabs12.Append(tabStop298);
            tabs12.Append(tabStop299);
            tabs12.Append(tabStop300);
            Justification justification120 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties213 = new ParagraphMarkRunProperties();

            paragraphProperties213.Append(paragraphStyleId213);
            paragraphProperties213.Append(tabs12);
            paragraphProperties213.Append(justification120);
            paragraphProperties213.Append(paragraphMarkRunProperties213);

            Run run223 = new Run();

            RunProperties runProperties223 = new RunProperties();
            FontSize fontSize299 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript299 = new FontSizeComplexScript() { Val = "26" };

            runProperties223.Append(fontSize299);
            runProperties223.Append(fontSizeComplexScript299);
            Text text116 = new Text();
            text116.Text = "Остаточная стоимость (тыс. рублей)";

            run223.Append(runProperties223);
            run223.Append(text116);

            paragraph213.Append(paragraphProperties213);
            paragraph213.Append(run223);

            tableCell158.Append(tableCellProperties158);
            tableCell158.Append(paragraph213);

            tableRow72.Append(tableRowProperties72);
            tableRow72.Append(tableCell155);
            tableRow72.Append(tableCell156);
            tableRow72.Append(tableCell157);
            tableRow72.Append(tableCell158);

            TableRow tableRow73 = new TableRow();
            TableRowProperties tableRowProperties73 = new TableRowProperties();

            TableCell tableCell159 = new TableCell();

            TableCellProperties tableCellProperties159 = new TableCellProperties();
            TableCellWidth tableCellWidth159 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan159 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders159 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder40 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder40 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder40 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders159.Append(topBorder47);
            tableCellBorders159.Append(startBorder40);
            tableCellBorders159.Append(endBorder40);
            tableCellBorders159.Append(insideVerticalBorder40);
            Shading shading331 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin40 = new TableCellMargin();
            StartMargin startMargin41 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin40.Append(startMargin41);

            tableCellProperties159.Append(tableCellWidth159);
            tableCellProperties159.Append(gridSpan159);
            tableCellProperties159.Append(tableCellBorders159);
            tableCellProperties159.Append(shading331);
            tableCellProperties159.Append(tableCellMargin40);

            Paragraph paragraph214 = new Paragraph();

            ParagraphProperties paragraphProperties214 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId214 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs13 = new Tabs();
            TabStop tabStop301 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop302 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop303 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop304 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop305 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop306 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop307 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop308 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop309 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop310 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop311 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop312 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop313 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop314 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop315 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop316 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop317 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop318 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop319 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop320 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop321 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop322 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop323 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop324 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop325 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs13.Append(tabStop301);
            tabs13.Append(tabStop302);
            tabs13.Append(tabStop303);
            tabs13.Append(tabStop304);
            tabs13.Append(tabStop305);
            tabs13.Append(tabStop306);
            tabs13.Append(tabStop307);
            tabs13.Append(tabStop308);
            tabs13.Append(tabStop309);
            tabs13.Append(tabStop310);
            tabs13.Append(tabStop311);
            tabs13.Append(tabStop312);
            tabs13.Append(tabStop313);
            tabs13.Append(tabStop314);
            tabs13.Append(tabStop315);
            tabs13.Append(tabStop316);
            tabs13.Append(tabStop317);
            tabs13.Append(tabStop318);
            tabs13.Append(tabStop319);
            tabs13.Append(tabStop320);
            tabs13.Append(tabStop321);
            tabs13.Append(tabStop322);
            tabs13.Append(tabStop323);
            tabs13.Append(tabStop324);
            tabs13.Append(tabStop325);
            Justification justification121 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties214 = new ParagraphMarkRunProperties();

            paragraphProperties214.Append(paragraphStyleId214);
            paragraphProperties214.Append(tabs13);
            paragraphProperties214.Append(justification121);
            paragraphProperties214.Append(paragraphMarkRunProperties214);

            Run run224 = new Run();

            RunProperties runProperties224 = new RunProperties();
            FontSize fontSize300 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript300 = new FontSizeComplexScript() { Val = "26" };

            runProperties224.Append(fontSize300);
            runProperties224.Append(fontSizeComplexScript300);
            Text text117 = new Text();
            text117.Text = "1.";

            run224.Append(runProperties224);
            run224.Append(text117);

            paragraph214.Append(paragraphProperties214);
            paragraph214.Append(run224);

            tableCell159.Append(tableCellProperties159);
            tableCell159.Append(paragraph214);

            TableCell tableCell160 = new TableCell();

            TableCellProperties tableCellProperties160 = new TableCellProperties();
            TableCellWidth tableCellWidth160 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan160 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders160 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder41 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder41 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder41 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders160.Append(topBorder48);
            tableCellBorders160.Append(startBorder41);
            tableCellBorders160.Append(endBorder41);
            tableCellBorders160.Append(insideVerticalBorder41);
            Shading shading332 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin41 = new TableCellMargin();
            StartMargin startMargin42 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin41.Append(startMargin42);

            tableCellProperties160.Append(tableCellWidth160);
            tableCellProperties160.Append(gridSpan160);
            tableCellProperties160.Append(tableCellBorders160);
            tableCellProperties160.Append(shading332);
            tableCellProperties160.Append(tableCellMargin41);

            Paragraph paragraph215 = new Paragraph();

            ParagraphProperties paragraphProperties215 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId215 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification122 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties215 = new ParagraphMarkRunProperties();

            paragraphProperties215.Append(paragraphStyleId215);
            paragraphProperties215.Append(justification122);
            paragraphProperties215.Append(paragraphMarkRunProperties215);

            Run run225 = new Run();

            RunProperties runProperties225 = new RunProperties();
            RunStyle runStyle4 = new RunStyle() { Val = "FontStyle48" };

            runProperties225.Append(runStyle4);
            Text text118 = new Text();
            text118.Text = "Котельный зал";

            run225.Append(runProperties225);
            run225.Append(text118);

            paragraph215.Append(paragraphProperties215);
            paragraph215.Append(run225);

            tableCell160.Append(tableCellProperties160);
            tableCell160.Append(paragraph215);

            TableCell tableCell161 = new TableCell();

            TableCellProperties tableCellProperties161 = new TableCellProperties();
            TableCellWidth tableCellWidth161 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan161 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders161 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder42 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder42 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder42 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders161.Append(topBorder49);
            tableCellBorders161.Append(startBorder42);
            tableCellBorders161.Append(endBorder42);
            tableCellBorders161.Append(insideVerticalBorder42);
            Shading shading333 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin42 = new TableCellMargin();
            StartMargin startMargin43 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin42.Append(startMargin43);
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties161.Append(tableCellWidth161);
            tableCellProperties161.Append(gridSpan161);
            tableCellProperties161.Append(tableCellBorders161);
            tableCellProperties161.Append(shading333);
            tableCellProperties161.Append(tableCellMargin42);
            tableCellProperties161.Append(tableCellVerticalAlignment13);

            Paragraph paragraph216 = new Paragraph();

            ParagraphProperties paragraphProperties216 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId216 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification123 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties216 = new ParagraphMarkRunProperties();

            paragraphProperties216.Append(paragraphStyleId216);
            paragraphProperties216.Append(justification123);
            paragraphProperties216.Append(paragraphMarkRunProperties216);

            Run run226 = new Run();

            RunProperties runProperties226 = new RunProperties();
            FontSize fontSize301 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript301 = new FontSizeComplexScript() { Val = "26" };

            runProperties226.Append(fontSize301);
            runProperties226.Append(fontSizeComplexScript301);
            Text text119 = new Text();
            text119.Text = "232501,14";

            run226.Append(runProperties226);
            run226.Append(text119);

            paragraph216.Append(paragraphProperties216);
            paragraph216.Append(run226);

            tableCell161.Append(tableCellProperties161);
            tableCell161.Append(paragraph216);

            TableCell tableCell162 = new TableCell();

            TableCellProperties tableCellProperties162 = new TableCellProperties();
            TableCellWidth tableCellWidth162 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan162 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders162 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder43 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder43 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder43 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders162.Append(topBorder50);
            tableCellBorders162.Append(startBorder43);
            tableCellBorders162.Append(endBorder43);
            tableCellBorders162.Append(insideVerticalBorder43);
            Shading shading334 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin43 = new TableCellMargin();
            StartMargin startMargin44 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin43.Append(startMargin44);
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties162.Append(tableCellWidth162);
            tableCellProperties162.Append(gridSpan162);
            tableCellProperties162.Append(tableCellBorders162);
            tableCellProperties162.Append(shading334);
            tableCellProperties162.Append(tableCellMargin43);
            tableCellProperties162.Append(tableCellVerticalAlignment14);

            Paragraph paragraph217 = new Paragraph();

            ParagraphProperties paragraphProperties217 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId217 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification124 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties217 = new ParagraphMarkRunProperties();

            paragraphProperties217.Append(paragraphStyleId217);
            paragraphProperties217.Append(justification124);
            paragraphProperties217.Append(paragraphMarkRunProperties217);

            Run run227 = new Run();

            RunProperties runProperties227 = new RunProperties();
            FontSize fontSize302 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript302 = new FontSizeComplexScript() { Val = "26" };

            runProperties227.Append(fontSize302);
            runProperties227.Append(fontSizeComplexScript302);
            Text text120 = new Text();
            text120.Text = "120325,47";

            run227.Append(runProperties227);
            run227.Append(text120);

            paragraph217.Append(paragraphProperties217);
            paragraph217.Append(run227);

            tableCell162.Append(tableCellProperties162);
            tableCell162.Append(paragraph217);

            tableRow73.Append(tableRowProperties73);
            tableRow73.Append(tableCell159);
            tableRow73.Append(tableCell160);
            tableRow73.Append(tableCell161);
            tableRow73.Append(tableCell162);

            TableRow tableRow74 = new TableRow();
            TableRowProperties tableRowProperties74 = new TableRowProperties();

            TableCell tableCell163 = new TableCell();

            TableCellProperties tableCellProperties163 = new TableCellProperties();
            TableCellWidth tableCellWidth163 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan163 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders163 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder44 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder44 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder44 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders163.Append(topBorder51);
            tableCellBorders163.Append(startBorder44);
            tableCellBorders163.Append(endBorder44);
            tableCellBorders163.Append(insideVerticalBorder44);
            Shading shading335 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin44 = new TableCellMargin();
            StartMargin startMargin45 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin44.Append(startMargin45);

            tableCellProperties163.Append(tableCellWidth163);
            tableCellProperties163.Append(gridSpan163);
            tableCellProperties163.Append(tableCellBorders163);
            tableCellProperties163.Append(shading335);
            tableCellProperties163.Append(tableCellMargin44);

            Paragraph paragraph218 = new Paragraph();

            ParagraphProperties paragraphProperties218 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId218 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs14 = new Tabs();
            TabStop tabStop326 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop327 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop328 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop329 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop330 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop331 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop332 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop333 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop334 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop335 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop336 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop337 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop338 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop339 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop340 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop341 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop342 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop343 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop344 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop345 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop346 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop347 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop348 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop349 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop350 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs14.Append(tabStop326);
            tabs14.Append(tabStop327);
            tabs14.Append(tabStop328);
            tabs14.Append(tabStop329);
            tabs14.Append(tabStop330);
            tabs14.Append(tabStop331);
            tabs14.Append(tabStop332);
            tabs14.Append(tabStop333);
            tabs14.Append(tabStop334);
            tabs14.Append(tabStop335);
            tabs14.Append(tabStop336);
            tabs14.Append(tabStop337);
            tabs14.Append(tabStop338);
            tabs14.Append(tabStop339);
            tabs14.Append(tabStop340);
            tabs14.Append(tabStop341);
            tabs14.Append(tabStop342);
            tabs14.Append(tabStop343);
            tabs14.Append(tabStop344);
            tabs14.Append(tabStop345);
            tabs14.Append(tabStop346);
            tabs14.Append(tabStop347);
            tabs14.Append(tabStop348);
            tabs14.Append(tabStop349);
            tabs14.Append(tabStop350);
            Justification justification125 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties218 = new ParagraphMarkRunProperties();

            paragraphProperties218.Append(paragraphStyleId218);
            paragraphProperties218.Append(tabs14);
            paragraphProperties218.Append(justification125);
            paragraphProperties218.Append(paragraphMarkRunProperties218);

            Run run228 = new Run();

            RunProperties runProperties228 = new RunProperties();
            FontSize fontSize303 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript303 = new FontSizeComplexScript() { Val = "26" };

            runProperties228.Append(fontSize303);
            runProperties228.Append(fontSizeComplexScript303);
            Text text121 = new Text();
            text121.Text = "2.";

            run228.Append(runProperties228);
            run228.Append(text121);

            paragraph218.Append(paragraphProperties218);
            paragraph218.Append(run228);

            tableCell163.Append(tableCellProperties163);
            tableCell163.Append(paragraph218);

            TableCell tableCell164 = new TableCell();

            TableCellProperties tableCellProperties164 = new TableCellProperties();
            TableCellWidth tableCellWidth164 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan164 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders164 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder45 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder45 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder45 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders164.Append(topBorder52);
            tableCellBorders164.Append(startBorder45);
            tableCellBorders164.Append(endBorder45);
            tableCellBorders164.Append(insideVerticalBorder45);
            Shading shading336 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin45 = new TableCellMargin();
            StartMargin startMargin46 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin45.Append(startMargin46);

            tableCellProperties164.Append(tableCellWidth164);
            tableCellProperties164.Append(gridSpan164);
            tableCellProperties164.Append(tableCellBorders164);
            tableCellProperties164.Append(shading336);
            tableCellProperties164.Append(tableCellMargin45);

            Paragraph paragraph219 = new Paragraph();

            ParagraphProperties paragraphProperties219 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId219 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification126 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties219 = new ParagraphMarkRunProperties();

            paragraphProperties219.Append(paragraphStyleId219);
            paragraphProperties219.Append(justification126);
            paragraphProperties219.Append(paragraphMarkRunProperties219);

            Run run229 = new Run();

            RunProperties runProperties229 = new RunProperties();
            FontSize fontSize304 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript304 = new FontSizeComplexScript() { Val = "26" };

            runProperties229.Append(fontSize304);
            runProperties229.Append(fontSizeComplexScript304);
            Text text122 = new Text();
            text122.Text = "Газораспределительный пункт";

            run229.Append(runProperties229);
            run229.Append(text122);

            paragraph219.Append(paragraphProperties219);
            paragraph219.Append(run229);

            tableCell164.Append(tableCellProperties164);
            tableCell164.Append(paragraph219);

            TableCell tableCell165 = new TableCell();

            TableCellProperties tableCellProperties165 = new TableCellProperties();
            TableCellWidth tableCellWidth165 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan165 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders165 = new TableCellBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder46 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder46 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder46 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders165.Append(topBorder53);
            tableCellBorders165.Append(startBorder46);
            tableCellBorders165.Append(endBorder46);
            tableCellBorders165.Append(insideVerticalBorder46);
            Shading shading337 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin46 = new TableCellMargin();
            StartMargin startMargin47 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin46.Append(startMargin47);
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties165.Append(tableCellWidth165);
            tableCellProperties165.Append(gridSpan165);
            tableCellProperties165.Append(tableCellBorders165);
            tableCellProperties165.Append(shading337);
            tableCellProperties165.Append(tableCellMargin46);
            tableCellProperties165.Append(tableCellVerticalAlignment15);

            Paragraph paragraph220 = new Paragraph();

            ParagraphProperties paragraphProperties220 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId220 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification127 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties220 = new ParagraphMarkRunProperties();

            paragraphProperties220.Append(paragraphStyleId220);
            paragraphProperties220.Append(justification127);
            paragraphProperties220.Append(paragraphMarkRunProperties220);

            Run run230 = new Run();

            RunProperties runProperties230 = new RunProperties();
            FontSize fontSize305 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript305 = new FontSizeComplexScript() { Val = "26" };

            runProperties230.Append(fontSize305);
            runProperties230.Append(fontSizeComplexScript305);
            Text text123 = new Text();
            text123.Text = "71459,97";

            run230.Append(runProperties230);
            run230.Append(text123);

            paragraph220.Append(paragraphProperties220);
            paragraph220.Append(run230);

            tableCell165.Append(tableCellProperties165);
            tableCell165.Append(paragraph220);

            TableCell tableCell166 = new TableCell();

            TableCellProperties tableCellProperties166 = new TableCellProperties();
            TableCellWidth tableCellWidth166 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan166 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders166 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder47 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder47 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder47 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders166.Append(topBorder54);
            tableCellBorders166.Append(startBorder47);
            tableCellBorders166.Append(endBorder47);
            tableCellBorders166.Append(insideVerticalBorder47);
            Shading shading338 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin47 = new TableCellMargin();
            StartMargin startMargin48 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin47.Append(startMargin48);
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties166.Append(tableCellWidth166);
            tableCellProperties166.Append(gridSpan166);
            tableCellProperties166.Append(tableCellBorders166);
            tableCellProperties166.Append(shading338);
            tableCellProperties166.Append(tableCellMargin47);
            tableCellProperties166.Append(tableCellVerticalAlignment16);

            Paragraph paragraph221 = new Paragraph();

            ParagraphProperties paragraphProperties221 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId221 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification128 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties221 = new ParagraphMarkRunProperties();

            paragraphProperties221.Append(paragraphStyleId221);
            paragraphProperties221.Append(justification128);
            paragraphProperties221.Append(paragraphMarkRunProperties221);

            Run run231 = new Run();

            RunProperties runProperties231 = new RunProperties();
            FontSize fontSize306 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript306 = new FontSizeComplexScript() { Val = "26" };

            runProperties231.Append(fontSize306);
            runProperties231.Append(fontSizeComplexScript306);
            Text text124 = new Text();
            text124.Text = "54250,56";

            run231.Append(runProperties231);
            run231.Append(text124);

            paragraph221.Append(paragraphProperties221);
            paragraph221.Append(run231);

            tableCell166.Append(tableCellProperties166);
            tableCell166.Append(paragraph221);

            tableRow74.Append(tableRowProperties74);
            tableRow74.Append(tableCell163);
            tableRow74.Append(tableCell164);
            tableRow74.Append(tableCell165);
            tableRow74.Append(tableCell166);

            TableRow tableRow75 = new TableRow();
            TableRowProperties tableRowProperties75 = new TableRowProperties();

            TableCell tableCell167 = new TableCell();

            TableCellProperties tableCellProperties167 = new TableCellProperties();
            TableCellWidth tableCellWidth167 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan167 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders167 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder48 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder48 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder48 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders167.Append(topBorder55);
            tableCellBorders167.Append(startBorder48);
            tableCellBorders167.Append(endBorder48);
            tableCellBorders167.Append(insideVerticalBorder48);
            Shading shading339 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin48 = new TableCellMargin();
            StartMargin startMargin49 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin48.Append(startMargin49);

            tableCellProperties167.Append(tableCellWidth167);
            tableCellProperties167.Append(gridSpan167);
            tableCellProperties167.Append(tableCellBorders167);
            tableCellProperties167.Append(shading339);
            tableCellProperties167.Append(tableCellMargin48);

            Paragraph paragraph222 = new Paragraph();

            ParagraphProperties paragraphProperties222 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId222 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs15 = new Tabs();
            TabStop tabStop351 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop352 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop353 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop354 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop355 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop356 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop357 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop358 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop359 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop360 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop361 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop362 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop363 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop364 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop365 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop366 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop367 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop368 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop369 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop370 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop371 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop372 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop373 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop374 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop375 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs15.Append(tabStop351);
            tabs15.Append(tabStop352);
            tabs15.Append(tabStop353);
            tabs15.Append(tabStop354);
            tabs15.Append(tabStop355);
            tabs15.Append(tabStop356);
            tabs15.Append(tabStop357);
            tabs15.Append(tabStop358);
            tabs15.Append(tabStop359);
            tabs15.Append(tabStop360);
            tabs15.Append(tabStop361);
            tabs15.Append(tabStop362);
            tabs15.Append(tabStop363);
            tabs15.Append(tabStop364);
            tabs15.Append(tabStop365);
            tabs15.Append(tabStop366);
            tabs15.Append(tabStop367);
            tabs15.Append(tabStop368);
            tabs15.Append(tabStop369);
            tabs15.Append(tabStop370);
            tabs15.Append(tabStop371);
            tabs15.Append(tabStop372);
            tabs15.Append(tabStop373);
            tabs15.Append(tabStop374);
            tabs15.Append(tabStop375);
            Justification justification129 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties222 = new ParagraphMarkRunProperties();

            paragraphProperties222.Append(paragraphStyleId222);
            paragraphProperties222.Append(tabs15);
            paragraphProperties222.Append(justification129);
            paragraphProperties222.Append(paragraphMarkRunProperties222);

            Run run232 = new Run();

            RunProperties runProperties232 = new RunProperties();
            FontSize fontSize307 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript307 = new FontSizeComplexScript() { Val = "26" };

            runProperties232.Append(fontSize307);
            runProperties232.Append(fontSizeComplexScript307);
            Text text125 = new Text();
            text125.Text = "3.";

            run232.Append(runProperties232);
            run232.Append(text125);

            paragraph222.Append(paragraphProperties222);
            paragraph222.Append(run232);

            tableCell167.Append(tableCellProperties167);
            tableCell167.Append(paragraph222);

            TableCell tableCell168 = new TableCell();

            TableCellProperties tableCellProperties168 = new TableCellProperties();
            TableCellWidth tableCellWidth168 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan168 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders168 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder49 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder49 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder49 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders168.Append(topBorder56);
            tableCellBorders168.Append(startBorder49);
            tableCellBorders168.Append(endBorder49);
            tableCellBorders168.Append(insideVerticalBorder49);
            Shading shading340 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin49 = new TableCellMargin();
            StartMargin startMargin50 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin49.Append(startMargin50);

            tableCellProperties168.Append(tableCellWidth168);
            tableCellProperties168.Append(gridSpan168);
            tableCellProperties168.Append(tableCellBorders168);
            tableCellProperties168.Append(shading340);
            tableCellProperties168.Append(tableCellMargin49);

            Paragraph paragraph223 = new Paragraph();

            ParagraphProperties paragraphProperties223 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId223 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification130 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties223 = new ParagraphMarkRunProperties();

            paragraphProperties223.Append(paragraphStyleId223);
            paragraphProperties223.Append(justification130);
            paragraphProperties223.Append(paragraphMarkRunProperties223);

            Run run233 = new Run();

            RunProperties runProperties233 = new RunProperties();
            FontSize fontSize308 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript308 = new FontSizeComplexScript() { Val = "26" };

            runProperties233.Append(fontSize308);
            runProperties233.Append(fontSizeComplexScript308);
            Text text126 = new Text();
            text126.Text = "Распределительная трансформаторная подстанция 2079";

            run233.Append(runProperties233);
            run233.Append(text126);

            paragraph223.Append(paragraphProperties223);
            paragraph223.Append(run233);

            tableCell168.Append(tableCellProperties168);
            tableCell168.Append(paragraph223);

            TableCell tableCell169 = new TableCell();

            TableCellProperties tableCellProperties169 = new TableCellProperties();
            TableCellWidth tableCellWidth169 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan169 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders169 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder50 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder50 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder50 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders169.Append(topBorder57);
            tableCellBorders169.Append(startBorder50);
            tableCellBorders169.Append(endBorder50);
            tableCellBorders169.Append(insideVerticalBorder50);
            Shading shading341 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin50 = new TableCellMargin();
            StartMargin startMargin51 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin50.Append(startMargin51);
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties169.Append(tableCellWidth169);
            tableCellProperties169.Append(gridSpan169);
            tableCellProperties169.Append(tableCellBorders169);
            tableCellProperties169.Append(shading341);
            tableCellProperties169.Append(tableCellMargin50);
            tableCellProperties169.Append(tableCellVerticalAlignment17);

            Paragraph paragraph224 = new Paragraph();

            ParagraphProperties paragraphProperties224 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId224 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification131 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties224 = new ParagraphMarkRunProperties();

            paragraphProperties224.Append(paragraphStyleId224);
            paragraphProperties224.Append(justification131);
            paragraphProperties224.Append(paragraphMarkRunProperties224);

            Run run234 = new Run();

            RunProperties runProperties234 = new RunProperties();
            FontSize fontSize309 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript309 = new FontSizeComplexScript() { Val = "26" };

            runProperties234.Append(fontSize309);
            runProperties234.Append(fontSizeComplexScript309);
            Text text127 = new Text();
            text127.Text = "70284,3";

            run234.Append(runProperties234);
            run234.Append(text127);

            paragraph224.Append(paragraphProperties224);
            paragraph224.Append(run234);

            tableCell169.Append(tableCellProperties169);
            tableCell169.Append(paragraph224);

            TableCell tableCell170 = new TableCell();

            TableCellProperties tableCellProperties170 = new TableCellProperties();
            TableCellWidth tableCellWidth170 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan170 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders170 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder51 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder51 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder51 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders170.Append(topBorder58);
            tableCellBorders170.Append(startBorder51);
            tableCellBorders170.Append(endBorder51);
            tableCellBorders170.Append(insideVerticalBorder51);
            Shading shading342 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin51 = new TableCellMargin();
            StartMargin startMargin52 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin51.Append(startMargin52);
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties170.Append(tableCellWidth170);
            tableCellProperties170.Append(gridSpan170);
            tableCellProperties170.Append(tableCellBorders170);
            tableCellProperties170.Append(shading342);
            tableCellProperties170.Append(tableCellMargin51);
            tableCellProperties170.Append(tableCellVerticalAlignment18);

            Paragraph paragraph225 = new Paragraph();

            ParagraphProperties paragraphProperties225 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId225 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification132 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties225 = new ParagraphMarkRunProperties();

            paragraphProperties225.Append(paragraphStyleId225);
            paragraphProperties225.Append(justification132);
            paragraphProperties225.Append(paragraphMarkRunProperties225);

            Run run235 = new Run();

            RunProperties runProperties235 = new RunProperties();
            FontSize fontSize310 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript310 = new FontSizeComplexScript() { Val = "26" };

            runProperties235.Append(fontSize310);
            runProperties235.Append(fontSizeComplexScript310);
            Text text128 = new Text();
            text128.Text = "26829,47";

            run235.Append(runProperties235);
            run235.Append(text128);

            paragraph225.Append(paragraphProperties225);
            paragraph225.Append(run235);

            tableCell170.Append(tableCellProperties170);
            tableCell170.Append(paragraph225);

            tableRow75.Append(tableRowProperties75);
            tableRow75.Append(tableCell167);
            tableRow75.Append(tableCell168);
            tableRow75.Append(tableCell169);
            tableRow75.Append(tableCell170);

            TableRow tableRow76 = new TableRow();
            TableRowProperties tableRowProperties76 = new TableRowProperties();

            TableCell tableCell171 = new TableCell();

            TableCellProperties tableCellProperties171 = new TableCellProperties();
            TableCellWidth tableCellWidth171 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan171 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders171 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder52 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder52 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder52 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders171.Append(topBorder59);
            tableCellBorders171.Append(startBorder52);
            tableCellBorders171.Append(endBorder52);
            tableCellBorders171.Append(insideVerticalBorder52);
            Shading shading343 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin52 = new TableCellMargin();
            StartMargin startMargin53 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin52.Append(startMargin53);

            tableCellProperties171.Append(tableCellWidth171);
            tableCellProperties171.Append(gridSpan171);
            tableCellProperties171.Append(tableCellBorders171);
            tableCellProperties171.Append(shading343);
            tableCellProperties171.Append(tableCellMargin52);

            Paragraph paragraph226 = new Paragraph();

            ParagraphProperties paragraphProperties226 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId226 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs16 = new Tabs();
            TabStop tabStop376 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop377 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop378 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop379 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop380 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop381 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop382 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop383 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop384 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop385 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop386 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop387 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop388 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop389 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop390 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop391 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop392 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop393 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop394 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop395 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop396 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop397 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop398 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop399 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop400 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs16.Append(tabStop376);
            tabs16.Append(tabStop377);
            tabs16.Append(tabStop378);
            tabs16.Append(tabStop379);
            tabs16.Append(tabStop380);
            tabs16.Append(tabStop381);
            tabs16.Append(tabStop382);
            tabs16.Append(tabStop383);
            tabs16.Append(tabStop384);
            tabs16.Append(tabStop385);
            tabs16.Append(tabStop386);
            tabs16.Append(tabStop387);
            tabs16.Append(tabStop388);
            tabs16.Append(tabStop389);
            tabs16.Append(tabStop390);
            tabs16.Append(tabStop391);
            tabs16.Append(tabStop392);
            tabs16.Append(tabStop393);
            tabs16.Append(tabStop394);
            tabs16.Append(tabStop395);
            tabs16.Append(tabStop396);
            tabs16.Append(tabStop397);
            tabs16.Append(tabStop398);
            tabs16.Append(tabStop399);
            tabs16.Append(tabStop400);
            Justification justification133 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties226 = new ParagraphMarkRunProperties();

            paragraphProperties226.Append(paragraphStyleId226);
            paragraphProperties226.Append(tabs16);
            paragraphProperties226.Append(justification133);
            paragraphProperties226.Append(paragraphMarkRunProperties226);

            Run run236 = new Run();

            RunProperties runProperties236 = new RunProperties();
            FontSize fontSize311 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript311 = new FontSizeComplexScript() { Val = "26" };

            runProperties236.Append(fontSize311);
            runProperties236.Append(fontSizeComplexScript311);
            Text text129 = new Text();
            text129.Text = "4.";

            run236.Append(runProperties236);
            run236.Append(text129);

            paragraph226.Append(paragraphProperties226);
            paragraph226.Append(run236);

            tableCell171.Append(tableCellProperties171);
            tableCell171.Append(paragraph226);

            TableCell tableCell172 = new TableCell();

            TableCellProperties tableCellProperties172 = new TableCellProperties();
            TableCellWidth tableCellWidth172 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan172 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders172 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder53 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder53 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder53 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders172.Append(topBorder60);
            tableCellBorders172.Append(startBorder53);
            tableCellBorders172.Append(endBorder53);
            tableCellBorders172.Append(insideVerticalBorder53);
            Shading shading344 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin53 = new TableCellMargin();
            StartMargin startMargin54 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin53.Append(startMargin54);

            tableCellProperties172.Append(tableCellWidth172);
            tableCellProperties172.Append(gridSpan172);
            tableCellProperties172.Append(tableCellBorders172);
            tableCellProperties172.Append(shading344);
            tableCellProperties172.Append(tableCellMargin53);

            Paragraph paragraph227 = new Paragraph();

            ParagraphProperties paragraphProperties227 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId227 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification134 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties227 = new ParagraphMarkRunProperties();

            paragraphProperties227.Append(paragraphStyleId227);
            paragraphProperties227.Append(justification134);
            paragraphProperties227.Append(paragraphMarkRunProperties227);

            Run run237 = new Run();

            RunProperties runProperties237 = new RunProperties();
            FontSize fontSize312 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript312 = new FontSizeComplexScript() { Val = "26" };

            runProperties237.Append(fontSize312);
            runProperties237.Append(fontSizeComplexScript312);
            Text text130 = new Text();
            text130.Text = "Центральный пульт управления";

            run237.Append(runProperties237);
            run237.Append(text130);

            paragraph227.Append(paragraphProperties227);
            paragraph227.Append(run237);

            tableCell172.Append(tableCellProperties172);
            tableCell172.Append(paragraph227);

            TableCell tableCell173 = new TableCell();

            TableCellProperties tableCellProperties173 = new TableCellProperties();
            TableCellWidth tableCellWidth173 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan173 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders173 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder54 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder54 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder54 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders173.Append(topBorder61);
            tableCellBorders173.Append(startBorder54);
            tableCellBorders173.Append(endBorder54);
            tableCellBorders173.Append(insideVerticalBorder54);
            Shading shading345 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin54 = new TableCellMargin();
            StartMargin startMargin55 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin54.Append(startMargin55);
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties173.Append(tableCellWidth173);
            tableCellProperties173.Append(gridSpan173);
            tableCellProperties173.Append(tableCellBorders173);
            tableCellProperties173.Append(shading345);
            tableCellProperties173.Append(tableCellMargin54);
            tableCellProperties173.Append(tableCellVerticalAlignment19);

            Paragraph paragraph228 = new Paragraph();

            ParagraphProperties paragraphProperties228 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId228 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification135 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties228 = new ParagraphMarkRunProperties();

            paragraphProperties228.Append(paragraphStyleId228);
            paragraphProperties228.Append(justification135);
            paragraphProperties228.Append(paragraphMarkRunProperties228);

            Run run238 = new Run();

            RunProperties runProperties238 = new RunProperties();
            FontSize fontSize313 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript313 = new FontSizeComplexScript() { Val = "26" };

            runProperties238.Append(fontSize313);
            runProperties238.Append(fontSizeComplexScript313);
            Text text131 = new Text();
            text131.Text = "8850,06";

            run238.Append(runProperties238);
            run238.Append(text131);

            paragraph228.Append(paragraphProperties228);
            paragraph228.Append(run238);

            tableCell173.Append(tableCellProperties173);
            tableCell173.Append(paragraph228);

            TableCell tableCell174 = new TableCell();

            TableCellProperties tableCellProperties174 = new TableCellProperties();
            TableCellWidth tableCellWidth174 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan174 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders174 = new TableCellBorders();
            TopBorder topBorder62 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder55 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder55 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder55 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders174.Append(topBorder62);
            tableCellBorders174.Append(startBorder55);
            tableCellBorders174.Append(endBorder55);
            tableCellBorders174.Append(insideVerticalBorder55);
            Shading shading346 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin55 = new TableCellMargin();
            StartMargin startMargin56 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin55.Append(startMargin56);
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties174.Append(tableCellWidth174);
            tableCellProperties174.Append(gridSpan174);
            tableCellProperties174.Append(tableCellBorders174);
            tableCellProperties174.Append(shading346);
            tableCellProperties174.Append(tableCellMargin55);
            tableCellProperties174.Append(tableCellVerticalAlignment20);

            Paragraph paragraph229 = new Paragraph();

            ParagraphProperties paragraphProperties229 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId229 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification136 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties229 = new ParagraphMarkRunProperties();

            paragraphProperties229.Append(paragraphStyleId229);
            paragraphProperties229.Append(justification136);
            paragraphProperties229.Append(paragraphMarkRunProperties229);

            Run run239 = new Run();

            RunProperties runProperties239 = new RunProperties();
            FontSize fontSize314 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript314 = new FontSizeComplexScript() { Val = "26" };

            runProperties239.Append(fontSize314);
            runProperties239.Append(fontSizeComplexScript314);
            Text text132 = new Text();
            text132.Text = "1397,17";

            run239.Append(runProperties239);
            run239.Append(text132);

            paragraph229.Append(paragraphProperties229);
            paragraph229.Append(run239);

            tableCell174.Append(tableCellProperties174);
            tableCell174.Append(paragraph229);

            tableRow76.Append(tableRowProperties76);
            tableRow76.Append(tableCell171);
            tableRow76.Append(tableCell172);
            tableRow76.Append(tableCell173);
            tableRow76.Append(tableCell174);

            TableRow tableRow77 = new TableRow();
            TableRowProperties tableRowProperties77 = new TableRowProperties();

            TableCell tableCell175 = new TableCell();

            TableCellProperties tableCellProperties175 = new TableCellProperties();
            TableCellWidth tableCellWidth175 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan175 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders175 = new TableCellBorders();
            TopBorder topBorder63 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders175.Append(topBorder63);
            Shading shading347 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties175.Append(tableCellWidth175);
            tableCellProperties175.Append(gridSpan175);
            tableCellProperties175.Append(tableCellBorders175);
            tableCellProperties175.Append(shading347);

            Paragraph paragraph230 = new Paragraph();

            ParagraphProperties paragraphProperties230 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId230 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs17 = new Tabs();
            TabStop tabStop401 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop402 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop403 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop404 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop405 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop406 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop407 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop408 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop409 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop410 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop411 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop412 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop413 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop414 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop415 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop416 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop417 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop418 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop419 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop420 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop421 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop422 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop423 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop424 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop425 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs17.Append(tabStop401);
            tabs17.Append(tabStop402);
            tabs17.Append(tabStop403);
            tabs17.Append(tabStop404);
            tabs17.Append(tabStop405);
            tabs17.Append(tabStop406);
            tabs17.Append(tabStop407);
            tabs17.Append(tabStop408);
            tabs17.Append(tabStop409);
            tabs17.Append(tabStop410);
            tabs17.Append(tabStop411);
            tabs17.Append(tabStop412);
            tabs17.Append(tabStop413);
            tabs17.Append(tabStop414);
            tabs17.Append(tabStop415);
            tabs17.Append(tabStop416);
            tabs17.Append(tabStop417);
            tabs17.Append(tabStop418);
            tabs17.Append(tabStop419);
            tabs17.Append(tabStop420);
            tabs17.Append(tabStop421);
            tabs17.Append(tabStop422);
            tabs17.Append(tabStop423);
            tabs17.Append(tabStop424);
            tabs17.Append(tabStop425);
            Justification justification137 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties230 = new ParagraphMarkRunProperties();
            FontSize fontSize315 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript315 = new FontSizeComplexScript() { Val = "26" };
            Shading shading348 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties230.Append(fontSize315);
            paragraphMarkRunProperties230.Append(fontSizeComplexScript315);
            paragraphMarkRunProperties230.Append(shading348);

            paragraphProperties230.Append(paragraphStyleId230);
            paragraphProperties230.Append(tabs17);
            paragraphProperties230.Append(justification137);
            paragraphProperties230.Append(paragraphMarkRunProperties230);

            Run run240 = new Run();

            RunProperties runProperties240 = new RunProperties();
            FontSize fontSize316 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript316 = new FontSizeComplexScript() { Val = "26" };
            Shading shading349 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties240.Append(fontSize316);
            runProperties240.Append(fontSizeComplexScript316);
            runProperties240.Append(shading349);

            run240.Append(runProperties240);

            paragraph230.Append(paragraphProperties230);
            paragraph230.Append(run240);

            tableCell175.Append(tableCellProperties175);
            tableCell175.Append(paragraph230);

            tableRow77.Append(tableRowProperties77);
            tableRow77.Append(tableCell175);

            TableRow tableRow78 = new TableRow();
            TableRowProperties tableRowProperties78 = new TableRowProperties();

            TableCell tableCell176 = new TableCell();

            TableCellProperties tableCellProperties176 = new TableCellProperties();
            TableCellWidth tableCellWidth176 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan176 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders176 = new TableCellBorders();
            Shading shading350 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties176.Append(tableCellWidth176);
            tableCellProperties176.Append(gridSpan176);
            tableCellProperties176.Append(tableCellBorders176);
            tableCellProperties176.Append(shading350);

            Paragraph paragraph231 = new Paragraph();

            ParagraphProperties paragraphProperties231 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId231 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs18 = new Tabs();
            TabStop tabStop426 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop427 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop428 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop429 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop430 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop431 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop432 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop433 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop434 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop435 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop436 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop437 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop438 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop439 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop440 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop441 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop442 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop443 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop444 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop445 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop446 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop447 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop448 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop449 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop450 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs18.Append(tabStop426);
            tabs18.Append(tabStop427);
            tabs18.Append(tabStop428);
            tabs18.Append(tabStop429);
            tabs18.Append(tabStop430);
            tabs18.Append(tabStop431);
            tabs18.Append(tabStop432);
            tabs18.Append(tabStop433);
            tabs18.Append(tabStop434);
            tabs18.Append(tabStop435);
            tabs18.Append(tabStop436);
            tabs18.Append(tabStop437);
            tabs18.Append(tabStop438);
            tabs18.Append(tabStop439);
            tabs18.Append(tabStop440);
            tabs18.Append(tabStop441);
            tabs18.Append(tabStop442);
            tabs18.Append(tabStop443);
            tabs18.Append(tabStop444);
            tabs18.Append(tabStop445);
            tabs18.Append(tabStop446);
            tabs18.Append(tabStop447);
            tabs18.Append(tabStop448);
            tabs18.Append(tabStop449);
            tabs18.Append(tabStop450);
            ParagraphMarkRunProperties paragraphMarkRunProperties231 = new ParagraphMarkRunProperties();

            paragraphProperties231.Append(paragraphStyleId231);
            paragraphProperties231.Append(tabs18);
            paragraphProperties231.Append(paragraphMarkRunProperties231);

            Run run241 = new Run();

            RunProperties runProperties241 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold19 = new Bold();
            FontSize fontSize317 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript317 = new FontSizeComplexScript() { Val = "26" };

            runProperties241.Append(runFonts5);
            runProperties241.Append(bold19);
            runProperties241.Append(fontSize317);
            runProperties241.Append(fontSizeComplexScript317);
            Text text133 = new Text();
            text133.Text = "1.6. Износ основных производственных фондов:";

            run241.Append(runProperties241);
            run241.Append(text133);

            paragraph231.Append(paragraphProperties231);
            paragraph231.Append(run241);

            tableCell176.Append(tableCellProperties176);
            tableCell176.Append(paragraph231);

            tableRow78.Append(tableRowProperties78);
            tableRow78.Append(tableCell176);

            TableRow tableRow79 = new TableRow();
            TableRowProperties tableRowProperties79 = new TableRowProperties();

            TableCell tableCell177 = new TableCell();

            TableCellProperties tableCellProperties177 = new TableCellProperties();
            TableCellWidth tableCellWidth177 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan177 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders177 = new TableCellBorders();
            TopBorder topBorder64 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder56 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder56 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder38 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder56 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders177.Append(topBorder64);
            tableCellBorders177.Append(startBorder56);
            tableCellBorders177.Append(bottomBorder38);
            tableCellBorders177.Append(endBorder56);
            tableCellBorders177.Append(insideHorizontalBorder38);
            tableCellBorders177.Append(insideVerticalBorder56);
            Shading shading351 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin56 = new TableCellMargin();
            StartMargin startMargin57 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin56.Append(startMargin57);

            tableCellProperties177.Append(tableCellWidth177);
            tableCellProperties177.Append(gridSpan177);
            tableCellProperties177.Append(tableCellBorders177);
            tableCellProperties177.Append(shading351);
            tableCellProperties177.Append(tableCellMargin56);

            Paragraph paragraph232 = new Paragraph();

            ParagraphProperties paragraphProperties232 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId232 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs19 = new Tabs();
            TabStop tabStop451 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop452 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop453 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop454 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop455 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop456 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop457 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop458 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop459 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop460 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop461 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop462 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop463 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop464 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop465 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop466 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop467 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop468 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop469 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop470 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop471 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop472 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop473 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop474 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop475 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs19.Append(tabStop451);
            tabs19.Append(tabStop452);
            tabs19.Append(tabStop453);
            tabs19.Append(tabStop454);
            tabs19.Append(tabStop455);
            tabs19.Append(tabStop456);
            tabs19.Append(tabStop457);
            tabs19.Append(tabStop458);
            tabs19.Append(tabStop459);
            tabs19.Append(tabStop460);
            tabs19.Append(tabStop461);
            tabs19.Append(tabStop462);
            tabs19.Append(tabStop463);
            tabs19.Append(tabStop464);
            tabs19.Append(tabStop465);
            tabs19.Append(tabStop466);
            tabs19.Append(tabStop467);
            tabs19.Append(tabStop468);
            tabs19.Append(tabStop469);
            tabs19.Append(tabStop470);
            tabs19.Append(tabStop471);
            tabs19.Append(tabStop472);
            tabs19.Append(tabStop473);
            tabs19.Append(tabStop474);
            tabs19.Append(tabStop475);
            Indentation indentation35 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties232 = new ParagraphMarkRunProperties();

            paragraphProperties232.Append(paragraphStyleId232);
            paragraphProperties232.Append(tabs19);
            paragraphProperties232.Append(indentation35);
            paragraphProperties232.Append(paragraphMarkRunProperties232);

            Run run242 = new Run();

            RunProperties runProperties242 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize318 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript318 = new FontSizeComplexScript() { Val = "26" };

            runProperties242.Append(runFonts6);
            runProperties242.Append(fontSize318);
            runProperties242.Append(fontSizeComplexScript318);
            Text text134 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text134.Text = "Среднее значение морального и физического износа основного производственного оборудования, зданий и сооружений ";

            run242.Append(runProperties242);
            run242.Append(text134);

            paragraph232.Append(paragraphProperties232);
            paragraph232.Append(run242);

            Paragraph paragraph233 = new Paragraph();

            ParagraphProperties paragraphProperties233 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId233 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs20 = new Tabs();
            TabStop tabStop476 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop477 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop478 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop479 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop480 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop481 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop482 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop483 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop484 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop485 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop486 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop487 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop488 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop489 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop490 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop491 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop492 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop493 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop494 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop495 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop496 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop497 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop498 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop499 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop500 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs20.Append(tabStop476);
            tabs20.Append(tabStop477);
            tabs20.Append(tabStop478);
            tabs20.Append(tabStop479);
            tabs20.Append(tabStop480);
            tabs20.Append(tabStop481);
            tabs20.Append(tabStop482);
            tabs20.Append(tabStop483);
            tabs20.Append(tabStop484);
            tabs20.Append(tabStop485);
            tabs20.Append(tabStop486);
            tabs20.Append(tabStop487);
            tabs20.Append(tabStop488);
            tabs20.Append(tabStop489);
            tabs20.Append(tabStop490);
            tabs20.Append(tabStop491);
            tabs20.Append(tabStop492);
            tabs20.Append(tabStop493);
            tabs20.Append(tabStop494);
            tabs20.Append(tabStop495);
            tabs20.Append(tabStop496);
            tabs20.Append(tabStop497);
            tabs20.Append(tabStop498);
            tabs20.Append(tabStop499);
            tabs20.Append(tabStop500);
            Indentation indentation36 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties233 = new ParagraphMarkRunProperties();

            paragraphProperties233.Append(paragraphStyleId233);
            paragraphProperties233.Append(tabs20);
            paragraphProperties233.Append(indentation36);
            paragraphProperties233.Append(paragraphMarkRunProperties233);

            Run run243 = new Run();

            RunProperties runProperties243 = new RunProperties();
            RunFonts runFonts7 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize319 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript319 = new FontSizeComplexScript() { Val = "26" };

            runProperties243.Append(runFonts7);
            runProperties243.Append(fontSize319);
            runProperties243.Append(fontSizeComplexScript319);
            Text text135 = new Text();
            text135.Text = "составляет 33 процента по состоянию на 30.06.2015";

            run243.Append(runProperties243);
            run243.Append(text135);

            paragraph233.Append(paragraphProperties233);
            paragraph233.Append(run243);

            tableCell177.Append(tableCellProperties177);
            tableCell177.Append(paragraph232);
            tableCell177.Append(paragraph233);

            tableRow79.Append(tableRowProperties79);
            tableRow79.Append(tableCell177);

            TableRow tableRow80 = new TableRow();
            TableRowProperties tableRowProperties80 = new TableRowProperties();

            TableCell tableCell178 = new TableCell();

            TableCellProperties tableCellProperties178 = new TableCellProperties();
            TableCellWidth tableCellWidth178 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan178 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders178 = new TableCellBorders();
            TopBorder topBorder65 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders178.Append(topBorder65);
            Shading shading352 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties178.Append(tableCellWidth178);
            tableCellProperties178.Append(gridSpan178);
            tableCellProperties178.Append(tableCellBorders178);
            tableCellProperties178.Append(shading352);

            Paragraph paragraph234 = new Paragraph();

            ParagraphProperties paragraphProperties234 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId234 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs21 = new Tabs();
            TabStop tabStop501 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop502 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop503 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop504 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop505 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop506 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop507 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop508 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop509 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop510 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop511 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop512 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop513 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop514 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop515 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop516 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop517 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop518 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop519 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop520 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop521 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop522 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop523 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop524 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop525 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs21.Append(tabStop501);
            tabs21.Append(tabStop502);
            tabs21.Append(tabStop503);
            tabs21.Append(tabStop504);
            tabs21.Append(tabStop505);
            tabs21.Append(tabStop506);
            tabs21.Append(tabStop507);
            tabs21.Append(tabStop508);
            tabs21.Append(tabStop509);
            tabs21.Append(tabStop510);
            tabs21.Append(tabStop511);
            tabs21.Append(tabStop512);
            tabs21.Append(tabStop513);
            tabs21.Append(tabStop514);
            tabs21.Append(tabStop515);
            tabs21.Append(tabStop516);
            tabs21.Append(tabStop517);
            tabs21.Append(tabStop518);
            tabs21.Append(tabStop519);
            tabs21.Append(tabStop520);
            tabs21.Append(tabStop521);
            tabs21.Append(tabStop522);
            tabs21.Append(tabStop523);
            tabs21.Append(tabStop524);
            tabs21.Append(tabStop525);
            Justification justification138 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties234 = new ParagraphMarkRunProperties();
            FontSize fontSize320 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript320 = new FontSizeComplexScript() { Val = "26" };
            Shading shading353 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };
            VerticalTextAlignment verticalTextAlignment2 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            paragraphMarkRunProperties234.Append(fontSize320);
            paragraphMarkRunProperties234.Append(fontSizeComplexScript320);
            paragraphMarkRunProperties234.Append(shading353);
            paragraphMarkRunProperties234.Append(verticalTextAlignment2);

            paragraphProperties234.Append(paragraphStyleId234);
            paragraphProperties234.Append(tabs21);
            paragraphProperties234.Append(justification138);
            paragraphProperties234.Append(paragraphMarkRunProperties234);

            Run run244 = new Run();

            RunProperties runProperties244 = new RunProperties();
            FontSize fontSize321 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript321 = new FontSizeComplexScript() { Val = "26" };
            Shading shading354 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };
            VerticalTextAlignment verticalTextAlignment3 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties244.Append(fontSize321);
            runProperties244.Append(fontSizeComplexScript321);
            runProperties244.Append(shading354);
            runProperties244.Append(verticalTextAlignment3);

            run244.Append(runProperties244);

            paragraph234.Append(paragraphProperties234);
            paragraph234.Append(run244);

            tableCell178.Append(tableCellProperties178);
            tableCell178.Append(paragraph234);

            tableRow80.Append(tableRowProperties80);
            tableRow80.Append(tableCell178);

            TableRow tableRow81 = new TableRow();
            TableRowProperties tableRowProperties81 = new TableRowProperties();

            TableCell tableCell179 = new TableCell();

            TableCellProperties tableCellProperties179 = new TableCellProperties();
            TableCellWidth tableCellWidth179 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan179 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders179 = new TableCellBorders();
            Shading shading355 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties179.Append(tableCellWidth179);
            tableCellProperties179.Append(gridSpan179);
            tableCellProperties179.Append(tableCellBorders179);
            tableCellProperties179.Append(shading355);

            Paragraph paragraph235 = new Paragraph();

            ParagraphProperties paragraphProperties235 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId235 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs22 = new Tabs();
            TabStop tabStop526 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop527 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop528 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop529 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop530 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop531 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop532 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop533 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop534 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop535 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop536 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop537 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop538 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop539 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop540 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop541 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop542 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop543 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop544 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop545 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop546 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop547 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop548 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop549 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop550 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs22.Append(tabStop526);
            tabs22.Append(tabStop527);
            tabs22.Append(tabStop528);
            tabs22.Append(tabStop529);
            tabs22.Append(tabStop530);
            tabs22.Append(tabStop531);
            tabs22.Append(tabStop532);
            tabs22.Append(tabStop533);
            tabs22.Append(tabStop534);
            tabs22.Append(tabStop535);
            tabs22.Append(tabStop536);
            tabs22.Append(tabStop537);
            tabs22.Append(tabStop538);
            tabs22.Append(tabStop539);
            tabs22.Append(tabStop540);
            tabs22.Append(tabStop541);
            tabs22.Append(tabStop542);
            tabs22.Append(tabStop543);
            tabs22.Append(tabStop544);
            tabs22.Append(tabStop545);
            tabs22.Append(tabStop546);
            tabs22.Append(tabStop547);
            tabs22.Append(tabStop548);
            tabs22.Append(tabStop549);
            tabs22.Append(tabStop550);
            ParagraphMarkRunProperties paragraphMarkRunProperties235 = new ParagraphMarkRunProperties();

            paragraphProperties235.Append(paragraphStyleId235);
            paragraphProperties235.Append(tabs22);
            paragraphProperties235.Append(paragraphMarkRunProperties235);

            Run run245 = new Run();

            RunProperties runProperties245 = new RunProperties();
            Bold bold20 = new Bold();
            FontSize fontSize322 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript322 = new FontSizeComplexScript() { Val = "26" };

            runProperties245.Append(bold20);
            runProperties245.Append(fontSize322);
            runProperties245.Append(fontSizeComplexScript322);
            Text text136 = new Text();
            text136.Text = "1.7. Наличие на объекте подразделения по защите государственной тайны и соблюдение режима секретности:";

            run245.Append(runProperties245);
            run245.Append(text136);

            paragraph235.Append(paragraphProperties235);
            paragraph235.Append(run245);

            tableCell179.Append(tableCellProperties179);
            tableCell179.Append(paragraph235);

            tableRow81.Append(tableRowProperties81);
            tableRow81.Append(tableCell179);

            TableRow tableRow82 = new TableRow();
            TableRowProperties tableRowProperties82 = new TableRowProperties();

            TableCell tableCell180 = new TableCell();

            TableCellProperties tableCellProperties180 = new TableCellProperties();
            TableCellWidth tableCellWidth180 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan180 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders180 = new TableCellBorders();
            TopBorder topBorder66 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder57 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder57 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder39 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder57 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders180.Append(topBorder66);
            tableCellBorders180.Append(startBorder57);
            tableCellBorders180.Append(bottomBorder39);
            tableCellBorders180.Append(endBorder57);
            tableCellBorders180.Append(insideHorizontalBorder39);
            tableCellBorders180.Append(insideVerticalBorder57);
            Shading shading356 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin57 = new TableCellMargin();
            StartMargin startMargin58 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin57.Append(startMargin58);

            tableCellProperties180.Append(tableCellWidth180);
            tableCellProperties180.Append(gridSpan180);
            tableCellProperties180.Append(tableCellBorders180);
            tableCellProperties180.Append(shading356);
            tableCellProperties180.Append(tableCellMargin57);

            Paragraph paragraph236 = new Paragraph();

            ParagraphProperties paragraphProperties236 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId236 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs23 = new Tabs();
            TabStop tabStop551 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop552 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop553 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop554 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop555 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop556 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop557 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop558 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop559 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop560 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop561 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop562 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop563 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop564 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop565 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop566 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop567 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop568 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop569 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop570 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop571 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop572 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop573 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop574 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop575 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs23.Append(tabStop551);
            tabs23.Append(tabStop552);
            tabs23.Append(tabStop553);
            tabs23.Append(tabStop554);
            tabs23.Append(tabStop555);
            tabs23.Append(tabStop556);
            tabs23.Append(tabStop557);
            tabs23.Append(tabStop558);
            tabs23.Append(tabStop559);
            tabs23.Append(tabStop560);
            tabs23.Append(tabStop561);
            tabs23.Append(tabStop562);
            tabs23.Append(tabStop563);
            tabs23.Append(tabStop564);
            tabs23.Append(tabStop565);
            tabs23.Append(tabStop566);
            tabs23.Append(tabStop567);
            tabs23.Append(tabStop568);
            tabs23.Append(tabStop569);
            tabs23.Append(tabStop570);
            tabs23.Append(tabStop571);
            tabs23.Append(tabStop572);
            tabs23.Append(tabStop573);
            tabs23.Append(tabStop574);
            tabs23.Append(tabStop575);
            ParagraphMarkRunProperties paragraphMarkRunProperties236 = new ParagraphMarkRunProperties();

            paragraphProperties236.Append(paragraphStyleId236);
            paragraphProperties236.Append(tabs23);
            paragraphProperties236.Append(paragraphMarkRunProperties236);

            Run run246 = new Run();

            RunProperties runProperties246 = new RunProperties();
            FontSize fontSize323 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript323 = new FontSizeComplexScript() { Val = "26" };

            runProperties246.Append(fontSize323);
            runProperties246.Append(fontSizeComplexScript323);
            Text text137 = new Text();
            text137.Text = "Подразделение по защите государственной тайны отсутствует.";

            run246.Append(runProperties246);
            run246.Append(text137);

            paragraph236.Append(paragraphProperties236);
            paragraph236.Append(run246);

            tableCell180.Append(tableCellProperties180);
            tableCell180.Append(paragraph236);

            tableRow82.Append(tableRowProperties82);
            tableRow82.Append(tableCell180);

            TableRow tableRow83 = new TableRow();
            TableRowProperties tableRowProperties83 = new TableRowProperties();

            TableCell tableCell181 = new TableCell();

            TableCellProperties tableCellProperties181 = new TableCellProperties();
            TableCellWidth tableCellWidth181 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan181 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders181 = new TableCellBorders();
            TopBorder topBorder67 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders181.Append(topBorder67);
            Shading shading357 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties181.Append(tableCellWidth181);
            tableCellProperties181.Append(gridSpan181);
            tableCellProperties181.Append(tableCellBorders181);
            tableCellProperties181.Append(shading357);

            Paragraph paragraph237 = new Paragraph();

            ParagraphProperties paragraphProperties237 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId237 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs24 = new Tabs();
            TabStop tabStop576 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop577 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop578 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop579 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop580 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop581 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop582 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop583 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop584 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop585 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop586 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop587 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop588 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop589 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop590 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop591 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop592 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop593 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop594 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop595 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop596 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop597 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop598 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop599 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop600 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs24.Append(tabStop576);
            tabs24.Append(tabStop577);
            tabs24.Append(tabStop578);
            tabs24.Append(tabStop579);
            tabs24.Append(tabStop580);
            tabs24.Append(tabStop581);
            tabs24.Append(tabStop582);
            tabs24.Append(tabStop583);
            tabs24.Append(tabStop584);
            tabs24.Append(tabStop585);
            tabs24.Append(tabStop586);
            tabs24.Append(tabStop587);
            tabs24.Append(tabStop588);
            tabs24.Append(tabStop589);
            tabs24.Append(tabStop590);
            tabs24.Append(tabStop591);
            tabs24.Append(tabStop592);
            tabs24.Append(tabStop593);
            tabs24.Append(tabStop594);
            tabs24.Append(tabStop595);
            tabs24.Append(tabStop596);
            tabs24.Append(tabStop597);
            tabs24.Append(tabStop598);
            tabs24.Append(tabStop599);
            tabs24.Append(tabStop600);
            Justification justification139 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties237 = new ParagraphMarkRunProperties();
            FontSize fontSize324 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript324 = new FontSizeComplexScript() { Val = "26" };
            Shading shading358 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties237.Append(fontSize324);
            paragraphMarkRunProperties237.Append(fontSizeComplexScript324);
            paragraphMarkRunProperties237.Append(shading358);

            paragraphProperties237.Append(paragraphStyleId237);
            paragraphProperties237.Append(tabs24);
            paragraphProperties237.Append(justification139);
            paragraphProperties237.Append(paragraphMarkRunProperties237);

            Run run247 = new Run();

            RunProperties runProperties247 = new RunProperties();
            FontSize fontSize325 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript325 = new FontSizeComplexScript() { Val = "26" };
            Shading shading359 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties247.Append(fontSize325);
            runProperties247.Append(fontSizeComplexScript325);
            runProperties247.Append(shading359);

            run247.Append(runProperties247);

            paragraph237.Append(paragraphProperties237);
            paragraph237.Append(run247);

            tableCell181.Append(tableCellProperties181);
            tableCell181.Append(paragraph237);

            tableRow83.Append(tableRowProperties83);
            tableRow83.Append(tableCell181);

            TableRow tableRow84 = new TableRow();
            TableRowProperties tableRowProperties84 = new TableRowProperties();

            TableCell tableCell182 = new TableCell();

            TableCellProperties tableCellProperties182 = new TableCellProperties();
            TableCellWidth tableCellWidth182 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan182 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders182 = new TableCellBorders();
            Shading shading360 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties182.Append(tableCellWidth182);
            tableCellProperties182.Append(gridSpan182);
            tableCellProperties182.Append(tableCellBorders182);
            tableCellProperties182.Append(shading360);

            Paragraph paragraph238 = new Paragraph();

            ParagraphProperties paragraphProperties238 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId238 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification140 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties238 = new ParagraphMarkRunProperties();

            paragraphProperties238.Append(paragraphStyleId238);
            paragraphProperties238.Append(justification140);
            paragraphProperties238.Append(paragraphMarkRunProperties238);

            Run run248 = new Run();

            RunProperties runProperties248 = new RunProperties();
            Bold bold21 = new Bold();
            FontSize fontSize326 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript326 = new FontSizeComplexScript() { Val = "26" };

            runProperties248.Append(bold21);
            runProperties248.Append(fontSize326);
            runProperties248.Append(fontSizeComplexScript326);
            Text text138 = new Text();
            text138.Text = "1.8. Характеристика местности и природно-климатические условия:";

            run248.Append(runProperties248);
            run248.Append(text138);

            paragraph238.Append(paragraphProperties238);
            paragraph238.Append(run248);

            tableCell182.Append(tableCellProperties182);
            tableCell182.Append(paragraph238);

            tableRow84.Append(tableRowProperties84);
            tableRow84.Append(tableCell182);

            TableRow tableRow85 = new TableRow();
            TableRowProperties tableRowProperties85 = new TableRowProperties();

            TableCell tableCell183 = new TableCell();

            TableCellProperties tableCellProperties183 = new TableCellProperties();
            TableCellWidth tableCellWidth183 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan183 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders183 = new TableCellBorders();
            Shading shading361 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties183.Append(tableCellWidth183);
            tableCellProperties183.Append(gridSpan183);
            tableCellProperties183.Append(tableCellBorders183);
            tableCellProperties183.Append(shading361);

            Paragraph paragraph239 = new Paragraph();

            ParagraphProperties paragraphProperties239 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId239 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation37 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties239 = new ParagraphMarkRunProperties();

            paragraphProperties239.Append(paragraphStyleId239);
            paragraphProperties239.Append(indentation37);
            paragraphProperties239.Append(paragraphMarkRunProperties239);

            Run run249 = new Run();

            RunProperties runProperties249 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize327 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript327 = new FontSizeComplexScript() { Val = "26" };

            runProperties249.Append(runFonts8);
            runProperties249.Append(fontSize327);
            runProperties249.Append(fontSizeComplexScript327);
            Text text139 = new Text();
            text139.Text = "Площадка объекта расположена в районе 71 км МКАД.";

            run249.Append(runProperties249);
            run249.Append(text139);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Run run250 = new Run();

            RunProperties runProperties250 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize328 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript328 = new FontSizeComplexScript() { Val = "26" };

            runProperties250.Append(runFonts9);
            runProperties250.Append(fontSize328);
            runProperties250.Append(fontSizeComplexScript328);
            Text text140 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text140.Text = " Рельеф площадки ровный, спланированный. ";

            run250.Append(runProperties250);
            run250.Append(text140);

            paragraph239.Append(paragraphProperties239);
            paragraph239.Append(run249);
            paragraph239.Append(bookmarkStart1);
            paragraph239.Append(bookmarkEnd1);
            paragraph239.Append(run250);

            Paragraph paragraph240 = new Paragraph();

            ParagraphProperties paragraphProperties240 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId240 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties240 = new ParagraphMarkRunProperties();

            paragraphProperties240.Append(paragraphStyleId240);
            paragraphProperties240.Append(paragraphMarkRunProperties240);

            Run run251 = new Run();

            RunProperties runProperties251 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize329 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript329 = new FontSizeComplexScript() { Val = "26" };

            runProperties251.Append(runFonts10);
            runProperties251.Append(fontSize329);
            runProperties251.Append(fontSizeComplexScript329);
            Text text141 = new Text();
            text141.Text = "Абсолютные отметки поверхности изменяются в пределах 124,5-152,2 м.";

            run251.Append(runProperties251);
            run251.Append(text141);

            paragraph240.Append(paragraphProperties240);
            paragraph240.Append(run251);

            Paragraph paragraph241 = new Paragraph();

            ParagraphProperties paragraphProperties241 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId241 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation38 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties241 = new ParagraphMarkRunProperties();

            paragraphProperties241.Append(paragraphStyleId241);
            paragraphProperties241.Append(indentation38);
            paragraphProperties241.Append(paragraphMarkRunProperties241);

            Run run252 = new Run();

            RunProperties runProperties252 = new RunProperties();
            RunFonts runFonts11 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize330 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript330 = new FontSizeComplexScript() { Val = "26" };

            runProperties252.Append(runFonts11);
            runProperties252.Append(fontSize330);
            runProperties252.Append(fontSizeComplexScript330);
            Text text142 = new Text();
            text142.Text = "Территория частично покрыта асфальтобетонным покрытием. На территории имеются деревья, кустарники и газоны.";

            run252.Append(runProperties252);
            run252.Append(text142);

            paragraph241.Append(paragraphProperties241);
            paragraph241.Append(run252);

            Paragraph paragraph242 = new Paragraph();

            ParagraphProperties paragraphProperties242 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId242 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation39 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties242 = new ParagraphMarkRunProperties();

            paragraphProperties242.Append(paragraphStyleId242);
            paragraphProperties242.Append(indentation39);
            paragraphProperties242.Append(paragraphMarkRunProperties242);

            Run run253 = new Run();

            RunProperties runProperties253 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize331 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript331 = new FontSizeComplexScript() { Val = "26" };

            runProperties253.Append(runFonts12);
            runProperties253.Append(fontSize331);
            runProperties253.Append(fontSizeComplexScript331);
            Text text143 = new Text();
            text143.Text = "Неблагоприятные физико-геологические процессы, кроме сезонного промерзания грунтов и подтопления, на площадке отсутствуют.";

            run253.Append(runProperties253);
            run253.Append(text143);

            paragraph242.Append(paragraphProperties242);
            paragraph242.Append(run253);

            Paragraph paragraph243 = new Paragraph();

            ParagraphProperties paragraphProperties243 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId243 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation40 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties243 = new ParagraphMarkRunProperties();

            paragraphProperties243.Append(paragraphStyleId243);
            paragraphProperties243.Append(indentation40);
            paragraphProperties243.Append(paragraphMarkRunProperties243);

            Run run254 = new Run();

            RunProperties runProperties254 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize332 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript332 = new FontSizeComplexScript() { Val = "26" };

            runProperties254.Append(runFonts13);
            runProperties254.Append(fontSize332);
            runProperties254.Append(fontSizeComplexScript332);
            Text text144 = new Text();
            text144.Text = "Участок расположен в Северо-Западном административном округе г. Москвы, имеющим развитую транспортную инфраструктуру.";

            run254.Append(runProperties254);
            run254.Append(text144);

            paragraph243.Append(paragraphProperties243);
            paragraph243.Append(run254);

            Paragraph paragraph244 = new Paragraph();

            ParagraphProperties paragraphProperties244 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId244 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification141 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties244 = new ParagraphMarkRunProperties();

            paragraphProperties244.Append(paragraphStyleId244);
            paragraphProperties244.Append(justification141);
            paragraphProperties244.Append(paragraphMarkRunProperties244);

            Run run255 = new Run();

            RunProperties runProperties255 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize333 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript333 = new FontSizeComplexScript() { Val = "26" };

            runProperties255.Append(runFonts14);
            runProperties255.Append(fontSize333);
            runProperties255.Append(fontSizeComplexScript333);
            Text text145 = new Text();
            text145.Text = "Подъезд технологического транспорта, строительной техники и пожарных машин к станции предусмотрен с ул. Вилиса Лациса.";

            run255.Append(runProperties255);
            run255.Append(text145);

            paragraph244.Append(paragraphProperties244);
            paragraph244.Append(run255);

            Paragraph paragraph245 = new Paragraph();

            ParagraphProperties paragraphProperties245 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId245 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification142 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties245 = new ParagraphMarkRunProperties();

            paragraphProperties245.Append(paragraphStyleId245);
            paragraphProperties245.Append(justification142);
            paragraphProperties245.Append(paragraphMarkRunProperties245);

            Run run256 = new Run();

            RunProperties runProperties256 = new RunProperties();
            RunFonts runFonts15 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold22 = new Bold();
            FontSize fontSize334 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript334 = new FontSizeComplexScript() { Val = "26" };

            runProperties256.Append(runFonts15);
            runProperties256.Append(bold22);
            runProperties256.Append(fontSize334);
            runProperties256.Append(fontSizeComplexScript334);
            Text text146 = new Text();
            text146.Text = "Климатические особенности района.";

            run256.Append(runProperties256);
            run256.Append(text146);

            paragraph245.Append(paragraphProperties245);
            paragraph245.Append(run256);

            Paragraph paragraph246 = new Paragraph();

            ParagraphProperties paragraphProperties246 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId246 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation41 = new Indentation() { FirstLine = "601" };
            Justification justification143 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties246 = new ParagraphMarkRunProperties();

            paragraphProperties246.Append(paragraphStyleId246);
            paragraphProperties246.Append(indentation41);
            paragraphProperties246.Append(justification143);
            paragraphProperties246.Append(paragraphMarkRunProperties246);

            Run run257 = new Run();

            RunProperties runProperties257 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing1 = new Spacing() { Val = 0 };
            FontSize fontSize335 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript335 = new FontSizeComplexScript() { Val = "26" };

            runProperties257.Append(runFonts16);
            runProperties257.Append(spacing1);
            runProperties257.Append(fontSize335);
            runProperties257.Append(fontSizeComplexScript335);
            Text text147 = new Text();
            text147.Text = "Средняя скорость ветра - 3,5 м/с, в зимние месяцы - 5-7 м/с, в летние месяцы - 3-5 м/с; сильные ветры дуют 10-15 дней в году, достигают скорости 10 м/с, в тёплое время преобладают юго-восточные ветра, в холодное время – западные.";

            run257.Append(runProperties257);
            run257.Append(text147);

            paragraph246.Append(paragraphProperties246);
            paragraph246.Append(run257);

            Paragraph paragraph247 = new Paragraph();

            ParagraphProperties paragraphProperties247 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId247 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation42 = new Indentation() { FirstLine = "601" };
            Justification justification144 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties247 = new ParagraphMarkRunProperties();

            paragraphProperties247.Append(paragraphStyleId247);
            paragraphProperties247.Append(indentation42);
            paragraphProperties247.Append(justification144);
            paragraphProperties247.Append(paragraphMarkRunProperties247);

            Run run258 = new Run();

            RunProperties runProperties258 = new RunProperties();
            RunFonts runFonts17 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing2 = new Spacing() { Val = 0 };
            FontSize fontSize336 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript336 = new FontSizeComplexScript() { Val = "26" };

            runProperties258.Append(runFonts17);
            runProperties258.Append(spacing2);
            runProperties258.Append(fontSize336);
            runProperties258.Append(fontSizeComplexScript336);
            Text text148 = new Text();
            text148.Text = "Годовая сумма осадков в среднем 650-700 мм, около 40% выпадает в холодный период года с ноября по март, 60% - в течение апреля - октября, максимальное выпадение осадков - в июне - до 90 мм и в июле – августе – 80 мм.";

            run258.Append(runProperties258);
            run258.Append(text148);

            paragraph247.Append(paragraphProperties247);
            paragraph247.Append(run258);

            Paragraph paragraph248 = new Paragraph();

            ParagraphProperties paragraphProperties248 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId248 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation43 = new Indentation() { FirstLine = "601" };
            Justification justification145 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties248 = new ParagraphMarkRunProperties();

            paragraphProperties248.Append(paragraphStyleId248);
            paragraphProperties248.Append(indentation43);
            paragraphProperties248.Append(justification145);
            paragraphProperties248.Append(paragraphMarkRunProperties248);

            Run run259 = new Run();

            RunProperties runProperties259 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing3 = new Spacing() { Val = 0 };
            FontSize fontSize337 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript337 = new FontSizeComplexScript() { Val = "26" };

            runProperties259.Append(runFonts18);
            runProperties259.Append(spacing3);
            runProperties259.Append(fontSize337);
            runProperties259.Append(fontSizeComplexScript337);
            Text text149 = new Text();
            text149.Text = "Средняя годовая температура - 3,3○С, средняя температура января – (минус) 10○С (рекордная – (минус) 35○С) , июля - 20○С (рекордная +35○С).";

            run259.Append(runProperties259);
            run259.Append(text149);

            paragraph248.Append(paragraphProperties248);
            paragraph248.Append(run259);

            Paragraph paragraph249 = new Paragraph();

            ParagraphProperties paragraphProperties249 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId249 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs25 = new Tabs();
            TabStop tabStop601 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop602 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop603 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop604 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop605 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop606 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop607 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop608 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop609 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop610 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop611 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop612 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop613 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop614 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop615 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop616 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop617 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop618 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop619 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop620 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop621 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop622 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop623 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop624 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop625 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs25.Append(tabStop601);
            tabs25.Append(tabStop602);
            tabs25.Append(tabStop603);
            tabs25.Append(tabStop604);
            tabs25.Append(tabStop605);
            tabs25.Append(tabStop606);
            tabs25.Append(tabStop607);
            tabs25.Append(tabStop608);
            tabs25.Append(tabStop609);
            tabs25.Append(tabStop610);
            tabs25.Append(tabStop611);
            tabs25.Append(tabStop612);
            tabs25.Append(tabStop613);
            tabs25.Append(tabStop614);
            tabs25.Append(tabStop615);
            tabs25.Append(tabStop616);
            tabs25.Append(tabStop617);
            tabs25.Append(tabStop618);
            tabs25.Append(tabStop619);
            tabs25.Append(tabStop620);
            tabs25.Append(tabStop621);
            tabs25.Append(tabStop622);
            tabs25.Append(tabStop623);
            tabs25.Append(tabStop624);
            tabs25.Append(tabStop625);
            Indentation indentation44 = new Indentation() { FirstLine = "459" };
            Justification justification146 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties249 = new ParagraphMarkRunProperties();

            paragraphProperties249.Append(paragraphStyleId249);
            paragraphProperties249.Append(tabs25);
            paragraphProperties249.Append(indentation44);
            paragraphProperties249.Append(justification146);
            paragraphProperties249.Append(paragraphMarkRunProperties249);

            Run run260 = new Run();

            RunProperties runProperties260 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing4 = new Spacing() { Val = 0 };
            FontSize fontSize338 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript338 = new FontSizeComplexScript() { Val = "26" };

            runProperties260.Append(runFonts19);
            runProperties260.Append(spacing4);
            runProperties260.Append(fontSize338);
            runProperties260.Append(fontSizeComplexScript338);
            Text text150 = new Text();
            text150.Text = "Относительная влажность воздуха в течение всего года повышенная до 83%, в период с мая по июнь - 55-60%.";

            run260.Append(runProperties260);
            run260.Append(text150);

            paragraph249.Append(paragraphProperties249);
            paragraph249.Append(run260);

            tableCell183.Append(tableCellProperties183);
            tableCell183.Append(paragraph239);
            tableCell183.Append(paragraph240);
            tableCell183.Append(paragraph241);
            tableCell183.Append(paragraph242);
            tableCell183.Append(paragraph243);
            tableCell183.Append(paragraph244);
            tableCell183.Append(paragraph245);
            tableCell183.Append(paragraph246);
            tableCell183.Append(paragraph247);
            tableCell183.Append(paragraph248);
            tableCell183.Append(paragraph249);

            tableRow85.Append(tableRowProperties85);
            tableRow85.Append(tableCell183);

            TableRow tableRow86 = new TableRow();

            TableRowProperties tableRowProperties86 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)717U, HeightType = HeightRuleValues.AtLeast };

            tableRowProperties86.Append(tableRowHeight1);

            TableCell tableCell184 = new TableCell();

            TableCellProperties tableCellProperties184 = new TableCellProperties();
            TableCellWidth tableCellWidth184 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan184 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders184 = new TableCellBorders();
            Shading shading362 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties184.Append(tableCellWidth184);
            tableCellProperties184.Append(gridSpan184);
            tableCellProperties184.Append(tableCellBorders184);
            tableCellProperties184.Append(shading362);

            Paragraph paragraph250 = new Paragraph();

            ParagraphProperties paragraphProperties250 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId250 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation45 = new Indentation() { FirstLine = "459" };
            Justification justification147 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties250 = new ParagraphMarkRunProperties();

            paragraphProperties250.Append(paragraphStyleId250);
            paragraphProperties250.Append(indentation45);
            paragraphProperties250.Append(justification147);
            paragraphProperties250.Append(paragraphMarkRunProperties250);

            Run run261 = new Run();

            RunProperties runProperties261 = new RunProperties();
            FontSize fontSize339 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript339 = new FontSizeComplexScript() { Val = "26" };

            runProperties261.Append(fontSize339);
            runProperties261.Append(fontSizeComplexScript339);
            Text text151 = new Text();
            text151.Text = "Сезонные и среднегодовые климатические характеристики.";

            run261.Append(runProperties261);
            run261.Append(text151);

            paragraph250.Append(paragraphProperties250);
            paragraph250.Append(run261);

            Paragraph paragraph251 = new Paragraph();

            ParagraphProperties paragraphProperties251 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId251 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation46 = new Indentation() { FirstLine = "459" };
            Justification justification148 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties251 = new ParagraphMarkRunProperties();

            paragraphProperties251.Append(paragraphStyleId251);
            paragraphProperties251.Append(indentation46);
            paragraphProperties251.Append(justification148);
            paragraphProperties251.Append(paragraphMarkRunProperties251);

            Run run262 = new Run();

            RunProperties runProperties262 = new RunProperties();
            FontSize fontSize340 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript340 = new FontSizeComplexScript() { Val = "26" };

            runProperties262.Append(fontSize340);
            runProperties262.Append(fontSizeComplexScript340);
            Text text152 = new Text();
            text152.Text = "Температура воздуха.";

            run262.Append(runProperties262);
            run262.Append(text152);

            paragraph251.Append(paragraphProperties251);
            paragraph251.Append(run262);

            tableCell184.Append(tableCellProperties184);
            tableCell184.Append(paragraph250);
            tableCell184.Append(paragraph251);

            tableRow86.Append(tableRowProperties86);
            tableRow86.Append(tableCell184);

            TableRow tableRow87 = new TableRow();
            TableRowProperties tableRowProperties87 = new TableRowProperties();

            TableCell tableCell185 = new TableCell();

            TableCellProperties tableCellProperties185 = new TableCellProperties();
            TableCellWidth tableCellWidth185 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan185 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders185 = new TableCellBorders();
            TopBorder topBorder68 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder40 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders185.Append(topBorder68);
            tableCellBorders185.Append(bottomBorder40);
            tableCellBorders185.Append(insideHorizontalBorder40);
            Shading shading363 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties185.Append(tableCellWidth185);
            tableCellProperties185.Append(gridSpan185);
            tableCellProperties185.Append(tableCellBorders185);
            tableCellProperties185.Append(shading363);

            Paragraph paragraph252 = new Paragraph();

            ParagraphProperties paragraphProperties252 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId252 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties252 = new ParagraphMarkRunProperties();

            paragraphProperties252.Append(paragraphStyleId252);
            paragraphProperties252.Append(paragraphMarkRunProperties252);

            Run run263 = new Run();

            RunProperties runProperties263 = new RunProperties();
            FontSize fontSize341 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript341 = new FontSizeComplexScript() { Val = "26" };

            runProperties263.Append(fontSize341);
            runProperties263.Append(fontSizeComplexScript341);
            Text text153 = new Text();
            text153.Text = "Средняя месячная и годовая температура воздуха по СП 131.13330.2012, °С.";

            run263.Append(runProperties263);
            run263.Append(text153);

            paragraph252.Append(paragraphProperties252);
            paragraph252.Append(run263);

            tableCell185.Append(tableCellProperties185);
            tableCell185.Append(paragraph252);

            tableRow87.Append(tableRowProperties87);
            tableRow87.Append(tableCell185);

            TableRow tableRow88 = new TableRow();
            TableRowProperties tableRowProperties88 = new TableRowProperties();

            TableCell tableCell186 = new TableCell();

            TableCellProperties tableCellProperties186 = new TableCellProperties();
            TableCellWidth tableCellWidth186 = new TableCellWidth() { Width = "1295", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan186 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders186 = new TableCellBorders();
            TopBorder topBorder69 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder58 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder58 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder41 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder58 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders186.Append(topBorder69);
            tableCellBorders186.Append(startBorder58);
            tableCellBorders186.Append(bottomBorder41);
            tableCellBorders186.Append(endBorder58);
            tableCellBorders186.Append(insideHorizontalBorder41);
            tableCellBorders186.Append(insideVerticalBorder58);
            Shading shading364 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin58 = new TableCellMargin();
            StartMargin startMargin59 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin58.Append(startMargin59);

            tableCellProperties186.Append(tableCellWidth186);
            tableCellProperties186.Append(gridSpan186);
            tableCellProperties186.Append(tableCellBorders186);
            tableCellProperties186.Append(shading364);
            tableCellProperties186.Append(tableCellMargin58);

            Paragraph paragraph253 = new Paragraph();

            ParagraphProperties paragraphProperties253 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId253 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties253 = new ParagraphMarkRunProperties();

            paragraphProperties253.Append(paragraphStyleId253);
            paragraphProperties253.Append(paragraphMarkRunProperties253);

            Run run264 = new Run();

            RunProperties runProperties264 = new RunProperties();
            FontSize fontSize342 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript342 = new FontSizeComplexScript() { Val = "20" };

            runProperties264.Append(fontSize342);
            runProperties264.Append(fontSizeComplexScript342);
            Text text154 = new Text();
            text154.Text = "Республика, край, область, пункт";

            run264.Append(runProperties264);
            run264.Append(text154);

            paragraph253.Append(paragraphProperties253);
            paragraph253.Append(run264);

            tableCell186.Append(tableCellProperties186);
            tableCell186.Append(paragraph253);

            TableCell tableCell187 = new TableCell();

            TableCellProperties tableCellProperties187 = new TableCellProperties();
            TableCellWidth tableCellWidth187 = new TableCellWidth() { Width = "491", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan187 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders187 = new TableCellBorders();
            TopBorder topBorder70 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder59 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder42 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders187.Append(topBorder70);
            tableCellBorders187.Append(startBorder59);
            tableCellBorders187.Append(bottomBorder42);
            tableCellBorders187.Append(insideHorizontalBorder42);
            Shading shading365 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin59 = new TableCellMargin();
            StartMargin startMargin60 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin59.Append(startMargin60);

            tableCellProperties187.Append(tableCellWidth187);
            tableCellProperties187.Append(gridSpan187);
            tableCellProperties187.Append(tableCellBorders187);
            tableCellProperties187.Append(shading365);
            tableCellProperties187.Append(tableCellMargin59);

            Paragraph paragraph254 = new Paragraph();

            ParagraphProperties paragraphProperties254 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId254 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties254 = new ParagraphMarkRunProperties();

            paragraphProperties254.Append(paragraphStyleId254);
            paragraphProperties254.Append(paragraphMarkRunProperties254);

            Run run265 = new Run();

            RunProperties runProperties265 = new RunProperties();
            FontSize fontSize343 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript343 = new FontSizeComplexScript() { Val = "20" };

            runProperties265.Append(fontSize343);
            runProperties265.Append(fontSizeComplexScript343);
            Text text155 = new Text();
            text155.Text = "I";

            run265.Append(runProperties265);
            run265.Append(text155);

            paragraph254.Append(paragraphProperties254);
            paragraph254.Append(run265);

            tableCell187.Append(tableCellProperties187);
            tableCell187.Append(paragraph254);

            TableCell tableCell188 = new TableCell();

            TableCellProperties tableCellProperties188 = new TableCellProperties();
            TableCellWidth tableCellWidth188 = new TableCellWidth() { Width = "649", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan188 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders188 = new TableCellBorders();
            TopBorder topBorder71 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder60 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder43 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders188.Append(topBorder71);
            tableCellBorders188.Append(startBorder60);
            tableCellBorders188.Append(bottomBorder43);
            tableCellBorders188.Append(insideHorizontalBorder43);
            Shading shading366 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin60 = new TableCellMargin();
            StartMargin startMargin61 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin60.Append(startMargin61);

            tableCellProperties188.Append(tableCellWidth188);
            tableCellProperties188.Append(gridSpan188);
            tableCellProperties188.Append(tableCellBorders188);
            tableCellProperties188.Append(shading366);
            tableCellProperties188.Append(tableCellMargin60);

            Paragraph paragraph255 = new Paragraph();

            ParagraphProperties paragraphProperties255 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId255 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties255 = new ParagraphMarkRunProperties();

            paragraphProperties255.Append(paragraphStyleId255);
            paragraphProperties255.Append(paragraphMarkRunProperties255);

            Run run266 = new Run();

            RunProperties runProperties266 = new RunProperties();
            FontSize fontSize344 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript344 = new FontSizeComplexScript() { Val = "20" };

            runProperties266.Append(fontSize344);
            runProperties266.Append(fontSizeComplexScript344);
            Text text156 = new Text();
            text156.Text = "II";

            run266.Append(runProperties266);
            run266.Append(text156);

            paragraph255.Append(paragraphProperties255);
            paragraph255.Append(run266);

            tableCell188.Append(tableCellProperties188);
            tableCell188.Append(paragraph255);

            TableCell tableCell189 = new TableCell();

            TableCellProperties tableCellProperties189 = new TableCellProperties();
            TableCellWidth tableCellWidth189 = new TableCellWidth() { Width = "686", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan189 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders189 = new TableCellBorders();
            TopBorder topBorder72 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder61 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder44 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders189.Append(topBorder72);
            tableCellBorders189.Append(startBorder61);
            tableCellBorders189.Append(bottomBorder44);
            tableCellBorders189.Append(insideHorizontalBorder44);
            Shading shading367 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin61 = new TableCellMargin();
            StartMargin startMargin62 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin61.Append(startMargin62);

            tableCellProperties189.Append(tableCellWidth189);
            tableCellProperties189.Append(gridSpan189);
            tableCellProperties189.Append(tableCellBorders189);
            tableCellProperties189.Append(shading367);
            tableCellProperties189.Append(tableCellMargin61);

            Paragraph paragraph256 = new Paragraph();

            ParagraphProperties paragraphProperties256 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId256 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties256 = new ParagraphMarkRunProperties();

            paragraphProperties256.Append(paragraphStyleId256);
            paragraphProperties256.Append(paragraphMarkRunProperties256);

            Run run267 = new Run();

            RunProperties runProperties267 = new RunProperties();
            FontSize fontSize345 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript345 = new FontSizeComplexScript() { Val = "20" };

            runProperties267.Append(fontSize345);
            runProperties267.Append(fontSizeComplexScript345);
            Text text157 = new Text();
            text157.Text = "III";

            run267.Append(runProperties267);
            run267.Append(text157);

            paragraph256.Append(paragraphProperties256);
            paragraph256.Append(run267);

            tableCell189.Append(tableCellProperties189);
            tableCell189.Append(paragraph256);

            TableCell tableCell190 = new TableCell();

            TableCellProperties tableCellProperties190 = new TableCellProperties();
            TableCellWidth tableCellWidth190 = new TableCellWidth() { Width = "628", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan190 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders190 = new TableCellBorders();
            TopBorder topBorder73 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder62 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder45 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders190.Append(topBorder73);
            tableCellBorders190.Append(startBorder62);
            tableCellBorders190.Append(bottomBorder45);
            tableCellBorders190.Append(insideHorizontalBorder45);
            Shading shading368 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin62 = new TableCellMargin();
            StartMargin startMargin63 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin62.Append(startMargin63);

            tableCellProperties190.Append(tableCellWidth190);
            tableCellProperties190.Append(gridSpan190);
            tableCellProperties190.Append(tableCellBorders190);
            tableCellProperties190.Append(shading368);
            tableCellProperties190.Append(tableCellMargin62);

            Paragraph paragraph257 = new Paragraph();

            ParagraphProperties paragraphProperties257 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId257 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties257 = new ParagraphMarkRunProperties();

            paragraphProperties257.Append(paragraphStyleId257);
            paragraphProperties257.Append(paragraphMarkRunProperties257);

            Run run268 = new Run();

            RunProperties runProperties268 = new RunProperties();
            FontSize fontSize346 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript346 = new FontSizeComplexScript() { Val = "20" };

            runProperties268.Append(fontSize346);
            runProperties268.Append(fontSizeComplexScript346);
            Text text158 = new Text();
            text158.Text = "IV";

            run268.Append(runProperties268);
            run268.Append(text158);

            paragraph257.Append(paragraphProperties257);
            paragraph257.Append(run268);

            tableCell190.Append(tableCellProperties190);
            tableCell190.Append(paragraph257);

            TableCell tableCell191 = new TableCell();

            TableCellProperties tableCellProperties191 = new TableCellProperties();
            TableCellWidth tableCellWidth191 = new TableCellWidth() { Width = "1016", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan191 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders191 = new TableCellBorders();
            TopBorder topBorder74 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder63 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder46 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders191.Append(topBorder74);
            tableCellBorders191.Append(startBorder63);
            tableCellBorders191.Append(bottomBorder46);
            tableCellBorders191.Append(insideHorizontalBorder46);
            Shading shading369 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin63 = new TableCellMargin();
            StartMargin startMargin64 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin63.Append(startMargin64);

            tableCellProperties191.Append(tableCellWidth191);
            tableCellProperties191.Append(gridSpan191);
            tableCellProperties191.Append(tableCellBorders191);
            tableCellProperties191.Append(shading369);
            tableCellProperties191.Append(tableCellMargin63);

            Paragraph paragraph258 = new Paragraph();

            ParagraphProperties paragraphProperties258 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId258 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties258 = new ParagraphMarkRunProperties();

            paragraphProperties258.Append(paragraphStyleId258);
            paragraphProperties258.Append(paragraphMarkRunProperties258);

            Run run269 = new Run();

            RunProperties runProperties269 = new RunProperties();
            FontSize fontSize347 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript347 = new FontSizeComplexScript() { Val = "20" };

            runProperties269.Append(fontSize347);
            runProperties269.Append(fontSizeComplexScript347);
            Text text159 = new Text();
            text159.Text = "V";

            run269.Append(runProperties269);
            run269.Append(text159);

            paragraph258.Append(paragraphProperties258);
            paragraph258.Append(run269);

            tableCell191.Append(tableCellProperties191);
            tableCell191.Append(paragraph258);

            TableCell tableCell192 = new TableCell();

            TableCellProperties tableCellProperties192 = new TableCellProperties();
            TableCellWidth tableCellWidth192 = new TableCellWidth() { Width = "326", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan192 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders192 = new TableCellBorders();
            TopBorder topBorder75 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder64 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder47 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders192.Append(topBorder75);
            tableCellBorders192.Append(startBorder64);
            tableCellBorders192.Append(bottomBorder47);
            tableCellBorders192.Append(insideHorizontalBorder47);
            Shading shading370 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin64 = new TableCellMargin();
            StartMargin startMargin65 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin64.Append(startMargin65);

            tableCellProperties192.Append(tableCellWidth192);
            tableCellProperties192.Append(gridSpan192);
            tableCellProperties192.Append(tableCellBorders192);
            tableCellProperties192.Append(shading370);
            tableCellProperties192.Append(tableCellMargin64);

            Paragraph paragraph259 = new Paragraph();

            ParagraphProperties paragraphProperties259 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId259 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties259 = new ParagraphMarkRunProperties();

            paragraphProperties259.Append(paragraphStyleId259);
            paragraphProperties259.Append(paragraphMarkRunProperties259);

            Run run270 = new Run();

            RunProperties runProperties270 = new RunProperties();
            FontSize fontSize348 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript348 = new FontSizeComplexScript() { Val = "20" };

            runProperties270.Append(fontSize348);
            runProperties270.Append(fontSizeComplexScript348);
            Text text160 = new Text();
            text160.Text = "VI";

            run270.Append(runProperties270);
            run270.Append(text160);

            paragraph259.Append(paragraphProperties259);
            paragraph259.Append(run270);

            tableCell192.Append(tableCellProperties192);
            tableCell192.Append(paragraph259);

            TableCell tableCell193 = new TableCell();

            TableCellProperties tableCellProperties193 = new TableCellProperties();
            TableCellWidth tableCellWidth193 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan193 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders193 = new TableCellBorders();
            TopBorder topBorder76 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder65 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder48 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders193.Append(topBorder76);
            tableCellBorders193.Append(startBorder65);
            tableCellBorders193.Append(bottomBorder48);
            tableCellBorders193.Append(insideHorizontalBorder48);
            Shading shading371 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin65 = new TableCellMargin();
            StartMargin startMargin66 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin65.Append(startMargin66);

            tableCellProperties193.Append(tableCellWidth193);
            tableCellProperties193.Append(gridSpan193);
            tableCellProperties193.Append(tableCellBorders193);
            tableCellProperties193.Append(shading371);
            tableCellProperties193.Append(tableCellMargin65);

            Paragraph paragraph260 = new Paragraph();

            ParagraphProperties paragraphProperties260 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId260 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties260 = new ParagraphMarkRunProperties();

            paragraphProperties260.Append(paragraphStyleId260);
            paragraphProperties260.Append(paragraphMarkRunProperties260);

            Run run271 = new Run();

            RunProperties runProperties271 = new RunProperties();
            FontSize fontSize349 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript349 = new FontSizeComplexScript() { Val = "20" };

            runProperties271.Append(fontSize349);
            runProperties271.Append(fontSizeComplexScript349);
            Text text161 = new Text();
            text161.Text = "VII";

            run271.Append(runProperties271);
            run271.Append(text161);

            paragraph260.Append(paragraphProperties260);
            paragraph260.Append(run271);

            tableCell193.Append(tableCellProperties193);
            tableCell193.Append(paragraph260);

            TableCell tableCell194 = new TableCell();

            TableCellProperties tableCellProperties194 = new TableCellProperties();
            TableCellWidth tableCellWidth194 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan194 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders194 = new TableCellBorders();
            TopBorder topBorder77 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder66 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder49 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders194.Append(topBorder77);
            tableCellBorders194.Append(startBorder66);
            tableCellBorders194.Append(bottomBorder49);
            tableCellBorders194.Append(insideHorizontalBorder49);
            Shading shading372 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin66 = new TableCellMargin();
            StartMargin startMargin67 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin66.Append(startMargin67);

            tableCellProperties194.Append(tableCellWidth194);
            tableCellProperties194.Append(gridSpan194);
            tableCellProperties194.Append(tableCellBorders194);
            tableCellProperties194.Append(shading372);
            tableCellProperties194.Append(tableCellMargin66);

            Paragraph paragraph261 = new Paragraph();

            ParagraphProperties paragraphProperties261 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId261 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties261 = new ParagraphMarkRunProperties();

            paragraphProperties261.Append(paragraphStyleId261);
            paragraphProperties261.Append(paragraphMarkRunProperties261);

            Run run272 = new Run();

            RunProperties runProperties272 = new RunProperties();
            FontSize fontSize350 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript350 = new FontSizeComplexScript() { Val = "20" };

            runProperties272.Append(fontSize350);
            runProperties272.Append(fontSizeComplexScript350);
            Text text162 = new Text();
            text162.Text = "VIII";

            run272.Append(runProperties272);
            run272.Append(text162);

            paragraph261.Append(paragraphProperties261);
            paragraph261.Append(run272);

            tableCell194.Append(tableCellProperties194);
            tableCell194.Append(paragraph261);

            TableCell tableCell195 = new TableCell();

            TableCellProperties tableCellProperties195 = new TableCellProperties();
            TableCellWidth tableCellWidth195 = new TableCellWidth() { Width = "663", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan195 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders195 = new TableCellBorders();
            TopBorder topBorder78 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder67 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder50 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders195.Append(topBorder78);
            tableCellBorders195.Append(startBorder67);
            tableCellBorders195.Append(bottomBorder50);
            tableCellBorders195.Append(insideHorizontalBorder50);
            Shading shading373 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin67 = new TableCellMargin();
            StartMargin startMargin68 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin67.Append(startMargin68);

            tableCellProperties195.Append(tableCellWidth195);
            tableCellProperties195.Append(gridSpan195);
            tableCellProperties195.Append(tableCellBorders195);
            tableCellProperties195.Append(shading373);
            tableCellProperties195.Append(tableCellMargin67);

            Paragraph paragraph262 = new Paragraph();

            ParagraphProperties paragraphProperties262 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId262 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties262 = new ParagraphMarkRunProperties();

            paragraphProperties262.Append(paragraphStyleId262);
            paragraphProperties262.Append(paragraphMarkRunProperties262);

            Run run273 = new Run();

            RunProperties runProperties273 = new RunProperties();
            FontSize fontSize351 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript351 = new FontSizeComplexScript() { Val = "20" };

            runProperties273.Append(fontSize351);
            runProperties273.Append(fontSizeComplexScript351);
            Text text163 = new Text();
            text163.Text = "IX";

            run273.Append(runProperties273);
            run273.Append(text163);

            paragraph262.Append(paragraphProperties262);
            paragraph262.Append(run273);

            tableCell195.Append(tableCellProperties195);
            tableCell195.Append(paragraph262);

            TableCell tableCell196 = new TableCell();

            TableCellProperties tableCellProperties196 = new TableCellProperties();
            TableCellWidth tableCellWidth196 = new TableCellWidth() { Width = "642", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan196 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders196 = new TableCellBorders();
            TopBorder topBorder79 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder68 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder51 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders196.Append(topBorder79);
            tableCellBorders196.Append(startBorder68);
            tableCellBorders196.Append(bottomBorder51);
            tableCellBorders196.Append(insideHorizontalBorder51);
            Shading shading374 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin68 = new TableCellMargin();
            StartMargin startMargin69 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin68.Append(startMargin69);

            tableCellProperties196.Append(tableCellWidth196);
            tableCellProperties196.Append(gridSpan196);
            tableCellProperties196.Append(tableCellBorders196);
            tableCellProperties196.Append(shading374);
            tableCellProperties196.Append(tableCellMargin68);

            Paragraph paragraph263 = new Paragraph();

            ParagraphProperties paragraphProperties263 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId263 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties263 = new ParagraphMarkRunProperties();

            paragraphProperties263.Append(paragraphStyleId263);
            paragraphProperties263.Append(paragraphMarkRunProperties263);

            Run run274 = new Run();

            RunProperties runProperties274 = new RunProperties();
            FontSize fontSize352 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript352 = new FontSizeComplexScript() { Val = "20" };

            runProperties274.Append(fontSize352);
            runProperties274.Append(fontSizeComplexScript352);
            Text text164 = new Text();
            text164.Text = "X";

            run274.Append(runProperties274);
            run274.Append(text164);

            paragraph263.Append(paragraphProperties263);
            paragraph263.Append(run274);

            tableCell196.Append(tableCellProperties196);
            tableCell196.Append(paragraph263);

            TableCell tableCell197 = new TableCell();

            TableCellProperties tableCellProperties197 = new TableCellProperties();
            TableCellWidth tableCellWidth197 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan197 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders197 = new TableCellBorders();
            TopBorder topBorder80 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder69 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder52 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders197.Append(topBorder80);
            tableCellBorders197.Append(startBorder69);
            tableCellBorders197.Append(bottomBorder52);
            tableCellBorders197.Append(insideHorizontalBorder52);
            Shading shading375 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin69 = new TableCellMargin();
            StartMargin startMargin70 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin69.Append(startMargin70);

            tableCellProperties197.Append(tableCellWidth197);
            tableCellProperties197.Append(gridSpan197);
            tableCellProperties197.Append(tableCellBorders197);
            tableCellProperties197.Append(shading375);
            tableCellProperties197.Append(tableCellMargin69);

            Paragraph paragraph264 = new Paragraph();

            ParagraphProperties paragraphProperties264 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId264 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties264 = new ParagraphMarkRunProperties();

            paragraphProperties264.Append(paragraphStyleId264);
            paragraphProperties264.Append(paragraphMarkRunProperties264);

            Run run275 = new Run();

            RunProperties runProperties275 = new RunProperties();
            FontSize fontSize353 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript353 = new FontSizeComplexScript() { Val = "20" };

            runProperties275.Append(fontSize353);
            runProperties275.Append(fontSizeComplexScript353);
            Text text165 = new Text();
            text165.Text = "XI";

            run275.Append(runProperties275);
            run275.Append(text165);

            paragraph264.Append(paragraphProperties264);
            paragraph264.Append(run275);

            tableCell197.Append(tableCellProperties197);
            tableCell197.Append(paragraph264);

            TableCell tableCell198 = new TableCell();

            TableCellProperties tableCellProperties198 = new TableCellProperties();
            TableCellWidth tableCellWidth198 = new TableCellWidth() { Width = "654", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan198 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders198 = new TableCellBorders();
            TopBorder topBorder81 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder70 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder53 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders198.Append(topBorder81);
            tableCellBorders198.Append(startBorder70);
            tableCellBorders198.Append(bottomBorder53);
            tableCellBorders198.Append(insideHorizontalBorder53);
            Shading shading376 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin70 = new TableCellMargin();
            StartMargin startMargin71 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin70.Append(startMargin71);

            tableCellProperties198.Append(tableCellWidth198);
            tableCellProperties198.Append(gridSpan198);
            tableCellProperties198.Append(tableCellBorders198);
            tableCellProperties198.Append(shading376);
            tableCellProperties198.Append(tableCellMargin70);

            Paragraph paragraph265 = new Paragraph();

            ParagraphProperties paragraphProperties265 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId265 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties265 = new ParagraphMarkRunProperties();

            paragraphProperties265.Append(paragraphStyleId265);
            paragraphProperties265.Append(paragraphMarkRunProperties265);

            Run run276 = new Run();

            RunProperties runProperties276 = new RunProperties();
            FontSize fontSize354 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript354 = new FontSizeComplexScript() { Val = "20" };

            runProperties276.Append(fontSize354);
            runProperties276.Append(fontSizeComplexScript354);
            Text text166 = new Text();
            text166.Text = "XII";

            run276.Append(runProperties276);
            run276.Append(text166);

            paragraph265.Append(paragraphProperties265);
            paragraph265.Append(run276);

            tableCell198.Append(tableCellProperties198);
            tableCell198.Append(paragraph265);

            TableCell tableCell199 = new TableCell();

            TableCellProperties tableCellProperties199 = new TableCellProperties();
            TableCellWidth tableCellWidth199 = new TableCellWidth() { Width = "653", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders199 = new TableCellBorders();
            TopBorder topBorder82 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder71 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder59 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder54 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder59 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders199.Append(topBorder82);
            tableCellBorders199.Append(startBorder71);
            tableCellBorders199.Append(bottomBorder54);
            tableCellBorders199.Append(endBorder59);
            tableCellBorders199.Append(insideHorizontalBorder54);
            tableCellBorders199.Append(insideVerticalBorder59);
            Shading shading377 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin71 = new TableCellMargin();
            StartMargin startMargin72 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin71.Append(startMargin72);

            tableCellProperties199.Append(tableCellWidth199);
            tableCellProperties199.Append(tableCellBorders199);
            tableCellProperties199.Append(shading377);
            tableCellProperties199.Append(tableCellMargin71);

            Paragraph paragraph266 = new Paragraph();

            ParagraphProperties paragraphProperties266 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId266 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties266 = new ParagraphMarkRunProperties();

            paragraphProperties266.Append(paragraphStyleId266);
            paragraphProperties266.Append(paragraphMarkRunProperties266);

            Run run277 = new Run();

            RunProperties runProperties277 = new RunProperties();
            FontSize fontSize355 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript355 = new FontSizeComplexScript() { Val = "20" };

            runProperties277.Append(fontSize355);
            runProperties277.Append(fontSizeComplexScript355);
            Text text167 = new Text();
            text167.Text = "Год";

            run277.Append(runProperties277);
            run277.Append(text167);

            paragraph266.Append(paragraphProperties266);
            paragraph266.Append(run277);

            tableCell199.Append(tableCellProperties199);
            tableCell199.Append(paragraph266);

            tableRow88.Append(tableRowProperties88);
            tableRow88.Append(tableCell186);
            tableRow88.Append(tableCell187);
            tableRow88.Append(tableCell188);
            tableRow88.Append(tableCell189);
            tableRow88.Append(tableCell190);
            tableRow88.Append(tableCell191);
            tableRow88.Append(tableCell192);
            tableRow88.Append(tableCell193);
            tableRow88.Append(tableCell194);
            tableRow88.Append(tableCell195);
            tableRow88.Append(tableCell196);
            tableRow88.Append(tableCell197);
            tableRow88.Append(tableCell198);
            tableRow88.Append(tableCell199);

            TableRow tableRow89 = new TableRow();
            TableRowProperties tableRowProperties89 = new TableRowProperties();

            TableCell tableCell200 = new TableCell();

            TableCellProperties tableCellProperties200 = new TableCellProperties();
            TableCellWidth tableCellWidth200 = new TableCellWidth() { Width = "1295", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan199 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders200 = new TableCellBorders();
            TopBorder topBorder83 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder72 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder60 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder55 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder60 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders200.Append(topBorder83);
            tableCellBorders200.Append(startBorder72);
            tableCellBorders200.Append(bottomBorder55);
            tableCellBorders200.Append(endBorder60);
            tableCellBorders200.Append(insideHorizontalBorder55);
            tableCellBorders200.Append(insideVerticalBorder60);
            Shading shading378 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin72 = new TableCellMargin();
            StartMargin startMargin73 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin72.Append(startMargin73);

            tableCellProperties200.Append(tableCellWidth200);
            tableCellProperties200.Append(gridSpan199);
            tableCellProperties200.Append(tableCellBorders200);
            tableCellProperties200.Append(shading378);
            tableCellProperties200.Append(tableCellMargin72);

            Paragraph paragraph267 = new Paragraph();

            ParagraphProperties paragraphProperties267 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId267 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties267 = new ParagraphMarkRunProperties();

            paragraphProperties267.Append(paragraphStyleId267);
            paragraphProperties267.Append(paragraphMarkRunProperties267);

            Run run278 = new Run();

            RunProperties runProperties278 = new RunProperties();
            FontSize fontSize356 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript356 = new FontSizeComplexScript() { Val = "20" };

            runProperties278.Append(fontSize356);
            runProperties278.Append(fontSizeComplexScript356);
            Text text168 = new Text();
            text168.Text = "г. Москва";

            run278.Append(runProperties278);
            run278.Append(text168);

            paragraph267.Append(paragraphProperties267);
            paragraph267.Append(run278);

            tableCell200.Append(tableCellProperties200);
            tableCell200.Append(paragraph267);

            TableCell tableCell201 = new TableCell();

            TableCellProperties tableCellProperties201 = new TableCellProperties();
            TableCellWidth tableCellWidth201 = new TableCellWidth() { Width = "491", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan200 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders201 = new TableCellBorders();
            TopBorder topBorder84 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder73 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder56 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders201.Append(topBorder84);
            tableCellBorders201.Append(startBorder73);
            tableCellBorders201.Append(bottomBorder56);
            tableCellBorders201.Append(insideHorizontalBorder56);
            Shading shading379 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin73 = new TableCellMargin();
            StartMargin startMargin74 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin73.Append(startMargin74);

            tableCellProperties201.Append(tableCellWidth201);
            tableCellProperties201.Append(gridSpan200);
            tableCellProperties201.Append(tableCellBorders201);
            tableCellProperties201.Append(shading379);
            tableCellProperties201.Append(tableCellMargin73);

            Paragraph paragraph268 = new Paragraph();

            ParagraphProperties paragraphProperties268 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId268 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties268 = new ParagraphMarkRunProperties();

            paragraphProperties268.Append(paragraphStyleId268);
            paragraphProperties268.Append(paragraphMarkRunProperties268);

            Run run279 = new Run();

            RunProperties runProperties279 = new RunProperties();
            FontSize fontSize357 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript357 = new FontSizeComplexScript() { Val = "20" };

            runProperties279.Append(fontSize357);
            runProperties279.Append(fontSizeComplexScript357);
            Text text169 = new Text();
            text169.Text = "-7,8";

            run279.Append(runProperties279);
            run279.Append(text169);

            paragraph268.Append(paragraphProperties268);
            paragraph268.Append(run279);

            tableCell201.Append(tableCellProperties201);
            tableCell201.Append(paragraph268);

            TableCell tableCell202 = new TableCell();

            TableCellProperties tableCellProperties202 = new TableCellProperties();
            TableCellWidth tableCellWidth202 = new TableCellWidth() { Width = "649", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan201 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders202 = new TableCellBorders();
            TopBorder topBorder85 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder74 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder57 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders202.Append(topBorder85);
            tableCellBorders202.Append(startBorder74);
            tableCellBorders202.Append(bottomBorder57);
            tableCellBorders202.Append(insideHorizontalBorder57);
            Shading shading380 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin74 = new TableCellMargin();
            StartMargin startMargin75 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin74.Append(startMargin75);

            tableCellProperties202.Append(tableCellWidth202);
            tableCellProperties202.Append(gridSpan201);
            tableCellProperties202.Append(tableCellBorders202);
            tableCellProperties202.Append(shading380);
            tableCellProperties202.Append(tableCellMargin74);

            Paragraph paragraph269 = new Paragraph();

            ParagraphProperties paragraphProperties269 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId269 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties269 = new ParagraphMarkRunProperties();

            paragraphProperties269.Append(paragraphStyleId269);
            paragraphProperties269.Append(paragraphMarkRunProperties269);

            Run run280 = new Run();

            RunProperties runProperties280 = new RunProperties();
            FontSize fontSize358 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript358 = new FontSizeComplexScript() { Val = "20" };

            runProperties280.Append(fontSize358);
            runProperties280.Append(fontSizeComplexScript358);
            Text text170 = new Text();
            text170.Text = "-7,1";

            run280.Append(runProperties280);
            run280.Append(text170);

            paragraph269.Append(paragraphProperties269);
            paragraph269.Append(run280);

            tableCell202.Append(tableCellProperties202);
            tableCell202.Append(paragraph269);

            TableCell tableCell203 = new TableCell();

            TableCellProperties tableCellProperties203 = new TableCellProperties();
            TableCellWidth tableCellWidth203 = new TableCellWidth() { Width = "686", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan202 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders203 = new TableCellBorders();
            TopBorder topBorder86 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder75 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder58 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders203.Append(topBorder86);
            tableCellBorders203.Append(startBorder75);
            tableCellBorders203.Append(bottomBorder58);
            tableCellBorders203.Append(insideHorizontalBorder58);
            Shading shading381 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin75 = new TableCellMargin();
            StartMargin startMargin76 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin75.Append(startMargin76);

            tableCellProperties203.Append(tableCellWidth203);
            tableCellProperties203.Append(gridSpan202);
            tableCellProperties203.Append(tableCellBorders203);
            tableCellProperties203.Append(shading381);
            tableCellProperties203.Append(tableCellMargin75);

            Paragraph paragraph270 = new Paragraph();

            ParagraphProperties paragraphProperties270 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId270 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties270 = new ParagraphMarkRunProperties();

            paragraphProperties270.Append(paragraphStyleId270);
            paragraphProperties270.Append(paragraphMarkRunProperties270);

            Run run281 = new Run();

            RunProperties runProperties281 = new RunProperties();
            FontSize fontSize359 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript359 = new FontSizeComplexScript() { Val = "20" };

            runProperties281.Append(fontSize359);
            runProperties281.Append(fontSizeComplexScript359);
            Text text171 = new Text();
            text171.Text = "-1,3";

            run281.Append(runProperties281);
            run281.Append(text171);

            paragraph270.Append(paragraphProperties270);
            paragraph270.Append(run281);

            tableCell203.Append(tableCellProperties203);
            tableCell203.Append(paragraph270);

            TableCell tableCell204 = new TableCell();

            TableCellProperties tableCellProperties204 = new TableCellProperties();
            TableCellWidth tableCellWidth204 = new TableCellWidth() { Width = "628", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan203 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders204 = new TableCellBorders();
            TopBorder topBorder87 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder76 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder59 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders204.Append(topBorder87);
            tableCellBorders204.Append(startBorder76);
            tableCellBorders204.Append(bottomBorder59);
            tableCellBorders204.Append(insideHorizontalBorder59);
            Shading shading382 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin76 = new TableCellMargin();
            StartMargin startMargin77 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin76.Append(startMargin77);

            tableCellProperties204.Append(tableCellWidth204);
            tableCellProperties204.Append(gridSpan203);
            tableCellProperties204.Append(tableCellBorders204);
            tableCellProperties204.Append(shading382);
            tableCellProperties204.Append(tableCellMargin76);

            Paragraph paragraph271 = new Paragraph();

            ParagraphProperties paragraphProperties271 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId271 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties271 = new ParagraphMarkRunProperties();

            paragraphProperties271.Append(paragraphStyleId271);
            paragraphProperties271.Append(paragraphMarkRunProperties271);

            Run run282 = new Run();

            RunProperties runProperties282 = new RunProperties();
            FontSize fontSize360 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript360 = new FontSizeComplexScript() { Val = "20" };

            runProperties282.Append(fontSize360);
            runProperties282.Append(fontSizeComplexScript360);
            Text text172 = new Text();
            text172.Text = "6,4";

            run282.Append(runProperties282);
            run282.Append(text172);

            paragraph271.Append(paragraphProperties271);
            paragraph271.Append(run282);

            tableCell204.Append(tableCellProperties204);
            tableCell204.Append(paragraph271);

            TableCell tableCell205 = new TableCell();

            TableCellProperties tableCellProperties205 = new TableCellProperties();
            TableCellWidth tableCellWidth205 = new TableCellWidth() { Width = "1016", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan204 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders205 = new TableCellBorders();
            TopBorder topBorder88 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder77 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder60 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders205.Append(topBorder88);
            tableCellBorders205.Append(startBorder77);
            tableCellBorders205.Append(bottomBorder60);
            tableCellBorders205.Append(insideHorizontalBorder60);
            Shading shading383 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin77 = new TableCellMargin();
            StartMargin startMargin78 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin77.Append(startMargin78);

            tableCellProperties205.Append(tableCellWidth205);
            tableCellProperties205.Append(gridSpan204);
            tableCellProperties205.Append(tableCellBorders205);
            tableCellProperties205.Append(shading383);
            tableCellProperties205.Append(tableCellMargin77);

            Paragraph paragraph272 = new Paragraph();

            ParagraphProperties paragraphProperties272 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId272 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties272 = new ParagraphMarkRunProperties();

            paragraphProperties272.Append(paragraphStyleId272);
            paragraphProperties272.Append(paragraphMarkRunProperties272);

            Run run283 = new Run();

            RunProperties runProperties283 = new RunProperties();
            FontSize fontSize361 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript361 = new FontSizeComplexScript() { Val = "20" };

            runProperties283.Append(fontSize361);
            runProperties283.Append(fontSizeComplexScript361);
            Text text173 = new Text();
            text173.Text = "13,0";

            run283.Append(runProperties283);
            run283.Append(text173);

            paragraph272.Append(paragraphProperties272);
            paragraph272.Append(run283);

            tableCell205.Append(tableCellProperties205);
            tableCell205.Append(paragraph272);

            TableCell tableCell206 = new TableCell();

            TableCellProperties tableCellProperties206 = new TableCellProperties();
            TableCellWidth tableCellWidth206 = new TableCellWidth() { Width = "326", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan205 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders206 = new TableCellBorders();
            TopBorder topBorder89 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder78 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder61 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders206.Append(topBorder89);
            tableCellBorders206.Append(startBorder78);
            tableCellBorders206.Append(bottomBorder61);
            tableCellBorders206.Append(insideHorizontalBorder61);
            Shading shading384 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin78 = new TableCellMargin();
            StartMargin startMargin79 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin78.Append(startMargin79);

            tableCellProperties206.Append(tableCellWidth206);
            tableCellProperties206.Append(gridSpan205);
            tableCellProperties206.Append(tableCellBorders206);
            tableCellProperties206.Append(shading384);
            tableCellProperties206.Append(tableCellMargin78);

            Paragraph paragraph273 = new Paragraph();

            ParagraphProperties paragraphProperties273 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId273 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties273 = new ParagraphMarkRunProperties();

            paragraphProperties273.Append(paragraphStyleId273);
            paragraphProperties273.Append(paragraphMarkRunProperties273);

            Run run284 = new Run();

            RunProperties runProperties284 = new RunProperties();
            FontSize fontSize362 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript362 = new FontSizeComplexScript() { Val = "20" };

            runProperties284.Append(fontSize362);
            runProperties284.Append(fontSizeComplexScript362);
            Text text174 = new Text();
            text174.Text = "16,9";

            run284.Append(runProperties284);
            run284.Append(text174);

            paragraph273.Append(paragraphProperties273);
            paragraph273.Append(run284);

            tableCell206.Append(tableCellProperties206);
            tableCell206.Append(paragraph273);

            TableCell tableCell207 = new TableCell();

            TableCellProperties tableCellProperties207 = new TableCellProperties();
            TableCellWidth tableCellWidth207 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan206 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders207 = new TableCellBorders();
            TopBorder topBorder90 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder79 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder62 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder62 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders207.Append(topBorder90);
            tableCellBorders207.Append(startBorder79);
            tableCellBorders207.Append(bottomBorder62);
            tableCellBorders207.Append(insideHorizontalBorder62);
            Shading shading385 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin79 = new TableCellMargin();
            StartMargin startMargin80 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin79.Append(startMargin80);

            tableCellProperties207.Append(tableCellWidth207);
            tableCellProperties207.Append(gridSpan206);
            tableCellProperties207.Append(tableCellBorders207);
            tableCellProperties207.Append(shading385);
            tableCellProperties207.Append(tableCellMargin79);

            Paragraph paragraph274 = new Paragraph();

            ParagraphProperties paragraphProperties274 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId274 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties274 = new ParagraphMarkRunProperties();

            paragraphProperties274.Append(paragraphStyleId274);
            paragraphProperties274.Append(paragraphMarkRunProperties274);

            Run run285 = new Run();

            RunProperties runProperties285 = new RunProperties();
            FontSize fontSize363 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript363 = new FontSizeComplexScript() { Val = "20" };

            runProperties285.Append(fontSize363);
            runProperties285.Append(fontSizeComplexScript363);
            Text text175 = new Text();
            text175.Text = "18,7";

            run285.Append(runProperties285);
            run285.Append(text175);

            paragraph274.Append(paragraphProperties274);
            paragraph274.Append(run285);

            tableCell207.Append(tableCellProperties207);
            tableCell207.Append(paragraph274);

            TableCell tableCell208 = new TableCell();

            TableCellProperties tableCellProperties208 = new TableCellProperties();
            TableCellWidth tableCellWidth208 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan207 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders208 = new TableCellBorders();
            TopBorder topBorder91 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder80 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder63 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder63 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders208.Append(topBorder91);
            tableCellBorders208.Append(startBorder80);
            tableCellBorders208.Append(bottomBorder63);
            tableCellBorders208.Append(insideHorizontalBorder63);
            Shading shading386 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin80 = new TableCellMargin();
            StartMargin startMargin81 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin80.Append(startMargin81);

            tableCellProperties208.Append(tableCellWidth208);
            tableCellProperties208.Append(gridSpan207);
            tableCellProperties208.Append(tableCellBorders208);
            tableCellProperties208.Append(shading386);
            tableCellProperties208.Append(tableCellMargin80);

            Paragraph paragraph275 = new Paragraph();

            ParagraphProperties paragraphProperties275 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId275 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties275 = new ParagraphMarkRunProperties();

            paragraphProperties275.Append(paragraphStyleId275);
            paragraphProperties275.Append(paragraphMarkRunProperties275);

            Run run286 = new Run();

            RunProperties runProperties286 = new RunProperties();
            FontSize fontSize364 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript364 = new FontSizeComplexScript() { Val = "20" };

            runProperties286.Append(fontSize364);
            runProperties286.Append(fontSizeComplexScript364);
            Text text176 = new Text();
            text176.Text = "16,8";

            run286.Append(runProperties286);
            run286.Append(text176);

            paragraph275.Append(paragraphProperties275);
            paragraph275.Append(run286);

            tableCell208.Append(tableCellProperties208);
            tableCell208.Append(paragraph275);

            TableCell tableCell209 = new TableCell();

            TableCellProperties tableCellProperties209 = new TableCellProperties();
            TableCellWidth tableCellWidth209 = new TableCellWidth() { Width = "663", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan208 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders209 = new TableCellBorders();
            TopBorder topBorder92 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder81 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder64 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder64 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders209.Append(topBorder92);
            tableCellBorders209.Append(startBorder81);
            tableCellBorders209.Append(bottomBorder64);
            tableCellBorders209.Append(insideHorizontalBorder64);
            Shading shading387 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin81 = new TableCellMargin();
            StartMargin startMargin82 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin81.Append(startMargin82);

            tableCellProperties209.Append(tableCellWidth209);
            tableCellProperties209.Append(gridSpan208);
            tableCellProperties209.Append(tableCellBorders209);
            tableCellProperties209.Append(shading387);
            tableCellProperties209.Append(tableCellMargin81);

            Paragraph paragraph276 = new Paragraph();

            ParagraphProperties paragraphProperties276 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId276 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties276 = new ParagraphMarkRunProperties();

            paragraphProperties276.Append(paragraphStyleId276);
            paragraphProperties276.Append(paragraphMarkRunProperties276);

            Run run287 = new Run();

            RunProperties runProperties287 = new RunProperties();
            FontSize fontSize365 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript365 = new FontSizeComplexScript() { Val = "20" };

            runProperties287.Append(fontSize365);
            runProperties287.Append(fontSizeComplexScript365);
            Text text177 = new Text();
            text177.Text = "11,1";

            run287.Append(runProperties287);
            run287.Append(text177);

            paragraph276.Append(paragraphProperties276);
            paragraph276.Append(run287);

            tableCell209.Append(tableCellProperties209);
            tableCell209.Append(paragraph276);

            TableCell tableCell210 = new TableCell();

            TableCellProperties tableCellProperties210 = new TableCellProperties();
            TableCellWidth tableCellWidth210 = new TableCellWidth() { Width = "642", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan209 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders210 = new TableCellBorders();
            TopBorder topBorder93 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder82 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder65 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder65 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders210.Append(topBorder93);
            tableCellBorders210.Append(startBorder82);
            tableCellBorders210.Append(bottomBorder65);
            tableCellBorders210.Append(insideHorizontalBorder65);
            Shading shading388 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin82 = new TableCellMargin();
            StartMargin startMargin83 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin82.Append(startMargin83);

            tableCellProperties210.Append(tableCellWidth210);
            tableCellProperties210.Append(gridSpan209);
            tableCellProperties210.Append(tableCellBorders210);
            tableCellProperties210.Append(shading388);
            tableCellProperties210.Append(tableCellMargin82);

            Paragraph paragraph277 = new Paragraph();

            ParagraphProperties paragraphProperties277 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId277 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties277 = new ParagraphMarkRunProperties();

            paragraphProperties277.Append(paragraphStyleId277);
            paragraphProperties277.Append(paragraphMarkRunProperties277);

            Run run288 = new Run();

            RunProperties runProperties288 = new RunProperties();
            FontSize fontSize366 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript366 = new FontSizeComplexScript() { Val = "20" };

            runProperties288.Append(fontSize366);
            runProperties288.Append(fontSizeComplexScript366);
            Text text178 = new Text();
            text178.Text = "5,2";

            run288.Append(runProperties288);
            run288.Append(text178);

            paragraph277.Append(paragraphProperties277);
            paragraph277.Append(run288);

            tableCell210.Append(tableCellProperties210);
            tableCell210.Append(paragraph277);

            TableCell tableCell211 = new TableCell();

            TableCellProperties tableCellProperties211 = new TableCellProperties();
            TableCellWidth tableCellWidth211 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan210 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders211 = new TableCellBorders();
            TopBorder topBorder94 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder83 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder66 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder66 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders211.Append(topBorder94);
            tableCellBorders211.Append(startBorder83);
            tableCellBorders211.Append(bottomBorder66);
            tableCellBorders211.Append(insideHorizontalBorder66);
            Shading shading389 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin83 = new TableCellMargin();
            StartMargin startMargin84 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin83.Append(startMargin84);

            tableCellProperties211.Append(tableCellWidth211);
            tableCellProperties211.Append(gridSpan210);
            tableCellProperties211.Append(tableCellBorders211);
            tableCellProperties211.Append(shading389);
            tableCellProperties211.Append(tableCellMargin83);

            Paragraph paragraph278 = new Paragraph();

            ParagraphProperties paragraphProperties278 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId278 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties278 = new ParagraphMarkRunProperties();

            paragraphProperties278.Append(paragraphStyleId278);
            paragraphProperties278.Append(paragraphMarkRunProperties278);

            Run run289 = new Run();

            RunProperties runProperties289 = new RunProperties();
            FontSize fontSize367 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript367 = new FontSizeComplexScript() { Val = "20" };

            runProperties289.Append(fontSize367);
            runProperties289.Append(fontSizeComplexScript367);
            Text text179 = new Text();
            text179.Text = "-1,1";

            run289.Append(runProperties289);
            run289.Append(text179);

            paragraph278.Append(paragraphProperties278);
            paragraph278.Append(run289);

            tableCell211.Append(tableCellProperties211);
            tableCell211.Append(paragraph278);

            TableCell tableCell212 = new TableCell();

            TableCellProperties tableCellProperties212 = new TableCellProperties();
            TableCellWidth tableCellWidth212 = new TableCellWidth() { Width = "654", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan211 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders212 = new TableCellBorders();
            TopBorder topBorder95 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder84 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder67 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder67 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders212.Append(topBorder95);
            tableCellBorders212.Append(startBorder84);
            tableCellBorders212.Append(bottomBorder67);
            tableCellBorders212.Append(insideHorizontalBorder67);
            Shading shading390 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin84 = new TableCellMargin();
            StartMargin startMargin85 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin84.Append(startMargin85);

            tableCellProperties212.Append(tableCellWidth212);
            tableCellProperties212.Append(gridSpan211);
            tableCellProperties212.Append(tableCellBorders212);
            tableCellProperties212.Append(shading390);
            tableCellProperties212.Append(tableCellMargin84);

            Paragraph paragraph279 = new Paragraph();

            ParagraphProperties paragraphProperties279 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId279 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties279 = new ParagraphMarkRunProperties();

            paragraphProperties279.Append(paragraphStyleId279);
            paragraphProperties279.Append(paragraphMarkRunProperties279);

            Run run290 = new Run();

            RunProperties runProperties290 = new RunProperties();
            FontSize fontSize368 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript368 = new FontSizeComplexScript() { Val = "20" };

            runProperties290.Append(fontSize368);
            runProperties290.Append(fontSizeComplexScript368);
            Text text180 = new Text();
            text180.Text = "-5,6";

            run290.Append(runProperties290);
            run290.Append(text180);

            paragraph279.Append(paragraphProperties279);
            paragraph279.Append(run290);

            tableCell212.Append(tableCellProperties212);
            tableCell212.Append(paragraph279);

            TableCell tableCell213 = new TableCell();

            TableCellProperties tableCellProperties213 = new TableCellProperties();
            TableCellWidth tableCellWidth213 = new TableCellWidth() { Width = "653", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders213 = new TableCellBorders();
            TopBorder topBorder96 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder85 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder68 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder61 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder68 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder61 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders213.Append(topBorder96);
            tableCellBorders213.Append(startBorder85);
            tableCellBorders213.Append(bottomBorder68);
            tableCellBorders213.Append(endBorder61);
            tableCellBorders213.Append(insideHorizontalBorder68);
            tableCellBorders213.Append(insideVerticalBorder61);
            Shading shading391 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin85 = new TableCellMargin();
            StartMargin startMargin86 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin85.Append(startMargin86);

            tableCellProperties213.Append(tableCellWidth213);
            tableCellProperties213.Append(tableCellBorders213);
            tableCellProperties213.Append(shading391);
            tableCellProperties213.Append(tableCellMargin85);

            Paragraph paragraph280 = new Paragraph();

            ParagraphProperties paragraphProperties280 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId280 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties280 = new ParagraphMarkRunProperties();

            paragraphProperties280.Append(paragraphStyleId280);
            paragraphProperties280.Append(paragraphMarkRunProperties280);

            Run run291 = new Run();

            RunProperties runProperties291 = new RunProperties();
            FontSize fontSize369 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript369 = new FontSizeComplexScript() { Val = "20" };

            runProperties291.Append(fontSize369);
            runProperties291.Append(fontSizeComplexScript369);
            Text text181 = new Text();
            text181.Text = "5,4";

            run291.Append(runProperties291);
            run291.Append(text181);

            paragraph280.Append(paragraphProperties280);
            paragraph280.Append(run291);

            tableCell213.Append(tableCellProperties213);
            tableCell213.Append(paragraph280);

            tableRow89.Append(tableRowProperties89);
            tableRow89.Append(tableCell200);
            tableRow89.Append(tableCell201);
            tableRow89.Append(tableCell202);
            tableRow89.Append(tableCell203);
            tableRow89.Append(tableCell204);
            tableRow89.Append(tableCell205);
            tableRow89.Append(tableCell206);
            tableRow89.Append(tableCell207);
            tableRow89.Append(tableCell208);
            tableRow89.Append(tableCell209);
            tableRow89.Append(tableCell210);
            tableRow89.Append(tableCell211);
            tableRow89.Append(tableCell212);
            tableRow89.Append(tableCell213);

            TableRow tableRow90 = new TableRow();
            TableRowProperties tableRowProperties90 = new TableRowProperties();

            TableCell tableCell214 = new TableCell();

            TableCellProperties tableCellProperties214 = new TableCellProperties();
            TableCellWidth tableCellWidth214 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan212 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders214 = new TableCellBorders();
            TopBorder topBorder97 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder69 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder69 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders214.Append(topBorder97);
            tableCellBorders214.Append(bottomBorder69);
            tableCellBorders214.Append(insideHorizontalBorder69);
            Shading shading392 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties214.Append(tableCellWidth214);
            tableCellProperties214.Append(gridSpan212);
            tableCellProperties214.Append(tableCellBorders214);
            tableCellProperties214.Append(shading392);

            Paragraph paragraph281 = new Paragraph();

            ParagraphProperties paragraphProperties281 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId281 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties281 = new ParagraphMarkRunProperties();
            FontSize fontSize370 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript370 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties281.Append(fontSize370);
            paragraphMarkRunProperties281.Append(fontSizeComplexScript370);

            paragraphProperties281.Append(paragraphStyleId281);
            paragraphProperties281.Append(paragraphMarkRunProperties281);

            Run run292 = new Run();

            RunProperties runProperties292 = new RunProperties();
            FontSize fontSize371 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript371 = new FontSizeComplexScript() { Val = "26" };

            runProperties292.Append(fontSize371);
            runProperties292.Append(fontSizeComplexScript371);

            run292.Append(runProperties292);

            paragraph281.Append(paragraphProperties281);
            paragraph281.Append(run292);

            Paragraph paragraph282 = new Paragraph();

            ParagraphProperties paragraphProperties282 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId282 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties282 = new ParagraphMarkRunProperties();

            paragraphProperties282.Append(paragraphStyleId282);
            paragraphProperties282.Append(paragraphMarkRunProperties282);

            Run run293 = new Run();

            RunProperties runProperties293 = new RunProperties();
            FontSize fontSize372 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript372 = new FontSizeComplexScript() { Val = "26" };

            runProperties293.Append(fontSize372);
            runProperties293.Append(fontSizeComplexScript372);
            Text text182 = new Text();
            text182.Text = "Климатические параметры холодного периода года по СП 131.13330.2012.";

            run293.Append(runProperties293);
            run293.Append(text182);

            paragraph282.Append(paragraphProperties282);
            paragraph282.Append(run293);

            tableCell214.Append(tableCellProperties214);
            tableCell214.Append(paragraph281);
            tableCell214.Append(paragraph282);

            tableRow90.Append(tableRowProperties90);
            tableRow90.Append(tableCell214);

            TableRow tableRow91 = new TableRow();
            TableRowProperties tableRowProperties91 = new TableRowProperties();

            TableCell tableCell215 = new TableCell();

            TableCellProperties tableCellProperties215 = new TableCellProperties();
            TableCellWidth tableCellWidth215 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan213 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge19 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders215 = new TableCellBorders();
            TopBorder topBorder98 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder86 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder62 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder62 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders215.Append(topBorder98);
            tableCellBorders215.Append(startBorder86);
            tableCellBorders215.Append(endBorder62);
            tableCellBorders215.Append(insideVerticalBorder62);
            Shading shading393 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin86 = new TableCellMargin();
            StartMargin startMargin87 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin86.Append(startMargin87);

            tableCellProperties215.Append(tableCellWidth215);
            tableCellProperties215.Append(gridSpan213);
            tableCellProperties215.Append(verticalMerge19);
            tableCellProperties215.Append(tableCellBorders215);
            tableCellProperties215.Append(shading393);
            tableCellProperties215.Append(tableCellMargin86);

            Paragraph paragraph283 = new Paragraph();

            ParagraphProperties paragraphProperties283 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId283 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification149 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties283 = new ParagraphMarkRunProperties();

            paragraphProperties283.Append(paragraphStyleId283);
            paragraphProperties283.Append(justification149);
            paragraphProperties283.Append(paragraphMarkRunProperties283);

            Run run294 = new Run();

            RunProperties runProperties294 = new RunProperties();
            FontSize fontSize373 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript373 = new FontSizeComplexScript() { Val = "20" };

            runProperties294.Append(fontSize373);
            runProperties294.Append(fontSizeComplexScript373);
            Text text183 = new Text();
            text183.Text = "Республика, край, область, пункт";

            run294.Append(runProperties294);
            run294.Append(text183);

            paragraph283.Append(paragraphProperties283);
            paragraph283.Append(run294);

            Paragraph paragraph284 = new Paragraph();

            ParagraphProperties paragraphProperties284 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId284 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification150 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties284 = new ParagraphMarkRunProperties();
            FontSize fontSize374 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript374 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties284.Append(fontSize374);
            paragraphMarkRunProperties284.Append(fontSizeComplexScript374);

            paragraphProperties284.Append(paragraphStyleId284);
            paragraphProperties284.Append(justification150);
            paragraphProperties284.Append(paragraphMarkRunProperties284);

            Run run295 = new Run();

            RunProperties runProperties295 = new RunProperties();
            FontSize fontSize375 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript375 = new FontSizeComplexScript() { Val = "20" };

            runProperties295.Append(fontSize375);
            runProperties295.Append(fontSizeComplexScript375);

            run295.Append(runProperties295);

            paragraph284.Append(paragraphProperties284);
            paragraph284.Append(run295);

            tableCell215.Append(tableCellProperties215);
            tableCell215.Append(paragraph283);
            tableCell215.Append(paragraph284);

            TableCell tableCell216 = new TableCell();

            TableCellProperties tableCellProperties216 = new TableCellProperties();
            TableCellWidth tableCellWidth216 = new TableCellWidth() { Width = "1245", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan214 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders216 = new TableCellBorders();
            TopBorder topBorder99 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder87 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder70 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder70 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders216.Append(topBorder99);
            tableCellBorders216.Append(startBorder87);
            tableCellBorders216.Append(bottomBorder70);
            tableCellBorders216.Append(insideHorizontalBorder70);
            Shading shading394 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin87 = new TableCellMargin();
            StartMargin startMargin88 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin87.Append(startMargin88);

            tableCellProperties216.Append(tableCellWidth216);
            tableCellProperties216.Append(gridSpan214);
            tableCellProperties216.Append(tableCellBorders216);
            tableCellProperties216.Append(shading394);
            tableCellProperties216.Append(tableCellMargin87);

            Paragraph paragraph285 = new Paragraph();

            ParagraphProperties paragraphProperties285 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId285 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification151 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties285 = new ParagraphMarkRunProperties();

            paragraphProperties285.Append(paragraphStyleId285);
            paragraphProperties285.Append(justification151);
            paragraphProperties285.Append(paragraphMarkRunProperties285);

            Run run296 = new Run();

            RunProperties runProperties296 = new RunProperties();
            FontSize fontSize376 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript376 = new FontSizeComplexScript() { Val = "20" };

            runProperties296.Append(fontSize376);
            runProperties296.Append(fontSizeComplexScript376);
            Text text184 = new Text();
            text184.Text = "Температура воздуха наиболее холодных суток, °С, обеспеченностью";

            run296.Append(runProperties296);
            run296.Append(text184);

            paragraph285.Append(paragraphProperties285);
            paragraph285.Append(run296);

            tableCell216.Append(tableCellProperties216);
            tableCell216.Append(paragraph285);

            TableCell tableCell217 = new TableCell();

            TableCellProperties tableCellProperties217 = new TableCellProperties();
            TableCellWidth tableCellWidth217 = new TableCellWidth() { Width = "1363", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan215 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders217 = new TableCellBorders();
            TopBorder topBorder100 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder88 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder71 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder71 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders217.Append(topBorder100);
            tableCellBorders217.Append(startBorder88);
            tableCellBorders217.Append(bottomBorder71);
            tableCellBorders217.Append(insideHorizontalBorder71);
            Shading shading395 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin88 = new TableCellMargin();
            StartMargin startMargin89 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin88.Append(startMargin89);

            tableCellProperties217.Append(tableCellWidth217);
            tableCellProperties217.Append(gridSpan215);
            tableCellProperties217.Append(tableCellBorders217);
            tableCellProperties217.Append(shading395);
            tableCellProperties217.Append(tableCellMargin88);

            Paragraph paragraph286 = new Paragraph();

            ParagraphProperties paragraphProperties286 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId286 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification152 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties286 = new ParagraphMarkRunProperties();

            paragraphProperties286.Append(paragraphStyleId286);
            paragraphProperties286.Append(justification152);
            paragraphProperties286.Append(paragraphMarkRunProperties286);

            Run run297 = new Run();

            RunProperties runProperties297 = new RunProperties();
            FontSize fontSize377 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript377 = new FontSizeComplexScript() { Val = "20" };

            runProperties297.Append(fontSize377);
            runProperties297.Append(fontSizeComplexScript377);
            Text text185 = new Text();
            text185.Text = "Температура воздуха наиболее холодной пятидневки, °С, обеспеченностью";

            run297.Append(runProperties297);
            run297.Append(text185);

            paragraph286.Append(paragraphProperties286);
            paragraph286.Append(run297);

            tableCell217.Append(tableCellProperties217);
            tableCell217.Append(paragraph286);

            TableCell tableCell218 = new TableCell();

            TableCellProperties tableCellProperties218 = new TableCellProperties();
            TableCellWidth tableCellWidth218 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan216 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders218 = new TableCellBorders();
            TopBorder topBorder101 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder89 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder72 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder72 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders218.Append(topBorder101);
            tableCellBorders218.Append(startBorder89);
            tableCellBorders218.Append(bottomBorder72);
            tableCellBorders218.Append(insideHorizontalBorder72);
            Shading shading396 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin89 = new TableCellMargin();
            StartMargin startMargin90 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin89.Append(startMargin90);

            tableCellProperties218.Append(tableCellWidth218);
            tableCellProperties218.Append(gridSpan216);
            tableCellProperties218.Append(tableCellBorders218);
            tableCellProperties218.Append(shading396);
            tableCellProperties218.Append(tableCellMargin89);

            Paragraph paragraph287 = new Paragraph();

            ParagraphProperties paragraphProperties287 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId287 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification153 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties287 = new ParagraphMarkRunProperties();

            paragraphProperties287.Append(paragraphStyleId287);
            paragraphProperties287.Append(justification153);
            paragraphProperties287.Append(paragraphMarkRunProperties287);

            Run run298 = new Run();

            RunProperties runProperties298 = new RunProperties();
            FontSize fontSize378 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript378 = new FontSizeComplexScript() { Val = "20" };

            runProperties298.Append(fontSize378);
            runProperties298.Append(fontSizeComplexScript378);
            Text text186 = new Text();
            text186.Text = "Температура воздуха, °С, обеспеченностью 0,94";

            run298.Append(runProperties298);
            run298.Append(text186);

            paragraph287.Append(paragraphProperties287);
            paragraph287.Append(run298);

            tableCell218.Append(tableCellProperties218);
            tableCell218.Append(paragraph287);

            TableCell tableCell219 = new TableCell();

            TableCellProperties tableCellProperties219 = new TableCellProperties();
            TableCellWidth tableCellWidth219 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan217 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders219 = new TableCellBorders();
            TopBorder topBorder102 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder90 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder73 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder73 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders219.Append(topBorder102);
            tableCellBorders219.Append(startBorder90);
            tableCellBorders219.Append(bottomBorder73);
            tableCellBorders219.Append(insideHorizontalBorder73);
            Shading shading397 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin90 = new TableCellMargin();
            StartMargin startMargin91 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin90.Append(startMargin91);

            tableCellProperties219.Append(tableCellWidth219);
            tableCellProperties219.Append(gridSpan217);
            tableCellProperties219.Append(tableCellBorders219);
            tableCellProperties219.Append(shading397);
            tableCellProperties219.Append(tableCellMargin90);

            Paragraph paragraph288 = new Paragraph();

            ParagraphProperties paragraphProperties288 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId288 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification154 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties288 = new ParagraphMarkRunProperties();

            paragraphProperties288.Append(paragraphStyleId288);
            paragraphProperties288.Append(justification154);
            paragraphProperties288.Append(paragraphMarkRunProperties288);

            Run run299 = new Run();

            RunProperties runProperties299 = new RunProperties();
            FontSize fontSize379 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript379 = new FontSizeComplexScript() { Val = "20" };

            runProperties299.Append(fontSize379);
            runProperties299.Append(fontSizeComplexScript379);
            Text text187 = new Text();
            text187.Text = "Абсолютная минимальная температура воздуха, °С";

            run299.Append(runProperties299);
            run299.Append(text187);

            paragraph288.Append(paragraphProperties288);
            paragraph288.Append(run299);

            tableCell219.Append(tableCellProperties219);
            tableCell219.Append(paragraph288);

            TableCell tableCell220 = new TableCell();

            TableCellProperties tableCellProperties220 = new TableCellProperties();
            TableCellWidth tableCellWidth220 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan218 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders220 = new TableCellBorders();
            TopBorder topBorder103 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder91 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder74 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder74 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders220.Append(topBorder103);
            tableCellBorders220.Append(startBorder91);
            tableCellBorders220.Append(bottomBorder74);
            tableCellBorders220.Append(insideHorizontalBorder74);
            Shading shading398 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin91 = new TableCellMargin();
            StartMargin startMargin92 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin91.Append(startMargin92);

            tableCellProperties220.Append(tableCellWidth220);
            tableCellProperties220.Append(gridSpan218);
            tableCellProperties220.Append(tableCellBorders220);
            tableCellProperties220.Append(shading398);
            tableCellProperties220.Append(tableCellMargin91);

            Paragraph paragraph289 = new Paragraph();

            ParagraphProperties paragraphProperties289 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId289 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification155 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties289 = new ParagraphMarkRunProperties();

            paragraphProperties289.Append(paragraphStyleId289);
            paragraphProperties289.Append(justification155);
            paragraphProperties289.Append(paragraphMarkRunProperties289);

            Run run300 = new Run();

            RunProperties runProperties300 = new RunProperties();
            FontSize fontSize380 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript380 = new FontSizeComplexScript() { Val = "20" };

            runProperties300.Append(fontSize380);
            runProperties300.Append(fontSizeComplexScript380);
            Text text188 = new Text();
            text188.Text = "Средняя суточная амплитуда температуры воздуха наиболее холодного месяца, °%";

            run300.Append(runProperties300);
            run300.Append(text188);

            paragraph289.Append(paragraphProperties289);
            paragraph289.Append(run300);

            tableCell220.Append(tableCellProperties220);
            tableCell220.Append(paragraph289);

            TableCell tableCell221 = new TableCell();

            TableCellProperties tableCellProperties221 = new TableCellProperties();
            TableCellWidth tableCellWidth221 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan219 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders221 = new TableCellBorders();
            TopBorder topBorder104 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder92 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder75 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder75 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders221.Append(topBorder104);
            tableCellBorders221.Append(startBorder92);
            tableCellBorders221.Append(bottomBorder75);
            tableCellBorders221.Append(insideHorizontalBorder75);
            Shading shading399 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin92 = new TableCellMargin();
            StartMargin startMargin93 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin92.Append(startMargin93);

            tableCellProperties221.Append(tableCellWidth221);
            tableCellProperties221.Append(gridSpan219);
            tableCellProperties221.Append(tableCellBorders221);
            tableCellProperties221.Append(shading399);
            tableCellProperties221.Append(tableCellMargin92);

            Paragraph paragraph290 = new Paragraph();

            ParagraphProperties paragraphProperties290 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId290 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification156 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties290 = new ParagraphMarkRunProperties();

            paragraphProperties290.Append(paragraphStyleId290);
            paragraphProperties290.Append(justification156);
            paragraphProperties290.Append(paragraphMarkRunProperties290);

            Run run301 = new Run();

            RunProperties runProperties301 = new RunProperties();
            FontSize fontSize381 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript381 = new FontSizeComplexScript() { Val = "20" };

            runProperties301.Append(fontSize381);
            runProperties301.Append(fontSizeComplexScript381);
            Text text189 = new Text();
            text189.Text = "Средняя месячная относительная влажность воздуха наиболее холодного месяца, %";

            run301.Append(runProperties301);
            run301.Append(text189);

            paragraph290.Append(paragraphProperties290);
            paragraph290.Append(run301);

            tableCell221.Append(tableCellProperties221);
            tableCell221.Append(paragraph290);

            TableCell tableCell222 = new TableCell();

            TableCellProperties tableCellProperties222 = new TableCellProperties();
            TableCellWidth tableCellWidth222 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan220 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders222 = new TableCellBorders();
            TopBorder topBorder105 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder93 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder63 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder63 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders222.Append(topBorder105);
            tableCellBorders222.Append(startBorder93);
            tableCellBorders222.Append(endBorder63);
            tableCellBorders222.Append(insideVerticalBorder63);
            Shading shading400 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin93 = new TableCellMargin();
            StartMargin startMargin94 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin93.Append(startMargin94);

            tableCellProperties222.Append(tableCellWidth222);
            tableCellProperties222.Append(gridSpan220);
            tableCellProperties222.Append(tableCellBorders222);
            tableCellProperties222.Append(shading400);
            tableCellProperties222.Append(tableCellMargin93);

            Paragraph paragraph291 = new Paragraph();

            ParagraphProperties paragraphProperties291 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId291 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification157 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties291 = new ParagraphMarkRunProperties();

            paragraphProperties291.Append(paragraphStyleId291);
            paragraphProperties291.Append(justification157);
            paragraphProperties291.Append(paragraphMarkRunProperties291);

            Run run302 = new Run();

            RunProperties runProperties302 = new RunProperties();
            FontSize fontSize382 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript382 = new FontSizeComplexScript() { Val = "20" };

            runProperties302.Append(fontSize382);
            runProperties302.Append(fontSizeComplexScript382);
            Text text190 = new Text();
            text190.Text = "Средняя месячная относительная влажность воздуха в 15 ч. наиболее холодного месяца, %";

            run302.Append(runProperties302);
            run302.Append(text190);

            paragraph291.Append(paragraphProperties291);
            paragraph291.Append(run302);

            tableCell222.Append(tableCellProperties222);
            tableCell222.Append(paragraph291);

            tableRow91.Append(tableRowProperties91);
            tableRow91.Append(tableCell215);
            tableRow91.Append(tableCell216);
            tableRow91.Append(tableCell217);
            tableRow91.Append(tableCell218);
            tableRow91.Append(tableCell219);
            tableRow91.Append(tableCell220);
            tableRow91.Append(tableCell221);
            tableRow91.Append(tableCell222);

            TableRow tableRow92 = new TableRow();
            TableRowProperties tableRowProperties92 = new TableRowProperties();

            TableCell tableCell223 = new TableCell();

            TableCellProperties tableCellProperties223 = new TableCellProperties();
            TableCellWidth tableCellWidth223 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan221 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge20 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders223 = new TableCellBorders();
            TopBorder topBorder106 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder94 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder76 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder64 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder76 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder64 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders223.Append(topBorder106);
            tableCellBorders223.Append(startBorder94);
            tableCellBorders223.Append(bottomBorder76);
            tableCellBorders223.Append(endBorder64);
            tableCellBorders223.Append(insideHorizontalBorder76);
            tableCellBorders223.Append(insideVerticalBorder64);
            Shading shading401 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin94 = new TableCellMargin();
            StartMargin startMargin95 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin94.Append(startMargin95);

            tableCellProperties223.Append(tableCellWidth223);
            tableCellProperties223.Append(gridSpan221);
            tableCellProperties223.Append(verticalMerge20);
            tableCellProperties223.Append(tableCellBorders223);
            tableCellProperties223.Append(shading401);
            tableCellProperties223.Append(tableCellMargin94);

            Paragraph paragraph292 = new Paragraph();

            ParagraphProperties paragraphProperties292 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId292 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification158 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties292 = new ParagraphMarkRunProperties();
            FontSize fontSize383 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript383 = new FontSizeComplexScript() { Val = "20" };
            Shading shading402 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties292.Append(fontSize383);
            paragraphMarkRunProperties292.Append(fontSizeComplexScript383);
            paragraphMarkRunProperties292.Append(shading402);

            paragraphProperties292.Append(paragraphStyleId292);
            paragraphProperties292.Append(justification158);
            paragraphProperties292.Append(paragraphMarkRunProperties292);

            Run run303 = new Run();

            RunProperties runProperties303 = new RunProperties();
            FontSize fontSize384 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript384 = new FontSizeComplexScript() { Val = "20" };
            Shading shading403 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties303.Append(fontSize384);
            runProperties303.Append(fontSizeComplexScript384);
            runProperties303.Append(shading403);

            run303.Append(runProperties303);

            paragraph292.Append(paragraphProperties292);
            paragraph292.Append(run303);

            tableCell223.Append(tableCellProperties223);
            tableCell223.Append(paragraph292);

            TableCell tableCell224 = new TableCell();

            TableCellProperties tableCellProperties224 = new TableCellProperties();
            TableCellWidth tableCellWidth224 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan222 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders224 = new TableCellBorders();
            TopBorder topBorder107 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder95 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder77 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder77 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders224.Append(topBorder107);
            tableCellBorders224.Append(startBorder95);
            tableCellBorders224.Append(bottomBorder77);
            tableCellBorders224.Append(insideHorizontalBorder77);
            Shading shading404 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin95 = new TableCellMargin();
            StartMargin startMargin96 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin95.Append(startMargin96);

            tableCellProperties224.Append(tableCellWidth224);
            tableCellProperties224.Append(gridSpan222);
            tableCellProperties224.Append(tableCellBorders224);
            tableCellProperties224.Append(shading404);
            tableCellProperties224.Append(tableCellMargin95);

            Paragraph paragraph293 = new Paragraph();

            ParagraphProperties paragraphProperties293 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId293 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification159 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties293 = new ParagraphMarkRunProperties();

            paragraphProperties293.Append(paragraphStyleId293);
            paragraphProperties293.Append(justification159);
            paragraphProperties293.Append(paragraphMarkRunProperties293);

            Run run304 = new Run();

            RunProperties runProperties304 = new RunProperties();
            FontSize fontSize385 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript385 = new FontSizeComplexScript() { Val = "20" };

            runProperties304.Append(fontSize385);
            runProperties304.Append(fontSizeComplexScript385);
            Text text191 = new Text();
            text191.Text = "0,98";

            run304.Append(runProperties304);
            run304.Append(text191);

            paragraph293.Append(paragraphProperties293);
            paragraph293.Append(run304);

            tableCell224.Append(tableCellProperties224);
            tableCell224.Append(paragraph293);

            TableCell tableCell225 = new TableCell();

            TableCellProperties tableCellProperties225 = new TableCellProperties();
            TableCellWidth tableCellWidth225 = new TableCellWidth() { Width = "627", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan223 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders225 = new TableCellBorders();
            TopBorder topBorder108 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder96 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder78 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder78 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders225.Append(topBorder108);
            tableCellBorders225.Append(startBorder96);
            tableCellBorders225.Append(bottomBorder78);
            tableCellBorders225.Append(insideHorizontalBorder78);
            Shading shading405 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin96 = new TableCellMargin();
            StartMargin startMargin97 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin96.Append(startMargin97);

            tableCellProperties225.Append(tableCellWidth225);
            tableCellProperties225.Append(gridSpan223);
            tableCellProperties225.Append(tableCellBorders225);
            tableCellProperties225.Append(shading405);
            tableCellProperties225.Append(tableCellMargin96);

            Paragraph paragraph294 = new Paragraph();

            ParagraphProperties paragraphProperties294 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId294 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification160 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties294 = new ParagraphMarkRunProperties();

            paragraphProperties294.Append(paragraphStyleId294);
            paragraphProperties294.Append(justification160);
            paragraphProperties294.Append(paragraphMarkRunProperties294);

            Run run305 = new Run();

            RunProperties runProperties305 = new RunProperties();
            FontSize fontSize386 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript386 = new FontSizeComplexScript() { Val = "20" };

            runProperties305.Append(fontSize386);
            runProperties305.Append(fontSizeComplexScript386);
            Text text192 = new Text();
            text192.Text = "0,92";

            run305.Append(runProperties305);
            run305.Append(text192);

            paragraph294.Append(paragraphProperties294);
            paragraph294.Append(run305);

            tableCell225.Append(tableCellProperties225);
            tableCell225.Append(paragraph294);

            TableCell tableCell226 = new TableCell();

            TableCellProperties tableCellProperties226 = new TableCellProperties();
            TableCellWidth tableCellWidth226 = new TableCellWidth() { Width = "687", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan224 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders226 = new TableCellBorders();
            TopBorder topBorder109 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder97 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder79 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder79 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders226.Append(topBorder109);
            tableCellBorders226.Append(startBorder97);
            tableCellBorders226.Append(bottomBorder79);
            tableCellBorders226.Append(insideHorizontalBorder79);
            Shading shading406 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin97 = new TableCellMargin();
            StartMargin startMargin98 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin97.Append(startMargin98);

            tableCellProperties226.Append(tableCellWidth226);
            tableCellProperties226.Append(gridSpan224);
            tableCellProperties226.Append(tableCellBorders226);
            tableCellProperties226.Append(shading406);
            tableCellProperties226.Append(tableCellMargin97);

            Paragraph paragraph295 = new Paragraph();

            ParagraphProperties paragraphProperties295 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId295 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification161 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties295 = new ParagraphMarkRunProperties();

            paragraphProperties295.Append(paragraphStyleId295);
            paragraphProperties295.Append(justification161);
            paragraphProperties295.Append(paragraphMarkRunProperties295);

            Run run306 = new Run();

            RunProperties runProperties306 = new RunProperties();
            FontSize fontSize387 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript387 = new FontSizeComplexScript() { Val = "20" };
            Languages languages3 = new Languages() { Val = "en-US" };

            runProperties306.Append(fontSize387);
            runProperties306.Append(fontSizeComplexScript387);
            runProperties306.Append(languages3);
            Text text193 = new Text();
            text193.Text = "0,";

            run306.Append(runProperties306);
            run306.Append(text193);

            Run run307 = new Run();

            RunProperties runProperties307 = new RunProperties();
            FontSize fontSize388 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript388 = new FontSizeComplexScript() { Val = "20" };
            Languages languages4 = new Languages() { Val = "ru-RU" };

            runProperties307.Append(fontSize388);
            runProperties307.Append(fontSizeComplexScript388);
            runProperties307.Append(languages4);
            Text text194 = new Text();
            text194.Text = "98";

            run307.Append(runProperties307);
            run307.Append(text194);

            paragraph295.Append(paragraphProperties295);
            paragraph295.Append(run306);
            paragraph295.Append(run307);

            tableCell226.Append(tableCellProperties226);
            tableCell226.Append(paragraph295);

            TableCell tableCell227 = new TableCell();

            TableCellProperties tableCellProperties227 = new TableCellProperties();
            TableCellWidth tableCellWidth227 = new TableCellWidth() { Width = "676", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan225 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders227 = new TableCellBorders();
            TopBorder topBorder110 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder98 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder80 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder80 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders227.Append(topBorder110);
            tableCellBorders227.Append(startBorder98);
            tableCellBorders227.Append(bottomBorder80);
            tableCellBorders227.Append(insideHorizontalBorder80);
            Shading shading407 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin98 = new TableCellMargin();
            StartMargin startMargin99 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin98.Append(startMargin99);

            tableCellProperties227.Append(tableCellWidth227);
            tableCellProperties227.Append(gridSpan225);
            tableCellProperties227.Append(tableCellBorders227);
            tableCellProperties227.Append(shading407);
            tableCellProperties227.Append(tableCellMargin98);

            Paragraph paragraph296 = new Paragraph();

            ParagraphProperties paragraphProperties296 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId296 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification162 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties296 = new ParagraphMarkRunProperties();

            paragraphProperties296.Append(paragraphStyleId296);
            paragraphProperties296.Append(justification162);
            paragraphProperties296.Append(paragraphMarkRunProperties296);

            Run run308 = new Run();

            RunProperties runProperties308 = new RunProperties();
            FontSize fontSize389 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript389 = new FontSizeComplexScript() { Val = "20" };

            runProperties308.Append(fontSize389);
            runProperties308.Append(fontSizeComplexScript389);
            Text text195 = new Text();
            text195.Text = "0,92";

            run308.Append(runProperties308);
            run308.Append(text195);

            paragraph296.Append(paragraphProperties296);
            paragraph296.Append(run308);

            tableCell227.Append(tableCellProperties227);
            tableCell227.Append(paragraph296);

            TableCell tableCell228 = new TableCell();

            TableCellProperties tableCellProperties228 = new TableCellProperties();
            TableCellWidth tableCellWidth228 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan226 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge21 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders228 = new TableCellBorders();
            TopBorder topBorder111 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder99 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders228.Append(topBorder111);
            tableCellBorders228.Append(startBorder99);
            Shading shading408 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin99 = new TableCellMargin();
            StartMargin startMargin100 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin99.Append(startMargin100);

            tableCellProperties228.Append(tableCellWidth228);
            tableCellProperties228.Append(gridSpan226);
            tableCellProperties228.Append(verticalMerge21);
            tableCellProperties228.Append(tableCellBorders228);
            tableCellProperties228.Append(shading408);
            tableCellProperties228.Append(tableCellMargin99);

            Paragraph paragraph297 = new Paragraph();

            ParagraphProperties paragraphProperties297 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId297 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification163 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties297 = new ParagraphMarkRunProperties();

            paragraphProperties297.Append(paragraphStyleId297);
            paragraphProperties297.Append(justification163);
            paragraphProperties297.Append(paragraphMarkRunProperties297);

            Run run309 = new Run();

            RunProperties runProperties309 = new RunProperties();
            FontSize fontSize390 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript390 = new FontSizeComplexScript() { Val = "20" };

            runProperties309.Append(fontSize390);
            runProperties309.Append(fontSizeComplexScript390);
            Text text196 = new Text();
            text196.Text = "-13";

            run309.Append(runProperties309);
            run309.Append(text196);

            paragraph297.Append(paragraphProperties297);
            paragraph297.Append(run309);

            tableCell228.Append(tableCellProperties228);
            tableCell228.Append(paragraph297);

            TableCell tableCell229 = new TableCell();

            TableCellProperties tableCellProperties229 = new TableCellProperties();
            TableCellWidth tableCellWidth229 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan227 = new GridSpan() { Val = 5 };
            VerticalMerge verticalMerge22 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders229 = new TableCellBorders();
            TopBorder topBorder112 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder100 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders229.Append(topBorder112);
            tableCellBorders229.Append(startBorder100);
            Shading shading409 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin100 = new TableCellMargin();
            StartMargin startMargin101 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin100.Append(startMargin101);

            tableCellProperties229.Append(tableCellWidth229);
            tableCellProperties229.Append(gridSpan227);
            tableCellProperties229.Append(verticalMerge22);
            tableCellProperties229.Append(tableCellBorders229);
            tableCellProperties229.Append(shading409);
            tableCellProperties229.Append(tableCellMargin100);

            Paragraph paragraph298 = new Paragraph();

            ParagraphProperties paragraphProperties298 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId298 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification164 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties298 = new ParagraphMarkRunProperties();

            paragraphProperties298.Append(paragraphStyleId298);
            paragraphProperties298.Append(justification164);
            paragraphProperties298.Append(paragraphMarkRunProperties298);

            Run run310 = new Run();

            RunProperties runProperties310 = new RunProperties();
            FontSize fontSize391 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript391 = new FontSizeComplexScript() { Val = "20" };

            runProperties310.Append(fontSize391);
            runProperties310.Append(fontSizeComplexScript391);
            Text text197 = new Text();
            text197.Text = "-43";

            run310.Append(runProperties310);
            run310.Append(text197);

            paragraph298.Append(paragraphProperties298);
            paragraph298.Append(run310);

            tableCell229.Append(tableCellProperties229);
            tableCell229.Append(paragraph298);

            TableCell tableCell230 = new TableCell();

            TableCellProperties tableCellProperties230 = new TableCellProperties();
            TableCellWidth tableCellWidth230 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan228 = new GridSpan() { Val = 10 };
            VerticalMerge verticalMerge23 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders230 = new TableCellBorders();
            TopBorder topBorder113 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder101 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders230.Append(topBorder113);
            tableCellBorders230.Append(startBorder101);
            Shading shading410 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin101 = new TableCellMargin();
            StartMargin startMargin102 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin101.Append(startMargin102);

            tableCellProperties230.Append(tableCellWidth230);
            tableCellProperties230.Append(gridSpan228);
            tableCellProperties230.Append(verticalMerge23);
            tableCellProperties230.Append(tableCellBorders230);
            tableCellProperties230.Append(shading410);
            tableCellProperties230.Append(tableCellMargin101);

            Paragraph paragraph299 = new Paragraph();

            ParagraphProperties paragraphProperties299 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId299 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification165 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties299 = new ParagraphMarkRunProperties();

            paragraphProperties299.Append(paragraphStyleId299);
            paragraphProperties299.Append(justification165);
            paragraphProperties299.Append(paragraphMarkRunProperties299);

            Run run311 = new Run();

            RunProperties runProperties311 = new RunProperties();
            FontSize fontSize392 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript392 = new FontSizeComplexScript() { Val = "20" };

            runProperties311.Append(fontSize392);
            runProperties311.Append(fontSizeComplexScript392);
            Text text198 = new Text();
            text198.Text = "5,4";

            run311.Append(runProperties311);
            run311.Append(text198);

            paragraph299.Append(paragraphProperties299);
            paragraph299.Append(run311);

            tableCell230.Append(tableCellProperties230);
            tableCell230.Append(paragraph299);

            TableCell tableCell231 = new TableCell();

            TableCellProperties tableCellProperties231 = new TableCellProperties();
            TableCellWidth tableCellWidth231 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan229 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge24 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders231 = new TableCellBorders();
            TopBorder topBorder114 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder102 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders231.Append(topBorder114);
            tableCellBorders231.Append(startBorder102);
            Shading shading411 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin102 = new TableCellMargin();
            StartMargin startMargin103 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin102.Append(startMargin103);

            tableCellProperties231.Append(tableCellWidth231);
            tableCellProperties231.Append(gridSpan229);
            tableCellProperties231.Append(verticalMerge24);
            tableCellProperties231.Append(tableCellBorders231);
            tableCellProperties231.Append(shading411);
            tableCellProperties231.Append(tableCellMargin102);

            Paragraph paragraph300 = new Paragraph();

            ParagraphProperties paragraphProperties300 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId300 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification166 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties300 = new ParagraphMarkRunProperties();

            paragraphProperties300.Append(paragraphStyleId300);
            paragraphProperties300.Append(justification166);
            paragraphProperties300.Append(paragraphMarkRunProperties300);

            Run run312 = new Run();

            RunProperties runProperties312 = new RunProperties();
            FontSize fontSize393 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript393 = new FontSizeComplexScript() { Val = "20" };

            runProperties312.Append(fontSize393);
            runProperties312.Append(fontSizeComplexScript393);
            Text text199 = new Text();
            text199.Text = "83";

            run312.Append(runProperties312);
            run312.Append(text199);

            paragraph300.Append(paragraphProperties300);
            paragraph300.Append(run312);

            tableCell231.Append(tableCellProperties231);
            tableCell231.Append(paragraph300);

            TableCell tableCell232 = new TableCell();

            TableCellProperties tableCellProperties232 = new TableCellProperties();
            TableCellWidth tableCellWidth232 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan230 = new GridSpan() { Val = 4 };
            VerticalMerge verticalMerge25 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders232 = new TableCellBorders();
            TopBorder topBorder115 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder103 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder65 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder65 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders232.Append(topBorder115);
            tableCellBorders232.Append(startBorder103);
            tableCellBorders232.Append(endBorder65);
            tableCellBorders232.Append(insideVerticalBorder65);
            Shading shading412 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin103 = new TableCellMargin();
            StartMargin startMargin104 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin103.Append(startMargin104);

            tableCellProperties232.Append(tableCellWidth232);
            tableCellProperties232.Append(gridSpan230);
            tableCellProperties232.Append(verticalMerge25);
            tableCellProperties232.Append(tableCellBorders232);
            tableCellProperties232.Append(shading412);
            tableCellProperties232.Append(tableCellMargin103);

            Paragraph paragraph301 = new Paragraph();

            ParagraphProperties paragraphProperties301 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId301 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification167 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties301 = new ParagraphMarkRunProperties();

            paragraphProperties301.Append(paragraphStyleId301);
            paragraphProperties301.Append(justification167);
            paragraphProperties301.Append(paragraphMarkRunProperties301);

            Run run313 = new Run();

            RunProperties runProperties313 = new RunProperties();
            FontSize fontSize394 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript394 = new FontSizeComplexScript() { Val = "20" };

            runProperties313.Append(fontSize394);
            runProperties313.Append(fontSizeComplexScript394);
            Text text200 = new Text();
            text200.Text = "82";

            run313.Append(runProperties313);
            run313.Append(text200);

            paragraph301.Append(paragraphProperties301);
            paragraph301.Append(run313);

            tableCell232.Append(tableCellProperties232);
            tableCell232.Append(paragraph301);

            tableRow92.Append(tableRowProperties92);
            tableRow92.Append(tableCell223);
            tableRow92.Append(tableCell224);
            tableRow92.Append(tableCell225);
            tableRow92.Append(tableCell226);
            tableRow92.Append(tableCell227);
            tableRow92.Append(tableCell228);
            tableRow92.Append(tableCell229);
            tableRow92.Append(tableCell230);
            tableRow92.Append(tableCell231);
            tableRow92.Append(tableCell232);

            TableRow tableRow93 = new TableRow();
            TableRowProperties tableRowProperties93 = new TableRowProperties();

            TableCell tableCell233 = new TableCell();

            TableCellProperties tableCellProperties233 = new TableCellProperties();
            TableCellWidth tableCellWidth233 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan231 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders233 = new TableCellBorders();
            TopBorder topBorder116 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder104 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder81 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder66 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder81 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder66 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders233.Append(topBorder116);
            tableCellBorders233.Append(startBorder104);
            tableCellBorders233.Append(bottomBorder81);
            tableCellBorders233.Append(endBorder66);
            tableCellBorders233.Append(insideHorizontalBorder81);
            tableCellBorders233.Append(insideVerticalBorder66);
            Shading shading413 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin104 = new TableCellMargin();
            StartMargin startMargin105 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin104.Append(startMargin105);

            tableCellProperties233.Append(tableCellWidth233);
            tableCellProperties233.Append(gridSpan231);
            tableCellProperties233.Append(tableCellBorders233);
            tableCellProperties233.Append(shading413);
            tableCellProperties233.Append(tableCellMargin104);

            Paragraph paragraph302 = new Paragraph();

            ParagraphProperties paragraphProperties302 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId302 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification168 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties302 = new ParagraphMarkRunProperties();

            paragraphProperties302.Append(paragraphStyleId302);
            paragraphProperties302.Append(justification168);
            paragraphProperties302.Append(paragraphMarkRunProperties302);

            Run run314 = new Run();

            RunProperties runProperties314 = new RunProperties();
            FontSize fontSize395 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript395 = new FontSizeComplexScript() { Val = "20" };

            runProperties314.Append(fontSize395);
            runProperties314.Append(fontSizeComplexScript395);
            Text text201 = new Text();
            text201.Text = "г. Москва";

            run314.Append(runProperties314);
            run314.Append(text201);

            paragraph302.Append(paragraphProperties302);
            paragraph302.Append(run314);

            tableCell233.Append(tableCellProperties233);
            tableCell233.Append(paragraph302);

            TableCell tableCell234 = new TableCell();

            TableCellProperties tableCellProperties234 = new TableCellProperties();
            TableCellWidth tableCellWidth234 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan232 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders234 = new TableCellBorders();
            TopBorder topBorder117 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder105 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder82 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder82 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders234.Append(topBorder117);
            tableCellBorders234.Append(startBorder105);
            tableCellBorders234.Append(bottomBorder82);
            tableCellBorders234.Append(insideHorizontalBorder82);
            Shading shading414 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin105 = new TableCellMargin();
            StartMargin startMargin106 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin105.Append(startMargin106);

            tableCellProperties234.Append(tableCellWidth234);
            tableCellProperties234.Append(gridSpan232);
            tableCellProperties234.Append(tableCellBorders234);
            tableCellProperties234.Append(shading414);
            tableCellProperties234.Append(tableCellMargin105);

            Paragraph paragraph303 = new Paragraph();

            ParagraphProperties paragraphProperties303 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId303 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification169 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties303 = new ParagraphMarkRunProperties();

            paragraphProperties303.Append(paragraphStyleId303);
            paragraphProperties303.Append(justification169);
            paragraphProperties303.Append(paragraphMarkRunProperties303);

            Run run315 = new Run();

            RunProperties runProperties315 = new RunProperties();
            FontSize fontSize396 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript396 = new FontSizeComplexScript() { Val = "20" };

            runProperties315.Append(fontSize396);
            runProperties315.Append(fontSizeComplexScript396);
            Text text202 = new Text();
            text202.Text = "-35";

            run315.Append(runProperties315);
            run315.Append(text202);

            paragraph303.Append(paragraphProperties303);
            paragraph303.Append(run315);

            tableCell234.Append(tableCellProperties234);
            tableCell234.Append(paragraph303);

            TableCell tableCell235 = new TableCell();

            TableCellProperties tableCellProperties235 = new TableCellProperties();
            TableCellWidth tableCellWidth235 = new TableCellWidth() { Width = "627", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan233 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders235 = new TableCellBorders();
            TopBorder topBorder118 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder106 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder83 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder83 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders235.Append(topBorder118);
            tableCellBorders235.Append(startBorder106);
            tableCellBorders235.Append(bottomBorder83);
            tableCellBorders235.Append(insideHorizontalBorder83);
            Shading shading415 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin106 = new TableCellMargin();
            StartMargin startMargin107 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin106.Append(startMargin107);

            tableCellProperties235.Append(tableCellWidth235);
            tableCellProperties235.Append(gridSpan233);
            tableCellProperties235.Append(tableCellBorders235);
            tableCellProperties235.Append(shading415);
            tableCellProperties235.Append(tableCellMargin106);

            Paragraph paragraph304 = new Paragraph();

            ParagraphProperties paragraphProperties304 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId304 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification170 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties304 = new ParagraphMarkRunProperties();

            paragraphProperties304.Append(paragraphStyleId304);
            paragraphProperties304.Append(justification170);
            paragraphProperties304.Append(paragraphMarkRunProperties304);

            Run run316 = new Run();

            RunProperties runProperties316 = new RunProperties();
            FontSize fontSize397 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript397 = new FontSizeComplexScript() { Val = "20" };

            runProperties316.Append(fontSize397);
            runProperties316.Append(fontSizeComplexScript397);
            Text text203 = new Text();
            text203.Text = "-28";

            run316.Append(runProperties316);
            run316.Append(text203);

            paragraph304.Append(paragraphProperties304);
            paragraph304.Append(run316);

            tableCell235.Append(tableCellProperties235);
            tableCell235.Append(paragraph304);

            TableCell tableCell236 = new TableCell();

            TableCellProperties tableCellProperties236 = new TableCellProperties();
            TableCellWidth tableCellWidth236 = new TableCellWidth() { Width = "687", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan234 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders236 = new TableCellBorders();
            TopBorder topBorder119 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder107 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder84 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder84 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders236.Append(topBorder119);
            tableCellBorders236.Append(startBorder107);
            tableCellBorders236.Append(bottomBorder84);
            tableCellBorders236.Append(insideHorizontalBorder84);
            Shading shading416 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin107 = new TableCellMargin();
            StartMargin startMargin108 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin107.Append(startMargin108);

            tableCellProperties236.Append(tableCellWidth236);
            tableCellProperties236.Append(gridSpan234);
            tableCellProperties236.Append(tableCellBorders236);
            tableCellProperties236.Append(shading416);
            tableCellProperties236.Append(tableCellMargin107);

            Paragraph paragraph305 = new Paragraph();

            ParagraphProperties paragraphProperties305 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId305 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification171 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties305 = new ParagraphMarkRunProperties();

            paragraphProperties305.Append(paragraphStyleId305);
            paragraphProperties305.Append(justification171);
            paragraphProperties305.Append(paragraphMarkRunProperties305);

            Run run317 = new Run();

            RunProperties runProperties317 = new RunProperties();
            FontSize fontSize398 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript398 = new FontSizeComplexScript() { Val = "20" };

            runProperties317.Append(fontSize398);
            runProperties317.Append(fontSizeComplexScript398);
            Text text204 = new Text();
            text204.Text = "-29";

            run317.Append(runProperties317);
            run317.Append(text204);

            paragraph305.Append(paragraphProperties305);
            paragraph305.Append(run317);

            tableCell236.Append(tableCellProperties236);
            tableCell236.Append(paragraph305);

            TableCell tableCell237 = new TableCell();

            TableCellProperties tableCellProperties237 = new TableCellProperties();
            TableCellWidth tableCellWidth237 = new TableCellWidth() { Width = "676", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan235 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders237 = new TableCellBorders();
            TopBorder topBorder120 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder108 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder85 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder85 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders237.Append(topBorder120);
            tableCellBorders237.Append(startBorder108);
            tableCellBorders237.Append(bottomBorder85);
            tableCellBorders237.Append(insideHorizontalBorder85);
            Shading shading417 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin108 = new TableCellMargin();
            StartMargin startMargin109 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin108.Append(startMargin109);

            tableCellProperties237.Append(tableCellWidth237);
            tableCellProperties237.Append(gridSpan235);
            tableCellProperties237.Append(tableCellBorders237);
            tableCellProperties237.Append(shading417);
            tableCellProperties237.Append(tableCellMargin108);

            Paragraph paragraph306 = new Paragraph();

            ParagraphProperties paragraphProperties306 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId306 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification172 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties306 = new ParagraphMarkRunProperties();

            paragraphProperties306.Append(paragraphStyleId306);
            paragraphProperties306.Append(justification172);
            paragraphProperties306.Append(paragraphMarkRunProperties306);

            Run run318 = new Run();

            RunProperties runProperties318 = new RunProperties();
            FontSize fontSize399 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript399 = new FontSizeComplexScript() { Val = "20" };

            runProperties318.Append(fontSize399);
            runProperties318.Append(fontSizeComplexScript399);
            Text text205 = new Text();
            text205.Text = "-25";

            run318.Append(runProperties318);
            run318.Append(text205);

            paragraph306.Append(paragraphProperties306);
            paragraph306.Append(run318);

            tableCell237.Append(tableCellProperties237);
            tableCell237.Append(paragraph306);

            TableCell tableCell238 = new TableCell();

            TableCellProperties tableCellProperties238 = new TableCellProperties();
            TableCellWidth tableCellWidth238 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan236 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge26 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders238 = new TableCellBorders();
            TopBorder topBorder121 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder109 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder86 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder86 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders238.Append(topBorder121);
            tableCellBorders238.Append(startBorder109);
            tableCellBorders238.Append(bottomBorder86);
            tableCellBorders238.Append(insideHorizontalBorder86);
            Shading shading418 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin109 = new TableCellMargin();
            StartMargin startMargin110 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin109.Append(startMargin110);

            tableCellProperties238.Append(tableCellWidth238);
            tableCellProperties238.Append(gridSpan236);
            tableCellProperties238.Append(verticalMerge26);
            tableCellProperties238.Append(tableCellBorders238);
            tableCellProperties238.Append(shading418);
            tableCellProperties238.Append(tableCellMargin109);

            Paragraph paragraph307 = new Paragraph();

            ParagraphProperties paragraphProperties307 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId307 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification173 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties307 = new ParagraphMarkRunProperties();
            FontSize fontSize400 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript400 = new FontSizeComplexScript() { Val = "26" };
            Shading shading419 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties307.Append(fontSize400);
            paragraphMarkRunProperties307.Append(fontSizeComplexScript400);
            paragraphMarkRunProperties307.Append(shading419);

            paragraphProperties307.Append(paragraphStyleId307);
            paragraphProperties307.Append(justification173);
            paragraphProperties307.Append(paragraphMarkRunProperties307);

            Run run319 = new Run();

            RunProperties runProperties319 = new RunProperties();
            FontSize fontSize401 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript401 = new FontSizeComplexScript() { Val = "26" };
            Shading shading420 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties319.Append(fontSize401);
            runProperties319.Append(fontSizeComplexScript401);
            runProperties319.Append(shading420);

            run319.Append(runProperties319);

            paragraph307.Append(paragraphProperties307);
            paragraph307.Append(run319);

            tableCell238.Append(tableCellProperties238);
            tableCell238.Append(paragraph307);

            TableCell tableCell239 = new TableCell();

            TableCellProperties tableCellProperties239 = new TableCellProperties();
            TableCellWidth tableCellWidth239 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan237 = new GridSpan() { Val = 5 };
            VerticalMerge verticalMerge27 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders239 = new TableCellBorders();
            TopBorder topBorder122 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder110 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder87 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder87 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders239.Append(topBorder122);
            tableCellBorders239.Append(startBorder110);
            tableCellBorders239.Append(bottomBorder87);
            tableCellBorders239.Append(insideHorizontalBorder87);
            Shading shading421 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin110 = new TableCellMargin();
            StartMargin startMargin111 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin110.Append(startMargin111);

            tableCellProperties239.Append(tableCellWidth239);
            tableCellProperties239.Append(gridSpan237);
            tableCellProperties239.Append(verticalMerge27);
            tableCellProperties239.Append(tableCellBorders239);
            tableCellProperties239.Append(shading421);
            tableCellProperties239.Append(tableCellMargin110);

            Paragraph paragraph308 = new Paragraph();

            ParagraphProperties paragraphProperties308 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId308 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification174 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties308 = new ParagraphMarkRunProperties();
            FontSize fontSize402 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript402 = new FontSizeComplexScript() { Val = "26" };
            Shading shading422 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties308.Append(fontSize402);
            paragraphMarkRunProperties308.Append(fontSizeComplexScript402);
            paragraphMarkRunProperties308.Append(shading422);

            paragraphProperties308.Append(paragraphStyleId308);
            paragraphProperties308.Append(justification174);
            paragraphProperties308.Append(paragraphMarkRunProperties308);

            Run run320 = new Run();

            RunProperties runProperties320 = new RunProperties();
            FontSize fontSize403 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript403 = new FontSizeComplexScript() { Val = "26" };
            Shading shading423 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties320.Append(fontSize403);
            runProperties320.Append(fontSizeComplexScript403);
            runProperties320.Append(shading423);

            run320.Append(runProperties320);

            paragraph308.Append(paragraphProperties308);
            paragraph308.Append(run320);

            tableCell239.Append(tableCellProperties239);
            tableCell239.Append(paragraph308);

            TableCell tableCell240 = new TableCell();

            TableCellProperties tableCellProperties240 = new TableCellProperties();
            TableCellWidth tableCellWidth240 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan238 = new GridSpan() { Val = 10 };
            VerticalMerge verticalMerge28 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders240 = new TableCellBorders();
            TopBorder topBorder123 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder111 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder88 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder88 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders240.Append(topBorder123);
            tableCellBorders240.Append(startBorder111);
            tableCellBorders240.Append(bottomBorder88);
            tableCellBorders240.Append(insideHorizontalBorder88);
            Shading shading424 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin111 = new TableCellMargin();
            StartMargin startMargin112 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin111.Append(startMargin112);

            tableCellProperties240.Append(tableCellWidth240);
            tableCellProperties240.Append(gridSpan238);
            tableCellProperties240.Append(verticalMerge28);
            tableCellProperties240.Append(tableCellBorders240);
            tableCellProperties240.Append(shading424);
            tableCellProperties240.Append(tableCellMargin111);

            Paragraph paragraph309 = new Paragraph();

            ParagraphProperties paragraphProperties309 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId309 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification175 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties309 = new ParagraphMarkRunProperties();
            FontSize fontSize404 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript404 = new FontSizeComplexScript() { Val = "26" };
            Shading shading425 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties309.Append(fontSize404);
            paragraphMarkRunProperties309.Append(fontSizeComplexScript404);
            paragraphMarkRunProperties309.Append(shading425);

            paragraphProperties309.Append(paragraphStyleId309);
            paragraphProperties309.Append(justification175);
            paragraphProperties309.Append(paragraphMarkRunProperties309);

            Run run321 = new Run();

            RunProperties runProperties321 = new RunProperties();
            FontSize fontSize405 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript405 = new FontSizeComplexScript() { Val = "26" };
            Shading shading426 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties321.Append(fontSize405);
            runProperties321.Append(fontSizeComplexScript405);
            runProperties321.Append(shading426);

            run321.Append(runProperties321);

            paragraph309.Append(paragraphProperties309);
            paragraph309.Append(run321);

            tableCell240.Append(tableCellProperties240);
            tableCell240.Append(paragraph309);

            TableCell tableCell241 = new TableCell();

            TableCellProperties tableCellProperties241 = new TableCellProperties();
            TableCellWidth tableCellWidth241 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan239 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge29 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders241 = new TableCellBorders();
            TopBorder topBorder124 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder112 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder89 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder89 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders241.Append(topBorder124);
            tableCellBorders241.Append(startBorder112);
            tableCellBorders241.Append(bottomBorder89);
            tableCellBorders241.Append(insideHorizontalBorder89);
            Shading shading427 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin112 = new TableCellMargin();
            StartMargin startMargin113 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin112.Append(startMargin113);

            tableCellProperties241.Append(tableCellWidth241);
            tableCellProperties241.Append(gridSpan239);
            tableCellProperties241.Append(verticalMerge29);
            tableCellProperties241.Append(tableCellBorders241);
            tableCellProperties241.Append(shading427);
            tableCellProperties241.Append(tableCellMargin112);

            Paragraph paragraph310 = new Paragraph();

            ParagraphProperties paragraphProperties310 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId310 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification176 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties310 = new ParagraphMarkRunProperties();
            FontSize fontSize406 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript406 = new FontSizeComplexScript() { Val = "26" };
            Shading shading428 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties310.Append(fontSize406);
            paragraphMarkRunProperties310.Append(fontSizeComplexScript406);
            paragraphMarkRunProperties310.Append(shading428);

            paragraphProperties310.Append(paragraphStyleId310);
            paragraphProperties310.Append(justification176);
            paragraphProperties310.Append(paragraphMarkRunProperties310);

            Run run322 = new Run();

            RunProperties runProperties322 = new RunProperties();
            FontSize fontSize407 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript407 = new FontSizeComplexScript() { Val = "26" };
            Shading shading429 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties322.Append(fontSize407);
            runProperties322.Append(fontSizeComplexScript407);
            runProperties322.Append(shading429);

            run322.Append(runProperties322);

            paragraph310.Append(paragraphProperties310);
            paragraph310.Append(run322);

            tableCell241.Append(tableCellProperties241);
            tableCell241.Append(paragraph310);

            TableCell tableCell242 = new TableCell();

            TableCellProperties tableCellProperties242 = new TableCellProperties();
            TableCellWidth tableCellWidth242 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan240 = new GridSpan() { Val = 4 };
            VerticalMerge verticalMerge30 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders242 = new TableCellBorders();
            TopBorder topBorder125 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder113 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder67 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder67 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders242.Append(topBorder125);
            tableCellBorders242.Append(startBorder113);
            tableCellBorders242.Append(endBorder67);
            tableCellBorders242.Append(insideVerticalBorder67);
            Shading shading430 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin113 = new TableCellMargin();
            StartMargin startMargin114 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin113.Append(startMargin114);

            tableCellProperties242.Append(tableCellWidth242);
            tableCellProperties242.Append(gridSpan240);
            tableCellProperties242.Append(verticalMerge30);
            tableCellProperties242.Append(tableCellBorders242);
            tableCellProperties242.Append(shading430);
            tableCellProperties242.Append(tableCellMargin113);

            Paragraph paragraph311 = new Paragraph();

            ParagraphProperties paragraphProperties311 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId311 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification177 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties311 = new ParagraphMarkRunProperties();
            FontSize fontSize408 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript408 = new FontSizeComplexScript() { Val = "26" };
            Shading shading431 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties311.Append(fontSize408);
            paragraphMarkRunProperties311.Append(fontSizeComplexScript408);
            paragraphMarkRunProperties311.Append(shading431);

            paragraphProperties311.Append(paragraphStyleId311);
            paragraphProperties311.Append(justification177);
            paragraphProperties311.Append(paragraphMarkRunProperties311);

            Run run323 = new Run();

            RunProperties runProperties323 = new RunProperties();
            FontSize fontSize409 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript409 = new FontSizeComplexScript() { Val = "26" };
            Shading shading432 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties323.Append(fontSize409);
            runProperties323.Append(fontSizeComplexScript409);
            runProperties323.Append(shading432);

            run323.Append(runProperties323);

            paragraph311.Append(paragraphProperties311);
            paragraph311.Append(run323);

            tableCell242.Append(tableCellProperties242);
            tableCell242.Append(paragraph311);

            tableRow93.Append(tableRowProperties93);
            tableRow93.Append(tableCell233);
            tableRow93.Append(tableCell234);
            tableRow93.Append(tableCell235);
            tableRow93.Append(tableCell236);
            tableRow93.Append(tableCell237);
            tableRow93.Append(tableCell238);
            tableRow93.Append(tableCell239);
            tableRow93.Append(tableCell240);
            tableRow93.Append(tableCell241);
            tableRow93.Append(tableCell242);

            TableRow tableRow94 = new TableRow();
            TableRowProperties tableRowProperties94 = new TableRowProperties();

            TableCell tableCell243 = new TableCell();

            TableCellProperties tableCellProperties243 = new TableCellProperties();
            TableCellWidth tableCellWidth243 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan241 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders243 = new TableCellBorders();
            TopBorder topBorder126 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder90 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder90 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders243.Append(topBorder126);
            tableCellBorders243.Append(bottomBorder90);
            tableCellBorders243.Append(insideHorizontalBorder90);
            Shading shading433 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties243.Append(tableCellWidth243);
            tableCellProperties243.Append(gridSpan241);
            tableCellProperties243.Append(tableCellBorders243);
            tableCellProperties243.Append(shading433);

            Paragraph paragraph312 = new Paragraph();

            ParagraphProperties paragraphProperties312 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId312 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties312 = new ParagraphMarkRunProperties();
            FontSize fontSize410 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript410 = new FontSizeComplexScript() { Val = "26" };
            Shading shading434 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties312.Append(fontSize410);
            paragraphMarkRunProperties312.Append(fontSizeComplexScript410);
            paragraphMarkRunProperties312.Append(shading434);

            paragraphProperties312.Append(paragraphStyleId312);
            paragraphProperties312.Append(paragraphMarkRunProperties312);

            Run run324 = new Run();

            RunProperties runProperties324 = new RunProperties();
            FontSize fontSize411 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript411 = new FontSizeComplexScript() { Val = "26" };
            Shading shading435 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties324.Append(fontSize411);
            runProperties324.Append(fontSizeComplexScript411);
            runProperties324.Append(shading435);

            run324.Append(runProperties324);

            paragraph312.Append(paragraphProperties312);
            paragraph312.Append(run324);

            tableCell243.Append(tableCellProperties243);
            tableCell243.Append(paragraph312);

            tableRow94.Append(tableRowProperties94);
            tableRow94.Append(tableCell243);

            TableRow tableRow95 = new TableRow();
            TableRowProperties tableRowProperties95 = new TableRowProperties();

            TableCell tableCell244 = new TableCell();

            TableCellProperties tableCellProperties244 = new TableCellProperties();
            TableCellWidth tableCellWidth244 = new TableCellWidth() { Width = "873", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan242 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders244 = new TableCellBorders();
            TopBorder topBorder127 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder114 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder91 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder68 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder91 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder68 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders244.Append(topBorder127);
            tableCellBorders244.Append(startBorder114);
            tableCellBorders244.Append(bottomBorder91);
            tableCellBorders244.Append(endBorder68);
            tableCellBorders244.Append(insideHorizontalBorder91);
            tableCellBorders244.Append(insideVerticalBorder68);
            Shading shading436 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin114 = new TableCellMargin();
            StartMargin startMargin115 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin114.Append(startMargin115);

            tableCellProperties244.Append(tableCellWidth244);
            tableCellProperties244.Append(gridSpan242);
            tableCellProperties244.Append(tableCellBorders244);
            tableCellProperties244.Append(shading436);
            tableCellProperties244.Append(tableCellMargin114);

            Paragraph paragraph313 = new Paragraph();

            ParagraphProperties paragraphProperties313 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId313 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification178 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties313 = new ParagraphMarkRunProperties();

            paragraphProperties313.Append(paragraphStyleId313);
            paragraphProperties313.Append(justification178);
            paragraphProperties313.Append(paragraphMarkRunProperties313);

            Run run325 = new Run();

            RunProperties runProperties325 = new RunProperties();
            FontSize fontSize412 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript412 = new FontSizeComplexScript() { Val = "16" };

            runProperties325.Append(fontSize412);
            runProperties325.Append(fontSizeComplexScript412);
            Text text206 = new Text();
            text206.Text = "Республика, край, область, пункт";

            run325.Append(runProperties325);
            run325.Append(text206);

            paragraph313.Append(paragraphProperties313);
            paragraph313.Append(run325);

            tableCell244.Append(tableCellProperties244);
            tableCell244.Append(paragraph313);

            TableCell tableCell245 = new TableCell();

            TableCellProperties tableCellProperties245 = new TableCellProperties();
            TableCellWidth tableCellWidth245 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan243 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders245 = new TableCellBorders();
            TopBorder topBorder128 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder115 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder92 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder92 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders245.Append(topBorder128);
            tableCellBorders245.Append(startBorder115);
            tableCellBorders245.Append(bottomBorder92);
            tableCellBorders245.Append(insideHorizontalBorder92);
            Shading shading437 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin115 = new TableCellMargin();
            StartMargin startMargin116 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin115.Append(startMargin116);

            tableCellProperties245.Append(tableCellWidth245);
            tableCellProperties245.Append(gridSpan243);
            tableCellProperties245.Append(tableCellBorders245);
            tableCellProperties245.Append(shading437);
            tableCellProperties245.Append(tableCellMargin115);

            Paragraph paragraph314 = new Paragraph();

            ParagraphProperties paragraphProperties314 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId314 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification179 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties314 = new ParagraphMarkRunProperties();

            paragraphProperties314.Append(paragraphStyleId314);
            paragraphProperties314.Append(justification179);
            paragraphProperties314.Append(paragraphMarkRunProperties314);

            Run run326 = new Run();

            RunProperties runProperties326 = new RunProperties();
            FontSize fontSize413 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript413 = new FontSizeComplexScript() { Val = "16" };

            runProperties326.Append(fontSize413);
            runProperties326.Append(fontSizeComplexScript413);
            Text text207 = new Text();
            text207.Text = "Барометрическое давление, гПа";

            run326.Append(runProperties326);
            run326.Append(text207);

            paragraph314.Append(paragraphProperties314);
            paragraph314.Append(run326);

            tableCell245.Append(tableCellProperties245);
            tableCell245.Append(paragraph314);

            TableCell tableCell246 = new TableCell();

            TableCellProperties tableCellProperties246 = new TableCellProperties();
            TableCellWidth tableCellWidth246 = new TableCellWidth() { Width = "1287", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan244 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders246 = new TableCellBorders();
            TopBorder topBorder129 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder116 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder93 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder93 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders246.Append(topBorder129);
            tableCellBorders246.Append(startBorder116);
            tableCellBorders246.Append(bottomBorder93);
            tableCellBorders246.Append(insideHorizontalBorder93);
            Shading shading438 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin116 = new TableCellMargin();
            StartMargin startMargin117 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin116.Append(startMargin117);

            tableCellProperties246.Append(tableCellWidth246);
            tableCellProperties246.Append(gridSpan244);
            tableCellProperties246.Append(tableCellBorders246);
            tableCellProperties246.Append(shading438);
            tableCellProperties246.Append(tableCellMargin116);

            Paragraph paragraph315 = new Paragraph();

            ParagraphProperties paragraphProperties315 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId315 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification180 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties315 = new ParagraphMarkRunProperties();

            paragraphProperties315.Append(paragraphStyleId315);
            paragraphProperties315.Append(justification180);
            paragraphProperties315.Append(paragraphMarkRunProperties315);

            Run run327 = new Run();

            RunProperties runProperties327 = new RunProperties();
            FontSize fontSize414 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript414 = new FontSizeComplexScript() { Val = "16" };

            runProperties327.Append(fontSize414);
            runProperties327.Append(fontSizeComplexScript414);
            Text text208 = new Text();
            text208.Text = "Температура воздуха, °С, обеспеченностью 0,95";

            run327.Append(runProperties327);
            run327.Append(text208);

            paragraph315.Append(paragraphProperties315);
            paragraph315.Append(run327);

            tableCell246.Append(tableCellProperties246);
            tableCell246.Append(paragraph315);

            TableCell tableCell247 = new TableCell();

            TableCellProperties tableCellProperties247 = new TableCellProperties();
            TableCellWidth tableCellWidth247 = new TableCellWidth() { Width = "871", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan245 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders247 = new TableCellBorders();
            TopBorder topBorder130 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder117 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder94 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder94 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders247.Append(topBorder130);
            tableCellBorders247.Append(startBorder117);
            tableCellBorders247.Append(bottomBorder94);
            tableCellBorders247.Append(insideHorizontalBorder94);
            Shading shading439 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin117 = new TableCellMargin();
            StartMargin startMargin118 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin117.Append(startMargin118);

            tableCellProperties247.Append(tableCellWidth247);
            tableCellProperties247.Append(gridSpan245);
            tableCellProperties247.Append(tableCellBorders247);
            tableCellProperties247.Append(shading439);
            tableCellProperties247.Append(tableCellMargin117);

            Paragraph paragraph316 = new Paragraph();

            ParagraphProperties paragraphProperties316 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId316 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification181 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties316 = new ParagraphMarkRunProperties();

            paragraphProperties316.Append(paragraphStyleId316);
            paragraphProperties316.Append(justification181);
            paragraphProperties316.Append(paragraphMarkRunProperties316);

            Run run328 = new Run();

            RunProperties runProperties328 = new RunProperties();
            FontSize fontSize415 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript415 = new FontSizeComplexScript() { Val = "16" };

            runProperties328.Append(fontSize415);
            runProperties328.Append(fontSizeComplexScript415);
            Text text209 = new Text();
            text209.Text = "Температура воздуха, °С, обеспеченностью 0,98";

            run328.Append(runProperties328);
            run328.Append(text209);

            paragraph316.Append(paragraphProperties316);
            paragraph316.Append(run328);

            tableCell247.Append(tableCellProperties247);
            tableCell247.Append(paragraph316);

            TableCell tableCell248 = new TableCell();

            TableCellProperties tableCellProperties248 = new TableCellProperties();
            TableCellWidth tableCellWidth248 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan246 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders248 = new TableCellBorders();
            TopBorder topBorder131 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder118 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder95 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder95 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders248.Append(topBorder131);
            tableCellBorders248.Append(startBorder118);
            tableCellBorders248.Append(bottomBorder95);
            tableCellBorders248.Append(insideHorizontalBorder95);
            Shading shading440 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin118 = new TableCellMargin();
            StartMargin startMargin119 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin118.Append(startMargin119);

            tableCellProperties248.Append(tableCellWidth248);
            tableCellProperties248.Append(gridSpan246);
            tableCellProperties248.Append(tableCellBorders248);
            tableCellProperties248.Append(shading440);
            tableCellProperties248.Append(tableCellMargin118);

            Paragraph paragraph317 = new Paragraph();

            ParagraphProperties paragraphProperties317 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId317 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification182 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties317 = new ParagraphMarkRunProperties();

            paragraphProperties317.Append(paragraphStyleId317);
            paragraphProperties317.Append(justification182);
            paragraphProperties317.Append(paragraphMarkRunProperties317);

            Run run329 = new Run();

            RunProperties runProperties329 = new RunProperties();
            FontSize fontSize416 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript416 = new FontSizeComplexScript() { Val = "16" };

            runProperties329.Append(fontSize416);
            runProperties329.Append(fontSizeComplexScript416);
            Text text210 = new Text();
            text210.Text = "Средняя максимальная температура воздуха наиболее теплого месяца, °С";

            run329.Append(runProperties329);
            run329.Append(text210);

            paragraph317.Append(paragraphProperties317);
            paragraph317.Append(run329);

            tableCell248.Append(tableCellProperties248);
            tableCell248.Append(paragraph317);

            TableCell tableCell249 = new TableCell();

            TableCellProperties tableCellProperties249 = new TableCellProperties();
            TableCellWidth tableCellWidth249 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan247 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders249 = new TableCellBorders();
            TopBorder topBorder132 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder119 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder96 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder96 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders249.Append(topBorder132);
            tableCellBorders249.Append(startBorder119);
            tableCellBorders249.Append(bottomBorder96);
            tableCellBorders249.Append(insideHorizontalBorder96);
            Shading shading441 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin119 = new TableCellMargin();
            StartMargin startMargin120 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin119.Append(startMargin120);

            tableCellProperties249.Append(tableCellWidth249);
            tableCellProperties249.Append(gridSpan247);
            tableCellProperties249.Append(tableCellBorders249);
            tableCellProperties249.Append(shading441);
            tableCellProperties249.Append(tableCellMargin119);

            Paragraph paragraph318 = new Paragraph();

            ParagraphProperties paragraphProperties318 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId318 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification183 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties318 = new ParagraphMarkRunProperties();

            paragraphProperties318.Append(paragraphStyleId318);
            paragraphProperties318.Append(justification183);
            paragraphProperties318.Append(paragraphMarkRunProperties318);

            Run run330 = new Run();

            RunProperties runProperties330 = new RunProperties();
            FontSize fontSize417 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript417 = new FontSizeComplexScript() { Val = "16" };

            runProperties330.Append(fontSize417);
            runProperties330.Append(fontSizeComplexScript417);
            Text text211 = new Text();
            text211.Text = "Абсолютная максимальная температура воздуха, °С";

            run330.Append(runProperties330);
            run330.Append(text211);

            paragraph318.Append(paragraphProperties318);
            paragraph318.Append(run330);

            tableCell249.Append(tableCellProperties249);
            tableCell249.Append(paragraph318);

            TableCell tableCell250 = new TableCell();

            TableCellProperties tableCellProperties250 = new TableCellProperties();
            TableCellWidth tableCellWidth250 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan248 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders250 = new TableCellBorders();
            TopBorder topBorder133 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder120 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder97 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder97 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders250.Append(topBorder133);
            tableCellBorders250.Append(startBorder120);
            tableCellBorders250.Append(bottomBorder97);
            tableCellBorders250.Append(insideHorizontalBorder97);
            Shading shading442 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin120 = new TableCellMargin();
            StartMargin startMargin121 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin120.Append(startMargin121);

            tableCellProperties250.Append(tableCellWidth250);
            tableCellProperties250.Append(gridSpan248);
            tableCellProperties250.Append(tableCellBorders250);
            tableCellProperties250.Append(shading442);
            tableCellProperties250.Append(tableCellMargin120);

            Paragraph paragraph319 = new Paragraph();

            ParagraphProperties paragraphProperties319 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId319 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification184 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties319 = new ParagraphMarkRunProperties();

            paragraphProperties319.Append(paragraphStyleId319);
            paragraphProperties319.Append(justification184);
            paragraphProperties319.Append(paragraphMarkRunProperties319);

            Run run331 = new Run();

            RunProperties runProperties331 = new RunProperties();
            FontSize fontSize418 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript418 = new FontSizeComplexScript() { Val = "16" };

            runProperties331.Append(fontSize418);
            runProperties331.Append(fontSizeComplexScript418);
            Text text212 = new Text();
            text212.Text = "Средняя суточная амплитуда температуры воздуха наиболее теплого месяца, °С";

            run331.Append(runProperties331);
            run331.Append(text212);

            paragraph319.Append(paragraphProperties319);
            paragraph319.Append(run331);

            tableCell250.Append(tableCellProperties250);
            tableCell250.Append(paragraph319);

            TableCell tableCell251 = new TableCell();

            TableCellProperties tableCellProperties251 = new TableCellProperties();
            TableCellWidth tableCellWidth251 = new TableCellWidth() { Width = "1148", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan249 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders251 = new TableCellBorders();
            TopBorder topBorder134 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder121 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder98 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder98 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders251.Append(topBorder134);
            tableCellBorders251.Append(startBorder121);
            tableCellBorders251.Append(bottomBorder98);
            tableCellBorders251.Append(insideHorizontalBorder98);
            Shading shading443 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin121 = new TableCellMargin();
            StartMargin startMargin122 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin121.Append(startMargin122);

            tableCellProperties251.Append(tableCellWidth251);
            tableCellProperties251.Append(gridSpan249);
            tableCellProperties251.Append(tableCellBorders251);
            tableCellProperties251.Append(shading443);
            tableCellProperties251.Append(tableCellMargin121);

            Paragraph paragraph320 = new Paragraph();

            ParagraphProperties paragraphProperties320 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId320 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification185 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties320 = new ParagraphMarkRunProperties();

            paragraphProperties320.Append(paragraphStyleId320);
            paragraphProperties320.Append(justification185);
            paragraphProperties320.Append(paragraphMarkRunProperties320);

            Run run332 = new Run();

            RunProperties runProperties332 = new RunProperties();
            FontSize fontSize419 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript419 = new FontSizeComplexScript() { Val = "16" };

            runProperties332.Append(fontSize419);
            runProperties332.Append(fontSizeComplexScript419);
            Text text213 = new Text();
            text213.Text = "Средняя месячная относительная влажность воздуха наиболее теплого месяца, %";

            run332.Append(runProperties332);
            run332.Append(text213);

            paragraph320.Append(paragraphProperties320);
            paragraph320.Append(run332);

            tableCell251.Append(tableCellProperties251);
            tableCell251.Append(paragraph320);

            TableCell tableCell252 = new TableCell();

            TableCellProperties tableCellProperties252 = new TableCellProperties();
            TableCellWidth tableCellWidth252 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan250 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders252 = new TableCellBorders();
            TopBorder topBorder135 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder122 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder99 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder69 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder99 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder69 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders252.Append(topBorder135);
            tableCellBorders252.Append(startBorder122);
            tableCellBorders252.Append(bottomBorder99);
            tableCellBorders252.Append(endBorder69);
            tableCellBorders252.Append(insideHorizontalBorder99);
            tableCellBorders252.Append(insideVerticalBorder69);
            Shading shading444 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin122 = new TableCellMargin();
            StartMargin startMargin123 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin122.Append(startMargin123);

            tableCellProperties252.Append(tableCellWidth252);
            tableCellProperties252.Append(gridSpan250);
            tableCellProperties252.Append(tableCellBorders252);
            tableCellProperties252.Append(shading444);
            tableCellProperties252.Append(tableCellMargin122);

            Paragraph paragraph321 = new Paragraph();

            ParagraphProperties paragraphProperties321 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId321 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification186 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties321 = new ParagraphMarkRunProperties();

            paragraphProperties321.Append(paragraphStyleId321);
            paragraphProperties321.Append(justification186);
            paragraphProperties321.Append(paragraphMarkRunProperties321);

            Run run333 = new Run();

            RunProperties runProperties333 = new RunProperties();
            FontSize fontSize420 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript420 = new FontSizeComplexScript() { Val = "16" };

            runProperties333.Append(fontSize420);
            runProperties333.Append(fontSizeComplexScript420);
            Text text214 = new Text();
            text214.Text = "Средняя месячная относительная влажность воздуха в 15 ч наиболее теплого месяца, %";

            run333.Append(runProperties333);
            run333.Append(text214);

            paragraph321.Append(paragraphProperties321);
            paragraph321.Append(run333);

            tableCell252.Append(tableCellProperties252);
            tableCell252.Append(paragraph321);

            tableRow95.Append(tableRowProperties95);
            tableRow95.Append(tableCell244);
            tableRow95.Append(tableCell245);
            tableRow95.Append(tableCell246);
            tableRow95.Append(tableCell247);
            tableRow95.Append(tableCell248);
            tableRow95.Append(tableCell249);
            tableRow95.Append(tableCell250);
            tableRow95.Append(tableCell251);
            tableRow95.Append(tableCell252);

            TableRow tableRow96 = new TableRow();
            TableRowProperties tableRowProperties96 = new TableRowProperties();

            TableCell tableCell253 = new TableCell();

            TableCellProperties tableCellProperties253 = new TableCellProperties();
            TableCellWidth tableCellWidth253 = new TableCellWidth() { Width = "873", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan251 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders253 = new TableCellBorders();
            TopBorder topBorder136 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder123 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder100 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder70 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder100 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder70 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders253.Append(topBorder136);
            tableCellBorders253.Append(startBorder123);
            tableCellBorders253.Append(bottomBorder100);
            tableCellBorders253.Append(endBorder70);
            tableCellBorders253.Append(insideHorizontalBorder100);
            tableCellBorders253.Append(insideVerticalBorder70);
            Shading shading445 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin123 = new TableCellMargin();
            StartMargin startMargin124 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin123.Append(startMargin124);

            tableCellProperties253.Append(tableCellWidth253);
            tableCellProperties253.Append(gridSpan251);
            tableCellProperties253.Append(tableCellBorders253);
            tableCellProperties253.Append(shading445);
            tableCellProperties253.Append(tableCellMargin123);

            Paragraph paragraph322 = new Paragraph();

            ParagraphProperties paragraphProperties322 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId322 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification187 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties322 = new ParagraphMarkRunProperties();

            paragraphProperties322.Append(paragraphStyleId322);
            paragraphProperties322.Append(justification187);
            paragraphProperties322.Append(paragraphMarkRunProperties322);

            Run run334 = new Run();

            RunProperties runProperties334 = new RunProperties();
            FontSize fontSize421 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript421 = new FontSizeComplexScript() { Val = "16" };

            runProperties334.Append(fontSize421);
            runProperties334.Append(fontSizeComplexScript421);
            Text text215 = new Text();
            text215.Text = "г. Москва";

            run334.Append(runProperties334);
            run334.Append(text215);

            paragraph322.Append(paragraphProperties322);
            paragraph322.Append(run334);

            tableCell253.Append(tableCellProperties253);
            tableCell253.Append(paragraph322);

            TableCell tableCell254 = new TableCell();

            TableCellProperties tableCellProperties254 = new TableCellProperties();
            TableCellWidth tableCellWidth254 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan252 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders254 = new TableCellBorders();
            TopBorder topBorder137 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder124 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder101 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder101 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders254.Append(topBorder137);
            tableCellBorders254.Append(startBorder124);
            tableCellBorders254.Append(bottomBorder101);
            tableCellBorders254.Append(insideHorizontalBorder101);
            Shading shading446 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin124 = new TableCellMargin();
            StartMargin startMargin125 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin124.Append(startMargin125);

            tableCellProperties254.Append(tableCellWidth254);
            tableCellProperties254.Append(gridSpan252);
            tableCellProperties254.Append(tableCellBorders254);
            tableCellProperties254.Append(shading446);
            tableCellProperties254.Append(tableCellMargin124);

            Paragraph paragraph323 = new Paragraph();

            ParagraphProperties paragraphProperties323 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId323 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification188 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties323 = new ParagraphMarkRunProperties();

            paragraphProperties323.Append(paragraphStyleId323);
            paragraphProperties323.Append(justification188);
            paragraphProperties323.Append(paragraphMarkRunProperties323);

            Run run335 = new Run();

            RunProperties runProperties335 = new RunProperties();
            FontSize fontSize422 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript422 = new FontSizeComplexScript() { Val = "16" };

            runProperties335.Append(fontSize422);
            runProperties335.Append(fontSizeComplexScript422);
            Text text216 = new Text();
            text216.Text = "997";

            run335.Append(runProperties335);
            run335.Append(text216);

            paragraph323.Append(paragraphProperties323);
            paragraph323.Append(run335);

            tableCell254.Append(tableCellProperties254);
            tableCell254.Append(paragraph323);

            TableCell tableCell255 = new TableCell();

            TableCellProperties tableCellProperties255 = new TableCellProperties();
            TableCellWidth tableCellWidth255 = new TableCellWidth() { Width = "1287", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan253 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders255 = new TableCellBorders();
            TopBorder topBorder138 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder125 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder102 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder102 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders255.Append(topBorder138);
            tableCellBorders255.Append(startBorder125);
            tableCellBorders255.Append(bottomBorder102);
            tableCellBorders255.Append(insideHorizontalBorder102);
            Shading shading447 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin125 = new TableCellMargin();
            StartMargin startMargin126 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin125.Append(startMargin126);

            tableCellProperties255.Append(tableCellWidth255);
            tableCellProperties255.Append(gridSpan253);
            tableCellProperties255.Append(tableCellBorders255);
            tableCellProperties255.Append(shading447);
            tableCellProperties255.Append(tableCellMargin125);

            Paragraph paragraph324 = new Paragraph();

            ParagraphProperties paragraphProperties324 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId324 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification189 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties324 = new ParagraphMarkRunProperties();

            paragraphProperties324.Append(paragraphStyleId324);
            paragraphProperties324.Append(justification189);
            paragraphProperties324.Append(paragraphMarkRunProperties324);

            Run run336 = new Run();

            RunProperties runProperties336 = new RunProperties();
            FontSize fontSize423 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript423 = new FontSizeComplexScript() { Val = "16" };

            runProperties336.Append(fontSize423);
            runProperties336.Append(fontSizeComplexScript423);
            Text text217 = new Text();
            text217.Text = "23";

            run336.Append(runProperties336);
            run336.Append(text217);

            paragraph324.Append(paragraphProperties324);
            paragraph324.Append(run336);

            tableCell255.Append(tableCellProperties255);
            tableCell255.Append(paragraph324);

            TableCell tableCell256 = new TableCell();

            TableCellProperties tableCellProperties256 = new TableCellProperties();
            TableCellWidth tableCellWidth256 = new TableCellWidth() { Width = "871", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan254 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders256 = new TableCellBorders();
            TopBorder topBorder139 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder126 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder103 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder103 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders256.Append(topBorder139);
            tableCellBorders256.Append(startBorder126);
            tableCellBorders256.Append(bottomBorder103);
            tableCellBorders256.Append(insideHorizontalBorder103);
            Shading shading448 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin126 = new TableCellMargin();
            StartMargin startMargin127 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin126.Append(startMargin127);

            tableCellProperties256.Append(tableCellWidth256);
            tableCellProperties256.Append(gridSpan254);
            tableCellProperties256.Append(tableCellBorders256);
            tableCellProperties256.Append(shading448);
            tableCellProperties256.Append(tableCellMargin126);

            Paragraph paragraph325 = new Paragraph();

            ParagraphProperties paragraphProperties325 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId325 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification190 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties325 = new ParagraphMarkRunProperties();

            paragraphProperties325.Append(paragraphStyleId325);
            paragraphProperties325.Append(justification190);
            paragraphProperties325.Append(paragraphMarkRunProperties325);

            Run run337 = new Run();

            RunProperties runProperties337 = new RunProperties();
            FontSize fontSize424 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript424 = new FontSizeComplexScript() { Val = "16" };

            runProperties337.Append(fontSize424);
            runProperties337.Append(fontSizeComplexScript424);
            Text text218 = new Text();
            text218.Text = "26";

            run337.Append(runProperties337);
            run337.Append(text218);

            paragraph325.Append(paragraphProperties325);
            paragraph325.Append(run337);

            tableCell256.Append(tableCellProperties256);
            tableCell256.Append(paragraph325);

            TableCell tableCell257 = new TableCell();

            TableCellProperties tableCellProperties257 = new TableCellProperties();
            TableCellWidth tableCellWidth257 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan255 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders257 = new TableCellBorders();
            TopBorder topBorder140 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder127 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder104 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder104 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders257.Append(topBorder140);
            tableCellBorders257.Append(startBorder127);
            tableCellBorders257.Append(bottomBorder104);
            tableCellBorders257.Append(insideHorizontalBorder104);
            Shading shading449 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin127 = new TableCellMargin();
            StartMargin startMargin128 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin127.Append(startMargin128);

            tableCellProperties257.Append(tableCellWidth257);
            tableCellProperties257.Append(gridSpan255);
            tableCellProperties257.Append(tableCellBorders257);
            tableCellProperties257.Append(shading449);
            tableCellProperties257.Append(tableCellMargin127);

            Paragraph paragraph326 = new Paragraph();

            ParagraphProperties paragraphProperties326 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId326 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification191 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties326 = new ParagraphMarkRunProperties();

            paragraphProperties326.Append(paragraphStyleId326);
            paragraphProperties326.Append(justification191);
            paragraphProperties326.Append(paragraphMarkRunProperties326);

            Run run338 = new Run();

            RunProperties runProperties338 = new RunProperties();
            FontSize fontSize425 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript425 = new FontSizeComplexScript() { Val = "16" };

            runProperties338.Append(fontSize425);
            runProperties338.Append(fontSizeComplexScript425);
            Text text219 = new Text();
            text219.Text = "23,5";

            run338.Append(runProperties338);
            run338.Append(text219);

            paragraph326.Append(paragraphProperties326);
            paragraph326.Append(run338);

            tableCell257.Append(tableCellProperties257);
            tableCell257.Append(paragraph326);

            TableCell tableCell258 = new TableCell();

            TableCellProperties tableCellProperties258 = new TableCellProperties();
            TableCellWidth tableCellWidth258 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan256 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders258 = new TableCellBorders();
            TopBorder topBorder141 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder128 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder105 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder105 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders258.Append(topBorder141);
            tableCellBorders258.Append(startBorder128);
            tableCellBorders258.Append(bottomBorder105);
            tableCellBorders258.Append(insideHorizontalBorder105);
            Shading shading450 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin128 = new TableCellMargin();
            StartMargin startMargin129 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin128.Append(startMargin129);

            tableCellProperties258.Append(tableCellWidth258);
            tableCellProperties258.Append(gridSpan256);
            tableCellProperties258.Append(tableCellBorders258);
            tableCellProperties258.Append(shading450);
            tableCellProperties258.Append(tableCellMargin128);

            Paragraph paragraph327 = new Paragraph();

            ParagraphProperties paragraphProperties327 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId327 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification192 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties327 = new ParagraphMarkRunProperties();

            paragraphProperties327.Append(paragraphStyleId327);
            paragraphProperties327.Append(justification192);
            paragraphProperties327.Append(paragraphMarkRunProperties327);

            Run run339 = new Run();

            RunProperties runProperties339 = new RunProperties();
            FontSize fontSize426 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript426 = new FontSizeComplexScript() { Val = "16" };

            runProperties339.Append(fontSize426);
            runProperties339.Append(fontSizeComplexScript426);
            Text text220 = new Text();
            text220.Text = "38";

            run339.Append(runProperties339);
            run339.Append(text220);

            paragraph327.Append(paragraphProperties327);
            paragraph327.Append(run339);

            tableCell258.Append(tableCellProperties258);
            tableCell258.Append(paragraph327);

            TableCell tableCell259 = new TableCell();

            TableCellProperties tableCellProperties259 = new TableCellProperties();
            TableCellWidth tableCellWidth259 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan257 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders259 = new TableCellBorders();
            TopBorder topBorder142 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder129 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder106 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder106 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders259.Append(topBorder142);
            tableCellBorders259.Append(startBorder129);
            tableCellBorders259.Append(bottomBorder106);
            tableCellBorders259.Append(insideHorizontalBorder106);
            Shading shading451 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin129 = new TableCellMargin();
            StartMargin startMargin130 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin129.Append(startMargin130);

            tableCellProperties259.Append(tableCellWidth259);
            tableCellProperties259.Append(gridSpan257);
            tableCellProperties259.Append(tableCellBorders259);
            tableCellProperties259.Append(shading451);
            tableCellProperties259.Append(tableCellMargin129);

            Paragraph paragraph328 = new Paragraph();

            ParagraphProperties paragraphProperties328 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId328 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification193 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties328 = new ParagraphMarkRunProperties();

            paragraphProperties328.Append(paragraphStyleId328);
            paragraphProperties328.Append(justification193);
            paragraphProperties328.Append(paragraphMarkRunProperties328);

            Run run340 = new Run();

            RunProperties runProperties340 = new RunProperties();
            FontSize fontSize427 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript427 = new FontSizeComplexScript() { Val = "16" };

            runProperties340.Append(fontSize427);
            runProperties340.Append(fontSizeComplexScript427);
            Text text221 = new Text();
            text221.Text = "9,6";

            run340.Append(runProperties340);
            run340.Append(text221);

            paragraph328.Append(paragraphProperties328);
            paragraph328.Append(run340);

            tableCell259.Append(tableCellProperties259);
            tableCell259.Append(paragraph328);

            TableCell tableCell260 = new TableCell();

            TableCellProperties tableCellProperties260 = new TableCellProperties();
            TableCellWidth tableCellWidth260 = new TableCellWidth() { Width = "1148", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan258 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders260 = new TableCellBorders();
            TopBorder topBorder143 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder130 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder107 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder107 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders260.Append(topBorder143);
            tableCellBorders260.Append(startBorder130);
            tableCellBorders260.Append(bottomBorder107);
            tableCellBorders260.Append(insideHorizontalBorder107);
            Shading shading452 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin130 = new TableCellMargin();
            StartMargin startMargin131 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin130.Append(startMargin131);

            tableCellProperties260.Append(tableCellWidth260);
            tableCellProperties260.Append(gridSpan258);
            tableCellProperties260.Append(tableCellBorders260);
            tableCellProperties260.Append(shading452);
            tableCellProperties260.Append(tableCellMargin130);

            Paragraph paragraph329 = new Paragraph();

            ParagraphProperties paragraphProperties329 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId329 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification194 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties329 = new ParagraphMarkRunProperties();

            paragraphProperties329.Append(paragraphStyleId329);
            paragraphProperties329.Append(justification194);
            paragraphProperties329.Append(paragraphMarkRunProperties329);

            Run run341 = new Run();

            RunProperties runProperties341 = new RunProperties();
            FontSize fontSize428 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript428 = new FontSizeComplexScript() { Val = "16" };

            runProperties341.Append(fontSize428);
            runProperties341.Append(fontSizeComplexScript428);
            Text text222 = new Text();
            text222.Text = "73";

            run341.Append(runProperties341);
            run341.Append(text222);

            paragraph329.Append(paragraphProperties329);
            paragraph329.Append(run341);

            tableCell260.Append(tableCellProperties260);
            tableCell260.Append(paragraph329);

            TableCell tableCell261 = new TableCell();

            TableCellProperties tableCellProperties261 = new TableCellProperties();
            TableCellWidth tableCellWidth261 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan259 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders261 = new TableCellBorders();
            TopBorder topBorder144 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder131 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder108 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder71 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder108 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder71 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders261.Append(topBorder144);
            tableCellBorders261.Append(startBorder131);
            tableCellBorders261.Append(bottomBorder108);
            tableCellBorders261.Append(endBorder71);
            tableCellBorders261.Append(insideHorizontalBorder108);
            tableCellBorders261.Append(insideVerticalBorder71);
            Shading shading453 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin131 = new TableCellMargin();
            StartMargin startMargin132 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin131.Append(startMargin132);

            tableCellProperties261.Append(tableCellWidth261);
            tableCellProperties261.Append(gridSpan259);
            tableCellProperties261.Append(tableCellBorders261);
            tableCellProperties261.Append(shading453);
            tableCellProperties261.Append(tableCellMargin131);

            Paragraph paragraph330 = new Paragraph();

            ParagraphProperties paragraphProperties330 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId330 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification195 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties330 = new ParagraphMarkRunProperties();

            paragraphProperties330.Append(paragraphStyleId330);
            paragraphProperties330.Append(justification195);
            paragraphProperties330.Append(paragraphMarkRunProperties330);

            Run run342 = new Run();

            RunProperties runProperties342 = new RunProperties();
            FontSize fontSize429 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript429 = new FontSizeComplexScript() { Val = "16" };

            runProperties342.Append(fontSize429);
            runProperties342.Append(fontSizeComplexScript429);
            Text text223 = new Text();
            text223.Text = "60";

            run342.Append(runProperties342);
            run342.Append(text223);

            paragraph330.Append(paragraphProperties330);
            paragraph330.Append(run342);

            tableCell261.Append(tableCellProperties261);
            tableCell261.Append(paragraph330);

            tableRow96.Append(tableRowProperties96);
            tableRow96.Append(tableCell253);
            tableRow96.Append(tableCell254);
            tableRow96.Append(tableCell255);
            tableRow96.Append(tableCell256);
            tableRow96.Append(tableCell257);
            tableRow96.Append(tableCell258);
            tableRow96.Append(tableCell259);
            tableRow96.Append(tableCell260);
            tableRow96.Append(tableCell261);

            TableRow tableRow97 = new TableRow();
            TableRowProperties tableRowProperties97 = new TableRowProperties();

            TableCell tableCell262 = new TableCell();

            TableCellProperties tableCellProperties262 = new TableCellProperties();
            TableCellWidth tableCellWidth262 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan260 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders262 = new TableCellBorders();
            TopBorder topBorder145 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders262.Append(topBorder145);
            Shading shading454 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties262.Append(tableCellWidth262);
            tableCellProperties262.Append(gridSpan260);
            tableCellProperties262.Append(tableCellBorders262);
            tableCellProperties262.Append(shading454);

            Paragraph paragraph331 = new Paragraph();

            ParagraphProperties paragraphProperties331 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId331 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs26 = new Tabs();
            TabStop tabStop626 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2220 };

            tabs26.Append(tabStop626);

            ParagraphMarkRunProperties paragraphMarkRunProperties331 = new ParagraphMarkRunProperties();
            FontSize fontSize430 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript430 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties331.Append(fontSize430);
            paragraphMarkRunProperties331.Append(fontSizeComplexScript430);

            paragraphProperties331.Append(paragraphStyleId331);
            paragraphProperties331.Append(tabs26);
            paragraphProperties331.Append(paragraphMarkRunProperties331);

            Run run343 = new Run();

            RunProperties runProperties343 = new RunProperties();
            FontSize fontSize431 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript431 = new FontSizeComplexScript() { Val = "26" };

            runProperties343.Append(fontSize431);
            runProperties343.Append(fontSizeComplexScript431);

            run343.Append(runProperties343);

            paragraph331.Append(paragraphProperties331);
            paragraph331.Append(run343);

            Paragraph paragraph332 = new Paragraph();

            ParagraphProperties paragraphProperties332 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId332 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs27 = new Tabs();
            TabStop tabStop627 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2220 };

            tabs27.Append(tabStop627);
            ParagraphMarkRunProperties paragraphMarkRunProperties332 = new ParagraphMarkRunProperties();

            paragraphProperties332.Append(paragraphStyleId332);
            paragraphProperties332.Append(tabs27);
            paragraphProperties332.Append(paragraphMarkRunProperties332);

            Run run344 = new Run();

            RunProperties runProperties344 = new RunProperties();
            FontSize fontSize432 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript432 = new FontSizeComplexScript() { Val = "26" };

            runProperties344.Append(fontSize432);
            runProperties344.Append(fontSizeComplexScript432);
            Text text224 = new Text();
            text224.Text = "Климатические параметры теплого периода года по СП 131.13330.2012.";

            run344.Append(runProperties344);
            run344.Append(text224);

            paragraph332.Append(paragraphProperties332);
            paragraph332.Append(run344);

            tableCell262.Append(tableCellProperties262);
            tableCell262.Append(paragraph331);
            tableCell262.Append(paragraph332);

            tableRow97.Append(tableRowProperties97);
            tableRow97.Append(tableCell262);

            TableRow tableRow98 = new TableRow();
            TableRowProperties tableRowProperties98 = new TableRowProperties();

            TableCell tableCell263 = new TableCell();

            TableCellProperties tableCellProperties263 = new TableCellProperties();
            TableCellWidth tableCellWidth263 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan261 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders263 = new TableCellBorders();
            Shading shading455 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties263.Append(tableCellWidth263);
            tableCellProperties263.Append(gridSpan261);
            tableCellProperties263.Append(tableCellBorders263);
            tableCellProperties263.Append(shading455);

            Paragraph paragraph333 = new Paragraph();

            ParagraphProperties paragraphProperties333 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId333 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties333 = new ParagraphMarkRunProperties();

            paragraphProperties333.Append(paragraphStyleId333);
            paragraphProperties333.Append(paragraphMarkRunProperties333);

            Run run345 = new Run();

            RunProperties runProperties345 = new RunProperties();
            FontSize fontSize433 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript433 = new FontSizeComplexScript() { Val = "26" };

            runProperties345.Append(fontSize433);
            runProperties345.Append(fontSizeComplexScript433);
            Text text225 = new Text();
            text225.Text = "Ветровой режим";

            run345.Append(runProperties345);
            run345.Append(text225);

            paragraph333.Append(paragraphProperties333);
            paragraph333.Append(run345);

            tableCell263.Append(tableCellProperties263);
            tableCell263.Append(paragraph333);

            tableRow98.Append(tableRowProperties98);
            tableRow98.Append(tableCell263);

            TableRow tableRow99 = new TableRow();
            TableRowProperties tableRowProperties99 = new TableRowProperties();

            TableCell tableCell264 = new TableCell();

            TableCellProperties tableCellProperties264 = new TableCellProperties();
            TableCellWidth tableCellWidth264 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan262 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders264 = new TableCellBorders();
            TopBorder topBorder146 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder109 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder109 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders264.Append(topBorder146);
            tableCellBorders264.Append(bottomBorder109);
            tableCellBorders264.Append(insideHorizontalBorder109);
            Shading shading456 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties264.Append(tableCellWidth264);
            tableCellProperties264.Append(gridSpan262);
            tableCellProperties264.Append(tableCellBorders264);
            tableCellProperties264.Append(shading456);

            Paragraph paragraph334 = new Paragraph();

            ParagraphProperties paragraphProperties334 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId334 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties334 = new ParagraphMarkRunProperties();

            paragraphProperties334.Append(paragraphStyleId334);
            paragraphProperties334.Append(paragraphMarkRunProperties334);

            Run run346 = new Run();

            RunProperties runProperties346 = new RunProperties();
            FontSize fontSize434 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript434 = new FontSizeComplexScript() { Val = "26" };

            runProperties346.Append(fontSize434);
            runProperties346.Append(fontSizeComplexScript434);
            Text text226 = new Text();
            text226.Text = "Повторяемость направления ветра и осадки холодного периода года по СП 131.13330.2012";

            run346.Append(runProperties346);
            run346.Append(text226);

            paragraph334.Append(paragraphProperties334);
            paragraph334.Append(run346);

            tableCell264.Append(tableCellProperties264);
            tableCell264.Append(paragraph334);

            tableRow99.Append(tableRowProperties99);
            tableRow99.Append(tableCell264);

            TableRow tableRow100 = new TableRow();
            TableRowProperties tableRowProperties100 = new TableRowProperties();

            TableCell tableCell265 = new TableCell();

            TableCellProperties tableCellProperties265 = new TableCellProperties();
            TableCellWidth tableCellWidth265 = new TableCellWidth() { Width = "1058", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan263 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders265 = new TableCellBorders();
            TopBorder topBorder147 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder132 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder110 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder72 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder110 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder72 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders265.Append(topBorder147);
            tableCellBorders265.Append(startBorder132);
            tableCellBorders265.Append(bottomBorder110);
            tableCellBorders265.Append(endBorder72);
            tableCellBorders265.Append(insideHorizontalBorder110);
            tableCellBorders265.Append(insideVerticalBorder72);
            Shading shading457 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin132 = new TableCellMargin();
            StartMargin startMargin133 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin132.Append(startMargin133);
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties265.Append(tableCellWidth265);
            tableCellProperties265.Append(gridSpan263);
            tableCellProperties265.Append(tableCellBorders265);
            tableCellProperties265.Append(shading457);
            tableCellProperties265.Append(tableCellMargin132);
            tableCellProperties265.Append(tableCellVerticalAlignment21);

            Paragraph paragraph335 = new Paragraph();

            ParagraphProperties paragraphProperties335 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId335 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification196 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties335 = new ParagraphMarkRunProperties();

            paragraphProperties335.Append(paragraphStyleId335);
            paragraphProperties335.Append(justification196);
            paragraphProperties335.Append(paragraphMarkRunProperties335);

            Run run347 = new Run();

            RunProperties runProperties347 = new RunProperties();
            Color color1 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize435 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript435 = new FontSizeComplexScript() { Val = "20" };

            runProperties347.Append(color1);
            runProperties347.Append(fontSize435);
            runProperties347.Append(fontSizeComplexScript435);
            Text text227 = new Text();
            text227.Text = "Количество осадков за ноябрь-март, мм";

            run347.Append(runProperties347);
            run347.Append(text227);

            paragraph335.Append(paragraphProperties335);
            paragraph335.Append(run347);

            tableCell265.Append(tableCellProperties265);
            tableCell265.Append(paragraph335);

            TableCell tableCell266 = new TableCell();

            TableCellProperties tableCellProperties266 = new TableCellProperties();
            TableCellWidth tableCellWidth266 = new TableCellWidth() { Width = "2650", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan264 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders266 = new TableCellBorders();
            TopBorder topBorder148 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder133 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder111 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder111 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders266.Append(topBorder148);
            tableCellBorders266.Append(startBorder133);
            tableCellBorders266.Append(bottomBorder111);
            tableCellBorders266.Append(insideHorizontalBorder111);
            Shading shading458 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin133 = new TableCellMargin();
            StartMargin startMargin134 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin133.Append(startMargin134);
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties266.Append(tableCellWidth266);
            tableCellProperties266.Append(gridSpan264);
            tableCellProperties266.Append(tableCellBorders266);
            tableCellProperties266.Append(shading458);
            tableCellProperties266.Append(tableCellMargin133);
            tableCellProperties266.Append(tableCellVerticalAlignment22);

            Paragraph paragraph336 = new Paragraph();

            ParagraphProperties paragraphProperties336 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId336 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification197 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties336 = new ParagraphMarkRunProperties();

            paragraphProperties336.Append(paragraphStyleId336);
            paragraphProperties336.Append(justification197);
            paragraphProperties336.Append(paragraphMarkRunProperties336);

            Run run348 = new Run();

            RunProperties runProperties348 = new RunProperties();
            Color color2 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize436 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript436 = new FontSizeComplexScript() { Val = "20" };

            runProperties348.Append(color2);
            runProperties348.Append(fontSize436);
            runProperties348.Append(fontSizeComplexScript436);
            Text text228 = new Text();
            text228.Text = "Преобладающее направление ветра за декабрь-февраль";

            run348.Append(runProperties348);
            run348.Append(text228);

            paragraph336.Append(paragraphProperties336);
            paragraph336.Append(run348);

            tableCell266.Append(tableCellProperties266);
            tableCell266.Append(paragraph336);

            TableCell tableCell267 = new TableCell();

            TableCellProperties tableCellProperties267 = new TableCellProperties();
            TableCellWidth tableCellWidth267 = new TableCellWidth() { Width = "2997", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan265 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders267 = new TableCellBorders();
            TopBorder topBorder149 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder134 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder112 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder112 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders267.Append(topBorder149);
            tableCellBorders267.Append(startBorder134);
            tableCellBorders267.Append(bottomBorder112);
            tableCellBorders267.Append(insideHorizontalBorder112);
            Shading shading459 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin134 = new TableCellMargin();
            StartMargin startMargin135 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin134.Append(startMargin135);
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties267.Append(tableCellWidth267);
            tableCellProperties267.Append(gridSpan265);
            tableCellProperties267.Append(tableCellBorders267);
            tableCellProperties267.Append(shading459);
            tableCellProperties267.Append(tableCellMargin134);
            tableCellProperties267.Append(tableCellVerticalAlignment23);

            Paragraph paragraph337 = new Paragraph();

            ParagraphProperties paragraphProperties337 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId337 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification198 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties337 = new ParagraphMarkRunProperties();

            paragraphProperties337.Append(paragraphStyleId337);
            paragraphProperties337.Append(justification198);
            paragraphProperties337.Append(paragraphMarkRunProperties337);

            Run run349 = new Run();

            RunProperties runProperties349 = new RunProperties();
            Color color3 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize437 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript437 = new FontSizeComplexScript() { Val = "20" };

            runProperties349.Append(color3);
            runProperties349.Append(fontSize437);
            runProperties349.Append(fontSizeComplexScript437);
            Text text229 = new Text();
            text229.Text = "Максимальная из средних скоростей ветра по румбам за январь, м/с";

            run349.Append(runProperties349);
            run349.Append(text229);

            paragraph337.Append(paragraphProperties337);
            paragraph337.Append(run349);

            tableCell267.Append(tableCellProperties267);
            tableCell267.Append(paragraph337);

            TableCell tableCell268 = new TableCell();

            TableCellProperties tableCellProperties268 = new TableCellProperties();
            TableCellWidth tableCellWidth268 = new TableCellWidth() { Width = "2930", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan266 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders268 = new TableCellBorders();
            TopBorder topBorder150 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder135 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder113 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder73 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder113 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder73 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders268.Append(topBorder150);
            tableCellBorders268.Append(startBorder135);
            tableCellBorders268.Append(bottomBorder113);
            tableCellBorders268.Append(endBorder73);
            tableCellBorders268.Append(insideHorizontalBorder113);
            tableCellBorders268.Append(insideVerticalBorder73);
            Shading shading460 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin135 = new TableCellMargin();
            StartMargin startMargin136 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin135.Append(startMargin136);
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties268.Append(tableCellWidth268);
            tableCellProperties268.Append(gridSpan266);
            tableCellProperties268.Append(tableCellBorders268);
            tableCellProperties268.Append(shading460);
            tableCellProperties268.Append(tableCellMargin135);
            tableCellProperties268.Append(tableCellVerticalAlignment24);

            Paragraph paragraph338 = new Paragraph();

            ParagraphProperties paragraphProperties338 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId338 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification199 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties338 = new ParagraphMarkRunProperties();

            paragraphProperties338.Append(paragraphStyleId338);
            paragraphProperties338.Append(justification199);
            paragraphProperties338.Append(paragraphMarkRunProperties338);

            Run run350 = new Run();

            RunProperties runProperties350 = new RunProperties();
            Color color4 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize438 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript438 = new FontSizeComplexScript() { Val = "20" };

            runProperties350.Append(color4);
            runProperties350.Append(fontSize438);
            runProperties350.Append(fontSizeComplexScript438);
            Text text230 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text230.Text = "Средняя скорость ветра, м/с, за период со средней суточной температурой воздуха ";

            run350.Append(runProperties350);
            run350.Append(text230);

            Run run351 = new Run();

            RunProperties runProperties351 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "Symbol", HighAnsi = "Symbol" };
            Color color5 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize439 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript439 = new FontSizeComplexScript() { Val = "20" };

            runProperties351.Append(runFonts20);
            runProperties351.Append(color5);
            runProperties351.Append(fontSize439);
            runProperties351.Append(fontSizeComplexScript439);
            Text text231 = new Text();
            text231.Text = "?";

            run351.Append(runProperties351);
            run351.Append(text231);

            Run run352 = new Run();

            RunProperties runProperties352 = new RunProperties();
            Color color6 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize440 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript440 = new FontSizeComplexScript() { Val = "20" };

            runProperties352.Append(color6);
            runProperties352.Append(fontSize440);
            runProperties352.Append(fontSizeComplexScript440);
            Text text232 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text232.Text = " 8 ";

            run352.Append(runProperties352);
            run352.Append(text232);

            Run run353 = new Run();

            RunProperties runProperties353 = new RunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Symbol", HighAnsi = "Symbol" };
            Color color7 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize441 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript441 = new FontSizeComplexScript() { Val = "20" };

            runProperties353.Append(runFonts21);
            runProperties353.Append(color7);
            runProperties353.Append(fontSize441);
            runProperties353.Append(fontSizeComplexScript441);
            Text text233 = new Text();
            text233.Text = "Ј";

            run353.Append(runProperties353);
            run353.Append(text233);

            Run run354 = new Run();

            RunProperties runProperties354 = new RunProperties();
            Color color8 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize442 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript442 = new FontSizeComplexScript() { Val = "20" };

            runProperties354.Append(color8);
            runProperties354.Append(fontSize442);
            runProperties354.Append(fontSizeComplexScript442);
            Text text234 = new Text();
            text234.Text = "С";

            run354.Append(runProperties354);
            run354.Append(text234);

            paragraph338.Append(paragraphProperties338);
            paragraph338.Append(run350);
            paragraph338.Append(run351);
            paragraph338.Append(run352);
            paragraph338.Append(run353);
            paragraph338.Append(run354);

            tableCell268.Append(tableCellProperties268);
            tableCell268.Append(paragraph338);

            tableRow100.Append(tableRowProperties100);
            tableRow100.Append(tableCell265);
            tableRow100.Append(tableCell266);
            tableRow100.Append(tableCell267);
            tableRow100.Append(tableCell268);

            TableRow tableRow101 = new TableRow();
            TableRowProperties tableRowProperties101 = new TableRowProperties();

            TableCell tableCell269 = new TableCell();

            TableCellProperties tableCellProperties269 = new TableCellProperties();
            TableCellWidth tableCellWidth269 = new TableCellWidth() { Width = "1058", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan267 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders269 = new TableCellBorders();
            TopBorder topBorder151 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder136 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder114 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder74 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder114 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder74 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders269.Append(topBorder151);
            tableCellBorders269.Append(startBorder136);
            tableCellBorders269.Append(bottomBorder114);
            tableCellBorders269.Append(endBorder74);
            tableCellBorders269.Append(insideHorizontalBorder114);
            tableCellBorders269.Append(insideVerticalBorder74);
            Shading shading461 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin136 = new TableCellMargin();
            StartMargin startMargin137 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin136.Append(startMargin137);
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties269.Append(tableCellWidth269);
            tableCellProperties269.Append(gridSpan267);
            tableCellProperties269.Append(tableCellBorders269);
            tableCellProperties269.Append(shading461);
            tableCellProperties269.Append(tableCellMargin136);
            tableCellProperties269.Append(tableCellVerticalAlignment25);

            Paragraph paragraph339 = new Paragraph();

            ParagraphProperties paragraphProperties339 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId339 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification200 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties339 = new ParagraphMarkRunProperties();

            paragraphProperties339.Append(paragraphStyleId339);
            paragraphProperties339.Append(justification200);
            paragraphProperties339.Append(paragraphMarkRunProperties339);

            Run run355 = new Run();

            RunProperties runProperties355 = new RunProperties();
            FontSize fontSize443 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript443 = new FontSizeComplexScript() { Val = "20" };

            runProperties355.Append(fontSize443);
            runProperties355.Append(fontSizeComplexScript443);
            Text text235 = new Text();
            text235.Text = "225";

            run355.Append(runProperties355);
            run355.Append(text235);

            paragraph339.Append(paragraphProperties339);
            paragraph339.Append(run355);

            tableCell269.Append(tableCellProperties269);
            tableCell269.Append(paragraph339);

            TableCell tableCell270 = new TableCell();

            TableCellProperties tableCellProperties270 = new TableCellProperties();
            TableCellWidth tableCellWidth270 = new TableCellWidth() { Width = "2650", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan268 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders270 = new TableCellBorders();
            TopBorder topBorder152 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder137 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder115 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder115 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders270.Append(topBorder152);
            tableCellBorders270.Append(startBorder137);
            tableCellBorders270.Append(bottomBorder115);
            tableCellBorders270.Append(insideHorizontalBorder115);
            Shading shading462 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin137 = new TableCellMargin();
            StartMargin startMargin138 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin137.Append(startMargin138);
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties270.Append(tableCellWidth270);
            tableCellProperties270.Append(gridSpan268);
            tableCellProperties270.Append(tableCellBorders270);
            tableCellProperties270.Append(shading462);
            tableCellProperties270.Append(tableCellMargin137);
            tableCellProperties270.Append(tableCellVerticalAlignment26);

            Paragraph paragraph340 = new Paragraph();

            ParagraphProperties paragraphProperties340 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId340 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification201 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties340 = new ParagraphMarkRunProperties();

            paragraphProperties340.Append(paragraphStyleId340);
            paragraphProperties340.Append(justification201);
            paragraphProperties340.Append(paragraphMarkRunProperties340);

            Run run356 = new Run();

            RunProperties runProperties356 = new RunProperties();
            FontSize fontSize444 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript444 = new FontSizeComplexScript() { Val = "20" };

            runProperties356.Append(fontSize444);
            runProperties356.Append(fontSizeComplexScript444);
            Text text236 = new Text();
            text236.Text = "З";

            run356.Append(runProperties356);
            run356.Append(text236);

            paragraph340.Append(paragraphProperties340);
            paragraph340.Append(run356);

            tableCell270.Append(tableCellProperties270);
            tableCell270.Append(paragraph340);

            TableCell tableCell271 = new TableCell();

            TableCellProperties tableCellProperties271 = new TableCellProperties();
            TableCellWidth tableCellWidth271 = new TableCellWidth() { Width = "2997", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan269 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders271 = new TableCellBorders();
            TopBorder topBorder153 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder138 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder116 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder116 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders271.Append(topBorder153);
            tableCellBorders271.Append(startBorder138);
            tableCellBorders271.Append(bottomBorder116);
            tableCellBorders271.Append(insideHorizontalBorder116);
            Shading shading463 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin138 = new TableCellMargin();
            StartMargin startMargin139 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin138.Append(startMargin139);
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties271.Append(tableCellWidth271);
            tableCellProperties271.Append(gridSpan269);
            tableCellProperties271.Append(tableCellBorders271);
            tableCellProperties271.Append(shading463);
            tableCellProperties271.Append(tableCellMargin138);
            tableCellProperties271.Append(tableCellVerticalAlignment27);

            Paragraph paragraph341 = new Paragraph();

            ParagraphProperties paragraphProperties341 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId341 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification202 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties341 = new ParagraphMarkRunProperties();

            paragraphProperties341.Append(paragraphStyleId341);
            paragraphProperties341.Append(justification202);
            paragraphProperties341.Append(paragraphMarkRunProperties341);

            Run run357 = new Run();

            RunProperties runProperties357 = new RunProperties();
            FontSize fontSize445 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript445 = new FontSizeComplexScript() { Val = "20" };

            runProperties357.Append(fontSize445);
            runProperties357.Append(fontSizeComplexScript445);
            Text text237 = new Text();
            text237.Text = "2";

            run357.Append(runProperties357);
            run357.Append(text237);

            paragraph341.Append(paragraphProperties341);
            paragraph341.Append(run357);

            tableCell271.Append(tableCellProperties271);
            tableCell271.Append(paragraph341);

            TableCell tableCell272 = new TableCell();

            TableCellProperties tableCellProperties272 = new TableCellProperties();
            TableCellWidth tableCellWidth272 = new TableCellWidth() { Width = "2930", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan270 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders272 = new TableCellBorders();
            TopBorder topBorder154 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder139 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder117 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder75 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder117 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder75 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders272.Append(topBorder154);
            tableCellBorders272.Append(startBorder139);
            tableCellBorders272.Append(bottomBorder117);
            tableCellBorders272.Append(endBorder75);
            tableCellBorders272.Append(insideHorizontalBorder117);
            tableCellBorders272.Append(insideVerticalBorder75);
            Shading shading464 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin139 = new TableCellMargin();
            StartMargin startMargin140 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin139.Append(startMargin140);
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties272.Append(tableCellWidth272);
            tableCellProperties272.Append(gridSpan270);
            tableCellProperties272.Append(tableCellBorders272);
            tableCellProperties272.Append(shading464);
            tableCellProperties272.Append(tableCellMargin139);
            tableCellProperties272.Append(tableCellVerticalAlignment28);

            Paragraph paragraph342 = new Paragraph();

            ParagraphProperties paragraphProperties342 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId342 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification203 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties342 = new ParagraphMarkRunProperties();

            paragraphProperties342.Append(paragraphStyleId342);
            paragraphProperties342.Append(justification203);
            paragraphProperties342.Append(paragraphMarkRunProperties342);

            Run run358 = new Run();

            RunProperties runProperties358 = new RunProperties();
            FontSize fontSize446 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript446 = new FontSizeComplexScript() { Val = "20" };

            runProperties358.Append(fontSize446);
            runProperties358.Append(fontSizeComplexScript446);
            Text text238 = new Text();
            text238.Text = "2";

            run358.Append(runProperties358);
            run358.Append(text238);

            paragraph342.Append(paragraphProperties342);
            paragraph342.Append(run358);

            tableCell272.Append(tableCellProperties272);
            tableCell272.Append(paragraph342);

            tableRow101.Append(tableRowProperties101);
            tableRow101.Append(tableCell269);
            tableRow101.Append(tableCell270);
            tableRow101.Append(tableCell271);
            tableRow101.Append(tableCell272);

            TableRow tableRow102 = new TableRow();
            TableRowProperties tableRowProperties102 = new TableRowProperties();

            TableCell tableCell273 = new TableCell();

            TableCellProperties tableCellProperties273 = new TableCellProperties();
            TableCellWidth tableCellWidth273 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan271 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders273 = new TableCellBorders();
            TopBorder topBorder155 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder118 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder118 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders273.Append(topBorder155);
            tableCellBorders273.Append(bottomBorder118);
            tableCellBorders273.Append(insideHorizontalBorder118);
            Shading shading465 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties273.Append(tableCellWidth273);
            tableCellProperties273.Append(gridSpan271);
            tableCellProperties273.Append(tableCellBorders273);
            tableCellProperties273.Append(shading465);

            Paragraph paragraph343 = new Paragraph();

            ParagraphProperties paragraphProperties343 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId343 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties343 = new ParagraphMarkRunProperties();

            paragraphProperties343.Append(paragraphStyleId343);
            paragraphProperties343.Append(paragraphMarkRunProperties343);

            Run run359 = new Run();

            RunProperties runProperties359 = new RunProperties();
            FontSize fontSize447 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript447 = new FontSizeComplexScript() { Val = "26" };

            runProperties359.Append(fontSize447);
            runProperties359.Append(fontSizeComplexScript447);
            Text text239 = new Text();
            text239.Text = "Повторяемость направления ветра и осадки теплого периода года по СП 131.13330.2012";

            run359.Append(runProperties359);
            run359.Append(text239);

            paragraph343.Append(paragraphProperties343);
            paragraph343.Append(run359);

            tableCell273.Append(tableCellProperties273);
            tableCell273.Append(paragraph343);

            tableRow102.Append(tableRowProperties102);
            tableRow102.Append(tableCell273);

            TableRow tableRow103 = new TableRow();
            TableRowProperties tableRowProperties103 = new TableRowProperties();

            TableCell tableCell274 = new TableCell();

            TableCellProperties tableCellProperties274 = new TableCellProperties();
            TableCellWidth tableCellWidth274 = new TableCellWidth() { Width = "1097", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan272 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders274 = new TableCellBorders();
            TopBorder topBorder156 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder140 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder119 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder76 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder119 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder76 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders274.Append(topBorder156);
            tableCellBorders274.Append(startBorder140);
            tableCellBorders274.Append(bottomBorder119);
            tableCellBorders274.Append(endBorder76);
            tableCellBorders274.Append(insideHorizontalBorder119);
            tableCellBorders274.Append(insideVerticalBorder76);
            Shading shading466 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin140 = new TableCellMargin();
            StartMargin startMargin141 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin140.Append(startMargin141);
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties274.Append(tableCellWidth274);
            tableCellProperties274.Append(gridSpan272);
            tableCellProperties274.Append(tableCellBorders274);
            tableCellProperties274.Append(shading466);
            tableCellProperties274.Append(tableCellMargin140);
            tableCellProperties274.Append(tableCellVerticalAlignment29);

            Paragraph paragraph344 = new Paragraph();

            ParagraphProperties paragraphProperties344 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId344 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification204 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties344 = new ParagraphMarkRunProperties();

            paragraphProperties344.Append(paragraphStyleId344);
            paragraphProperties344.Append(justification204);
            paragraphProperties344.Append(paragraphMarkRunProperties344);

            Run run360 = new Run();

            RunProperties runProperties360 = new RunProperties();
            Color color9 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize448 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript448 = new FontSizeComplexScript() { Val = "20" };

            runProperties360.Append(color9);
            runProperties360.Append(fontSize448);
            runProperties360.Append(fontSizeComplexScript448);
            Text text240 = new Text();
            text240.Text = "Количество осадков за апрель-октябрь, мм";

            run360.Append(runProperties360);
            run360.Append(text240);

            paragraph344.Append(paragraphProperties344);
            paragraph344.Append(run360);

            tableCell274.Append(tableCellProperties274);
            tableCell274.Append(paragraph344);

            TableCell tableCell275 = new TableCell();

            TableCellProperties tableCellProperties275 = new TableCellProperties();
            TableCellWidth tableCellWidth275 = new TableCellWidth() { Width = "2699", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan273 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders275 = new TableCellBorders();
            TopBorder topBorder157 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder141 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder120 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder120 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders275.Append(topBorder157);
            tableCellBorders275.Append(startBorder141);
            tableCellBorders275.Append(bottomBorder120);
            tableCellBorders275.Append(insideHorizontalBorder120);
            Shading shading467 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin141 = new TableCellMargin();
            StartMargin startMargin142 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin141.Append(startMargin142);
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties275.Append(tableCellWidth275);
            tableCellProperties275.Append(gridSpan273);
            tableCellProperties275.Append(tableCellBorders275);
            tableCellProperties275.Append(shading467);
            tableCellProperties275.Append(tableCellMargin141);
            tableCellProperties275.Append(tableCellVerticalAlignment30);

            Paragraph paragraph345 = new Paragraph();

            ParagraphProperties paragraphProperties345 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId345 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification205 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties345 = new ParagraphMarkRunProperties();

            paragraphProperties345.Append(paragraphStyleId345);
            paragraphProperties345.Append(justification205);
            paragraphProperties345.Append(paragraphMarkRunProperties345);

            Run run361 = new Run();

            RunProperties runProperties361 = new RunProperties();
            Color color10 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize449 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript449 = new FontSizeComplexScript() { Val = "20" };

            runProperties361.Append(color10);
            runProperties361.Append(fontSize449);
            runProperties361.Append(fontSizeComplexScript449);
            Text text241 = new Text();
            text241.Text = "Суточный максимум осадков мм";

            run361.Append(runProperties361);
            run361.Append(text241);

            paragraph345.Append(paragraphProperties345);
            paragraph345.Append(run361);

            tableCell275.Append(tableCellProperties275);
            tableCell275.Append(paragraph345);

            TableCell tableCell276 = new TableCell();

            TableCellProperties tableCellProperties276 = new TableCellProperties();
            TableCellWidth tableCellWidth276 = new TableCellWidth() { Width = "2956", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan274 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders276 = new TableCellBorders();
            TopBorder topBorder158 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder142 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder121 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder121 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders276.Append(topBorder158);
            tableCellBorders276.Append(startBorder142);
            tableCellBorders276.Append(bottomBorder121);
            tableCellBorders276.Append(insideHorizontalBorder121);
            Shading shading468 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin142 = new TableCellMargin();
            StartMargin startMargin143 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin142.Append(startMargin143);
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties276.Append(tableCellWidth276);
            tableCellProperties276.Append(gridSpan274);
            tableCellProperties276.Append(tableCellBorders276);
            tableCellProperties276.Append(shading468);
            tableCellProperties276.Append(tableCellMargin142);
            tableCellProperties276.Append(tableCellVerticalAlignment31);

            Paragraph paragraph346 = new Paragraph();

            ParagraphProperties paragraphProperties346 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId346 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification206 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties346 = new ParagraphMarkRunProperties();

            paragraphProperties346.Append(paragraphStyleId346);
            paragraphProperties346.Append(justification206);
            paragraphProperties346.Append(paragraphMarkRunProperties346);

            Run run362 = new Run();

            RunProperties runProperties362 = new RunProperties();
            Color color11 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize450 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript450 = new FontSizeComplexScript() { Val = "20" };

            runProperties362.Append(color11);
            runProperties362.Append(fontSize450);
            runProperties362.Append(fontSizeComplexScript450);
            Text text242 = new Text();
            text242.Text = "Преобладающее направление ветра за июнь-август";

            run362.Append(runProperties362);
            run362.Append(text242);

            paragraph346.Append(paragraphProperties346);
            paragraph346.Append(run362);

            tableCell276.Append(tableCellProperties276);
            tableCell276.Append(paragraph346);

            TableCell tableCell277 = new TableCell();

            TableCellProperties tableCellProperties277 = new TableCellProperties();
            TableCellWidth tableCellWidth277 = new TableCellWidth() { Width = "2883", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan275 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders277 = new TableCellBorders();
            TopBorder topBorder159 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder143 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder122 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder77 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder122 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder77 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders277.Append(topBorder159);
            tableCellBorders277.Append(startBorder143);
            tableCellBorders277.Append(bottomBorder122);
            tableCellBorders277.Append(endBorder77);
            tableCellBorders277.Append(insideHorizontalBorder122);
            tableCellBorders277.Append(insideVerticalBorder77);
            Shading shading469 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin143 = new TableCellMargin();
            StartMargin startMargin144 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin143.Append(startMargin144);
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties277.Append(tableCellWidth277);
            tableCellProperties277.Append(gridSpan275);
            tableCellProperties277.Append(tableCellBorders277);
            tableCellProperties277.Append(shading469);
            tableCellProperties277.Append(tableCellMargin143);
            tableCellProperties277.Append(tableCellVerticalAlignment32);

            Paragraph paragraph347 = new Paragraph();

            ParagraphProperties paragraphProperties347 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId347 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification207 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties347 = new ParagraphMarkRunProperties();

            paragraphProperties347.Append(paragraphStyleId347);
            paragraphProperties347.Append(justification207);
            paragraphProperties347.Append(paragraphMarkRunProperties347);

            Run run363 = new Run();

            RunProperties runProperties363 = new RunProperties();
            Color color12 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize451 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript451 = new FontSizeComplexScript() { Val = "20" };

            runProperties363.Append(color12);
            runProperties363.Append(fontSize451);
            runProperties363.Append(fontSizeComplexScript451);
            Text text243 = new Text();
            text243.Text = "Минимальная из средних скоростей ветра по румбам за июль, м/с";

            run363.Append(runProperties363);
            run363.Append(text243);

            paragraph347.Append(paragraphProperties347);
            paragraph347.Append(run363);

            tableCell277.Append(tableCellProperties277);
            tableCell277.Append(paragraph347);

            tableRow103.Append(tableRowProperties103);
            tableRow103.Append(tableCell274);
            tableRow103.Append(tableCell275);
            tableRow103.Append(tableCell276);
            tableRow103.Append(tableCell277);

            TableRow tableRow104 = new TableRow();
            TableRowProperties tableRowProperties104 = new TableRowProperties();

            TableCell tableCell278 = new TableCell();

            TableCellProperties tableCellProperties278 = new TableCellProperties();
            TableCellWidth tableCellWidth278 = new TableCellWidth() { Width = "1097", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan276 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders278 = new TableCellBorders();
            TopBorder topBorder160 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder144 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder123 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder123 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders278.Append(topBorder160);
            tableCellBorders278.Append(startBorder144);
            tableCellBorders278.Append(bottomBorder123);
            tableCellBorders278.Append(insideHorizontalBorder123);
            Shading shading470 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin144 = new TableCellMargin();
            StartMargin startMargin145 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin144.Append(startMargin145);

            tableCellProperties278.Append(tableCellWidth278);
            tableCellProperties278.Append(gridSpan276);
            tableCellProperties278.Append(tableCellBorders278);
            tableCellProperties278.Append(shading470);
            tableCellProperties278.Append(tableCellMargin144);

            Paragraph paragraph348 = new Paragraph();

            ParagraphProperties paragraphProperties348 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId348 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification208 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties348 = new ParagraphMarkRunProperties();

            paragraphProperties348.Append(paragraphStyleId348);
            paragraphProperties348.Append(justification208);
            paragraphProperties348.Append(paragraphMarkRunProperties348);

            Run run364 = new Run();

            RunProperties runProperties364 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { EastAsia = "TimesNewRomanPSMT" };
            FontSize fontSize452 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript452 = new FontSizeComplexScript() { Val = "20" };

            runProperties364.Append(runFonts22);
            runProperties364.Append(fontSize452);
            runProperties364.Append(fontSizeComplexScript452);
            Text text244 = new Text();
            text244.Text = "465";

            run364.Append(runProperties364);
            run364.Append(text244);

            paragraph348.Append(paragraphProperties348);
            paragraph348.Append(run364);

            tableCell278.Append(tableCellProperties278);
            tableCell278.Append(paragraph348);

            TableCell tableCell279 = new TableCell();

            TableCellProperties tableCellProperties279 = new TableCellProperties();
            TableCellWidth tableCellWidth279 = new TableCellWidth() { Width = "2699", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan277 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders279 = new TableCellBorders();
            TopBorder topBorder161 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder145 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder124 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder124 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders279.Append(topBorder161);
            tableCellBorders279.Append(startBorder145);
            tableCellBorders279.Append(bottomBorder124);
            tableCellBorders279.Append(insideHorizontalBorder124);
            Shading shading471 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin145 = new TableCellMargin();
            StartMargin startMargin146 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin145.Append(startMargin146);

            tableCellProperties279.Append(tableCellWidth279);
            tableCellProperties279.Append(gridSpan277);
            tableCellProperties279.Append(tableCellBorders279);
            tableCellProperties279.Append(shading471);
            tableCellProperties279.Append(tableCellMargin145);

            Paragraph paragraph349 = new Paragraph();

            ParagraphProperties paragraphProperties349 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId349 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification209 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties349 = new ParagraphMarkRunProperties();

            paragraphProperties349.Append(paragraphStyleId349);
            paragraphProperties349.Append(justification209);
            paragraphProperties349.Append(paragraphMarkRunProperties349);

            Run run365 = new Run();

            RunProperties runProperties365 = new RunProperties();
            RunFonts runFonts23 = new RunFonts() { EastAsia = "TimesNewRomanPSMT" };
            FontSize fontSize453 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript453 = new FontSizeComplexScript() { Val = "20" };

            runProperties365.Append(runFonts23);
            runProperties365.Append(fontSize453);
            runProperties365.Append(fontSizeComplexScript453);
            Text text245 = new Text();
            text245.Text = "63";

            run365.Append(runProperties365);
            run365.Append(text245);

            paragraph349.Append(paragraphProperties349);
            paragraph349.Append(run365);

            tableCell279.Append(tableCellProperties279);
            tableCell279.Append(paragraph349);

            TableCell tableCell280 = new TableCell();

            TableCellProperties tableCellProperties280 = new TableCellProperties();
            TableCellWidth tableCellWidth280 = new TableCellWidth() { Width = "2956", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan278 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders280 = new TableCellBorders();
            TopBorder topBorder162 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder146 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder125 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder125 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders280.Append(topBorder162);
            tableCellBorders280.Append(startBorder146);
            tableCellBorders280.Append(bottomBorder125);
            tableCellBorders280.Append(insideHorizontalBorder125);
            Shading shading472 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin146 = new TableCellMargin();
            StartMargin startMargin147 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin146.Append(startMargin147);

            tableCellProperties280.Append(tableCellWidth280);
            tableCellProperties280.Append(gridSpan278);
            tableCellProperties280.Append(tableCellBorders280);
            tableCellProperties280.Append(shading472);
            tableCellProperties280.Append(tableCellMargin146);

            Paragraph paragraph350 = new Paragraph();

            ParagraphProperties paragraphProperties350 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId350 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification210 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties350 = new ParagraphMarkRunProperties();

            paragraphProperties350.Append(paragraphStyleId350);
            paragraphProperties350.Append(justification210);
            paragraphProperties350.Append(paragraphMarkRunProperties350);

            Run run366 = new Run();

            RunProperties runProperties366 = new RunProperties();
            FontSize fontSize454 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript454 = new FontSizeComplexScript() { Val = "20" };

            runProperties366.Append(fontSize454);
            runProperties366.Append(fontSizeComplexScript454);
            Text text246 = new Text();
            text246.Text = "Ю-В";

            run366.Append(runProperties366);
            run366.Append(text246);

            paragraph350.Append(paragraphProperties350);
            paragraph350.Append(run366);

            tableCell280.Append(tableCellProperties280);
            tableCell280.Append(paragraph350);

            TableCell tableCell281 = new TableCell();

            TableCellProperties tableCellProperties281 = new TableCellProperties();
            TableCellWidth tableCellWidth281 = new TableCellWidth() { Width = "2883", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan279 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders281 = new TableCellBorders();
            TopBorder topBorder163 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder147 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder126 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder78 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder126 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder78 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders281.Append(topBorder163);
            tableCellBorders281.Append(startBorder147);
            tableCellBorders281.Append(bottomBorder126);
            tableCellBorders281.Append(endBorder78);
            tableCellBorders281.Append(insideHorizontalBorder126);
            tableCellBorders281.Append(insideVerticalBorder78);
            Shading shading473 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin147 = new TableCellMargin();
            StartMargin startMargin148 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin147.Append(startMargin148);

            tableCellProperties281.Append(tableCellWidth281);
            tableCellProperties281.Append(gridSpan279);
            tableCellProperties281.Append(tableCellBorders281);
            tableCellProperties281.Append(shading473);
            tableCellProperties281.Append(tableCellMargin147);

            Paragraph paragraph351 = new Paragraph();

            ParagraphProperties paragraphProperties351 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId351 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification211 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties351 = new ParagraphMarkRunProperties();

            paragraphProperties351.Append(paragraphStyleId351);
            paragraphProperties351.Append(justification211);
            paragraphProperties351.Append(paragraphMarkRunProperties351);

            Run run367 = new Run();

            RunProperties runProperties367 = new RunProperties();
            FontSize fontSize455 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript455 = new FontSizeComplexScript() { Val = "20" };

            runProperties367.Append(fontSize455);
            runProperties367.Append(fontSizeComplexScript455);
            Text text247 = new Text();
            text247.Text = "0";

            run367.Append(runProperties367);
            run367.Append(text247);

            paragraph351.Append(paragraphProperties351);
            paragraph351.Append(run367);

            tableCell281.Append(tableCellProperties281);
            tableCell281.Append(paragraph351);

            tableRow104.Append(tableRowProperties104);
            tableRow104.Append(tableCell278);
            tableRow104.Append(tableCell279);
            tableRow104.Append(tableCell280);
            tableRow104.Append(tableCell281);

            TableRow tableRow105 = new TableRow();
            TableRowProperties tableRowProperties105 = new TableRowProperties();

            TableCell tableCell282 = new TableCell();

            TableCellProperties tableCellProperties282 = new TableCellProperties();
            TableCellWidth tableCellWidth282 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan280 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders282 = new TableCellBorders();
            Shading shading474 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties282.Append(tableCellWidth282);
            tableCellProperties282.Append(gridSpan280);
            tableCellProperties282.Append(tableCellBorders282);
            tableCellProperties282.Append(shading474);

            Paragraph paragraph352 = new Paragraph();

            ParagraphProperties paragraphProperties352 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId352 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties352 = new ParagraphMarkRunProperties();

            paragraphProperties352.Append(paragraphStyleId352);
            paragraphProperties352.Append(paragraphMarkRunProperties352);

            Run run368 = new Run();
            RunProperties runProperties368 = new RunProperties();

            run368.Append(runProperties368);

            paragraph352.Append(paragraphProperties352);
            paragraph352.Append(run368);

            tableCell282.Append(tableCellProperties282);
            tableCell282.Append(paragraph352);

            tableRow105.Append(tableRowProperties105);
            tableRow105.Append(tableCell282);

            TableRow tableRow106 = new TableRow();
            TableRowProperties tableRowProperties106 = new TableRowProperties();

            TableCell tableCell283 = new TableCell();

            TableCellProperties tableCellProperties283 = new TableCellProperties();
            TableCellWidth tableCellWidth283 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan281 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders283 = new TableCellBorders();
            Shading shading475 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties283.Append(tableCellWidth283);
            tableCellProperties283.Append(gridSpan281);
            tableCellProperties283.Append(tableCellBorders283);
            tableCellProperties283.Append(shading475);

            Paragraph paragraph353 = new Paragraph();

            ParagraphProperties paragraphProperties353 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId353 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties353 = new ParagraphMarkRunProperties();

            paragraphProperties353.Append(paragraphStyleId353);
            paragraphProperties353.Append(paragraphMarkRunProperties353);

            Run run369 = new Run();

            RunProperties runProperties369 = new RunProperties();
            Bold bold23 = new Bold();
            FontSize fontSize456 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript456 = new FontSizeComplexScript() { Val = "26" };

            runProperties369.Append(bold23);
            runProperties369.Append(fontSize456);
            runProperties369.Append(fontSizeComplexScript456);
            Text text248 = new Text();
            text248.Text = "1.9. Наличие вокруг объекта других производств, населенных пунктов, жилых зданий и иных объектов массового скопления людей, их размещение по отношению к объекту:";

            run369.Append(runProperties369);
            run369.Append(text248);

            paragraph353.Append(paragraphProperties353);
            paragraph353.Append(run369);

            tableCell283.Append(tableCellProperties283);
            tableCell283.Append(paragraph353);

            tableRow106.Append(tableRowProperties106);
            tableRow106.Append(tableCell283);

            TableRow tableRow107 = new TableRow();
            TableRowProperties tableRowProperties107 = new TableRowProperties();

            TableCell tableCell284 = new TableCell();

            TableCellProperties tableCellProperties284 = new TableCellProperties();
            TableCellWidth tableCellWidth284 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan282 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders284 = new TableCellBorders();
            TopBorder topBorder164 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder148 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder127 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder127 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders284.Append(topBorder164);
            tableCellBorders284.Append(startBorder148);
            tableCellBorders284.Append(bottomBorder127);
            tableCellBorders284.Append(insideHorizontalBorder127);
            Shading shading476 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin148 = new TableCellMargin();
            TopMargin topMargin2 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin149 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin2 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin148.Append(topMargin2);
            tableCellMargin148.Append(startMargin149);
            tableCellMargin148.Append(bottomMargin2);
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties284.Append(tableCellWidth284);
            tableCellProperties284.Append(gridSpan282);
            tableCellProperties284.Append(tableCellBorders284);
            tableCellProperties284.Append(shading476);
            tableCellProperties284.Append(tableCellMargin148);
            tableCellProperties284.Append(tableCellVerticalAlignment33);

            Paragraph paragraph354 = new Paragraph();

            ParagraphProperties paragraphProperties354 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId354 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification212 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties354 = new ParagraphMarkRunProperties();

            paragraphProperties354.Append(paragraphStyleId354);
            paragraphProperties354.Append(justification212);
            paragraphProperties354.Append(paragraphMarkRunProperties354);

            Run run370 = new Run();

            RunProperties runProperties370 = new RunProperties();
            RunStyle runStyle5 = new RunStyle() { Val = "FontStyle62" };
            Bold bold24 = new Bold() { Val = false };
            FontSize fontSize457 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript457 = new FontSizeComplexScript() { Val = "26" };

            runProperties370.Append(runStyle5);
            runProperties370.Append(bold24);
            runProperties370.Append(fontSize457);
            runProperties370.Append(fontSizeComplexScript457);
            Text text249 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text249.Text = "№ ";

            run370.Append(runProperties370);
            run370.Append(text249);

            Run run371 = new Run();

            RunProperties runProperties371 = new RunProperties();
            RunStyle runStyle6 = new RunStyle() { Val = "FontStyle62" };
            Bold bold25 = new Bold() { Val = false };
            FontSize fontSize458 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript458 = new FontSizeComplexScript() { Val = "26" };

            runProperties371.Append(runStyle6);
            runProperties371.Append(bold25);
            runProperties371.Append(fontSize458);
            runProperties371.Append(fontSizeComplexScript458);
            Text text250 = new Text();
            text250.Text = "п/п";

            run371.Append(runProperties371);
            run371.Append(text250);

            paragraph354.Append(paragraphProperties354);
            paragraph354.Append(run370);
            paragraph354.Append(run371);

            tableCell284.Append(tableCellProperties284);
            tableCell284.Append(paragraph354);

            TableCell tableCell285 = new TableCell();

            TableCellProperties tableCellProperties285 = new TableCellProperties();
            TableCellWidth tableCellWidth285 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan283 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders285 = new TableCellBorders();
            TopBorder topBorder165 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder128 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder128 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders285.Append(topBorder165);
            tableCellBorders285.Append(bottomBorder128);
            tableCellBorders285.Append(insideHorizontalBorder128);
            Shading shading477 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin149 = new TableCellMargin();
            TopMargin topMargin3 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin3 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin149.Append(topMargin3);
            tableCellMargin149.Append(bottomMargin3);
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties285.Append(tableCellWidth285);
            tableCellProperties285.Append(gridSpan283);
            tableCellProperties285.Append(tableCellBorders285);
            tableCellProperties285.Append(shading477);
            tableCellProperties285.Append(tableCellMargin149);
            tableCellProperties285.Append(tableCellVerticalAlignment34);

            Paragraph paragraph355 = new Paragraph();

            ParagraphProperties paragraphProperties355 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId355 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification213 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties355 = new ParagraphMarkRunProperties();

            paragraphProperties355.Append(paragraphStyleId355);
            paragraphProperties355.Append(justification213);
            paragraphProperties355.Append(paragraphMarkRunProperties355);

            Run run372 = new Run();

            RunProperties runProperties372 = new RunProperties();
            RunStyle runStyle7 = new RunStyle() { Val = "FontStyle62" };
            Bold bold26 = new Bold() { Val = false };
            FontSize fontSize459 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript459 = new FontSizeComplexScript() { Val = "26" };

            runProperties372.Append(runStyle7);
            runProperties372.Append(bold26);
            runProperties372.Append(fontSize459);
            runProperties372.Append(fontSizeComplexScript459);
            Text text251 = new Text();
            text251.Text = "Наименование объекта";

            run372.Append(runProperties372);
            run372.Append(text251);

            paragraph355.Append(paragraphProperties355);
            paragraph355.Append(run372);

            tableCell285.Append(tableCellProperties285);
            tableCell285.Append(paragraph355);

            TableCell tableCell286 = new TableCell();

            TableCellProperties tableCellProperties286 = new TableCellProperties();
            TableCellWidth tableCellWidth286 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan284 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders286 = new TableCellBorders();
            TopBorder topBorder166 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder129 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder129 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders286.Append(topBorder166);
            tableCellBorders286.Append(bottomBorder129);
            tableCellBorders286.Append(insideHorizontalBorder129);
            Shading shading478 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin150 = new TableCellMargin();
            TopMargin topMargin4 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin4 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin150.Append(topMargin4);
            tableCellMargin150.Append(bottomMargin4);

            tableCellProperties286.Append(tableCellWidth286);
            tableCellProperties286.Append(gridSpan284);
            tableCellProperties286.Append(tableCellBorders286);
            tableCellProperties286.Append(shading478);
            tableCellProperties286.Append(tableCellMargin150);

            Paragraph paragraph356 = new Paragraph();

            ParagraphProperties paragraphProperties356 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId356 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification214 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties356 = new ParagraphMarkRunProperties();

            paragraphProperties356.Append(paragraphStyleId356);
            paragraphProperties356.Append(justification214);
            paragraphProperties356.Append(paragraphMarkRunProperties356);

            Run run373 = new Run();

            RunProperties runProperties373 = new RunProperties();
            RunStyle runStyle8 = new RunStyle() { Val = "FontStyle62" };
            Bold bold27 = new Bold() { Val = false };
            FontSize fontSize460 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript460 = new FontSizeComplexScript() { Val = "26" };

            runProperties373.Append(runStyle8);
            runProperties373.Append(bold27);
            runProperties373.Append(fontSize460);
            runProperties373.Append(fontSizeComplexScript460);
            Text text252 = new Text();
            text252.Text = "Кол-во людей";

            run373.Append(runProperties373);
            run373.Append(text252);

            paragraph356.Append(paragraphProperties356);
            paragraph356.Append(run373);

            tableCell286.Append(tableCellProperties286);
            tableCell286.Append(paragraph356);

            TableCell tableCell287 = new TableCell();

            TableCellProperties tableCellProperties287 = new TableCellProperties();
            TableCellWidth tableCellWidth287 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan285 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders287 = new TableCellBorders();
            TopBorder topBorder167 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder130 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder130 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders287.Append(topBorder167);
            tableCellBorders287.Append(bottomBorder130);
            tableCellBorders287.Append(insideHorizontalBorder130);
            Shading shading479 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin151 = new TableCellMargin();
            TopMargin topMargin5 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin5 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin151.Append(topMargin5);
            tableCellMargin151.Append(bottomMargin5);

            tableCellProperties287.Append(tableCellWidth287);
            tableCellProperties287.Append(gridSpan285);
            tableCellProperties287.Append(tableCellBorders287);
            tableCellProperties287.Append(shading479);
            tableCellProperties287.Append(tableCellMargin151);

            Paragraph paragraph357 = new Paragraph();

            ParagraphProperties paragraphProperties357 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId357 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification215 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties357 = new ParagraphMarkRunProperties();

            paragraphProperties357.Append(paragraphStyleId357);
            paragraphProperties357.Append(justification215);
            paragraphProperties357.Append(paragraphMarkRunProperties357);

            Run run374 = new Run();

            RunProperties runProperties374 = new RunProperties();
            RunStyle runStyle9 = new RunStyle() { Val = "FontStyle62" };
            Bold bold28 = new Bold() { Val = false };
            FontSize fontSize461 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript461 = new FontSizeComplexScript() { Val = "26" };

            runProperties374.Append(runStyle9);
            runProperties374.Append(bold28);
            runProperties374.Append(fontSize461);
            runProperties374.Append(fontSizeComplexScript461);
            Text text253 = new Text();
            text253.Text = "Сторона расположения";

            run374.Append(runProperties374);
            run374.Append(text253);

            paragraph357.Append(paragraphProperties357);
            paragraph357.Append(run374);

            tableCell287.Append(tableCellProperties287);
            tableCell287.Append(paragraph357);

            TableCell tableCell288 = new TableCell();

            TableCellProperties tableCellProperties288 = new TableCellProperties();
            TableCellWidth tableCellWidth288 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan286 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders288 = new TableCellBorders();
            TopBorder topBorder168 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder149 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder131 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder79 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder131 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder79 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders288.Append(topBorder168);
            tableCellBorders288.Append(startBorder149);
            tableCellBorders288.Append(bottomBorder131);
            tableCellBorders288.Append(endBorder79);
            tableCellBorders288.Append(insideHorizontalBorder131);
            tableCellBorders288.Append(insideVerticalBorder79);
            Shading shading480 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin152 = new TableCellMargin();
            TopMargin topMargin6 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin150 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin6 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin152.Append(topMargin6);
            tableCellMargin152.Append(startMargin150);
            tableCellMargin152.Append(bottomMargin6);

            tableCellProperties288.Append(tableCellWidth288);
            tableCellProperties288.Append(gridSpan286);
            tableCellProperties288.Append(tableCellBorders288);
            tableCellProperties288.Append(shading480);
            tableCellProperties288.Append(tableCellMargin152);

            Paragraph paragraph358 = new Paragraph();

            ParagraphProperties paragraphProperties358 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId358 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification216 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties358 = new ParagraphMarkRunProperties();

            paragraphProperties358.Append(paragraphStyleId358);
            paragraphProperties358.Append(justification216);
            paragraphProperties358.Append(paragraphMarkRunProperties358);

            Run run375 = new Run();

            RunProperties runProperties375 = new RunProperties();
            RunStyle runStyle10 = new RunStyle() { Val = "FontStyle62" };
            Bold bold29 = new Bold() { Val = false };
            FontSize fontSize462 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript462 = new FontSizeComplexScript() { Val = "26" };

            runProperties375.Append(runStyle10);
            runProperties375.Append(bold29);
            runProperties375.Append(fontSize462);
            runProperties375.Append(fontSizeComplexScript462);
            Text text254 = new Text();
            text254.Text = "Расстояние до объекта, м";

            run375.Append(runProperties375);
            run375.Append(text254);

            paragraph358.Append(paragraphProperties358);
            paragraph358.Append(run375);

            tableCell288.Append(tableCellProperties288);
            tableCell288.Append(paragraph358);

            tableRow107.Append(tableRowProperties107);
            tableRow107.Append(tableCell284);
            tableRow107.Append(tableCell285);
            tableRow107.Append(tableCell286);
            tableRow107.Append(tableCell287);
            tableRow107.Append(tableCell288);

            TableRow tableRow108 = new TableRow();
            TableRowProperties tableRowProperties108 = new TableRowProperties();

            TableCell tableCell289 = new TableCell();

            TableCellProperties tableCellProperties289 = new TableCellProperties();
            TableCellWidth tableCellWidth289 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan287 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders289 = new TableCellBorders();
            TopBorder topBorder169 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder150 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder132 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder132 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders289.Append(topBorder169);
            tableCellBorders289.Append(startBorder150);
            tableCellBorders289.Append(bottomBorder132);
            tableCellBorders289.Append(insideHorizontalBorder132);
            Shading shading481 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin153 = new TableCellMargin();
            TopMargin topMargin7 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin151 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin7 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin153.Append(topMargin7);
            tableCellMargin153.Append(startMargin151);
            tableCellMargin153.Append(bottomMargin7);

            tableCellProperties289.Append(tableCellWidth289);
            tableCellProperties289.Append(gridSpan287);
            tableCellProperties289.Append(tableCellBorders289);
            tableCellProperties289.Append(shading481);
            tableCellProperties289.Append(tableCellMargin153);

            Paragraph paragraph359 = new Paragraph();

            ParagraphProperties paragraphProperties359 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId359 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification217 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties359 = new ParagraphMarkRunProperties();

            paragraphProperties359.Append(paragraphStyleId359);
            paragraphProperties359.Append(justification217);
            paragraphProperties359.Append(paragraphMarkRunProperties359);

            Run run376 = new Run();

            RunProperties runProperties376 = new RunProperties();
            RunStyle runStyle11 = new RunStyle() { Val = "FontStyle62" };
            Bold bold30 = new Bold() { Val = false };
            FontSize fontSize463 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript463 = new FontSizeComplexScript() { Val = "26" };

            runProperties376.Append(runStyle11);
            runProperties376.Append(bold30);
            runProperties376.Append(fontSize463);
            runProperties376.Append(fontSizeComplexScript463);
            Text text255 = new Text();
            text255.Text = "1";

            run376.Append(runProperties376);
            run376.Append(text255);

            paragraph359.Append(paragraphProperties359);
            paragraph359.Append(run376);

            tableCell289.Append(tableCellProperties289);
            tableCell289.Append(paragraph359);

            TableCell tableCell290 = new TableCell();

            TableCellProperties tableCellProperties290 = new TableCellProperties();
            TableCellWidth tableCellWidth290 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan288 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders290 = new TableCellBorders();
            TopBorder topBorder170 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder133 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder133 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders290.Append(topBorder170);
            tableCellBorders290.Append(bottomBorder133);
            tableCellBorders290.Append(insideHorizontalBorder133);
            Shading shading482 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin154 = new TableCellMargin();
            TopMargin topMargin8 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin8 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin154.Append(topMargin8);
            tableCellMargin154.Append(bottomMargin8);

            tableCellProperties290.Append(tableCellWidth290);
            tableCellProperties290.Append(gridSpan288);
            tableCellProperties290.Append(tableCellBorders290);
            tableCellProperties290.Append(shading482);
            tableCellProperties290.Append(tableCellMargin154);

            Paragraph paragraph360 = new Paragraph();

            ParagraphProperties paragraphProperties360 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId360 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification218 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties360 = new ParagraphMarkRunProperties();

            paragraphProperties360.Append(paragraphStyleId360);
            paragraphProperties360.Append(justification218);
            paragraphProperties360.Append(paragraphMarkRunProperties360);

            Run run377 = new Run();

            RunProperties runProperties377 = new RunProperties();
            RunStyle runStyle12 = new RunStyle() { Val = "FontStyle62" };
            Bold bold31 = new Bold() { Val = false };
            FontSize fontSize464 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript464 = new FontSizeComplexScript() { Val = "26" };

            runProperties377.Append(runStyle12);
            runProperties377.Append(bold31);
            runProperties377.Append(fontSize464);
            runProperties377.Append(fontSizeComplexScript464);
            Text text256 = new Text();
            text256.Text = "2";

            run377.Append(runProperties377);
            run377.Append(text256);

            paragraph360.Append(paragraphProperties360);
            paragraph360.Append(run377);

            tableCell290.Append(tableCellProperties290);
            tableCell290.Append(paragraph360);

            TableCell tableCell291 = new TableCell();

            TableCellProperties tableCellProperties291 = new TableCellProperties();
            TableCellWidth tableCellWidth291 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan289 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders291 = new TableCellBorders();
            TopBorder topBorder171 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder134 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder134 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders291.Append(topBorder171);
            tableCellBorders291.Append(bottomBorder134);
            tableCellBorders291.Append(insideHorizontalBorder134);
            Shading shading483 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin155 = new TableCellMargin();
            TopMargin topMargin9 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin9 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin155.Append(topMargin9);
            tableCellMargin155.Append(bottomMargin9);

            tableCellProperties291.Append(tableCellWidth291);
            tableCellProperties291.Append(gridSpan289);
            tableCellProperties291.Append(tableCellBorders291);
            tableCellProperties291.Append(shading483);
            tableCellProperties291.Append(tableCellMargin155);

            Paragraph paragraph361 = new Paragraph();

            ParagraphProperties paragraphProperties361 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId361 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification219 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties361 = new ParagraphMarkRunProperties();

            paragraphProperties361.Append(paragraphStyleId361);
            paragraphProperties361.Append(justification219);
            paragraphProperties361.Append(paragraphMarkRunProperties361);

            Run run378 = new Run();

            RunProperties runProperties378 = new RunProperties();
            RunStyle runStyle13 = new RunStyle() { Val = "FontStyle62" };
            Bold bold32 = new Bold() { Val = false };
            FontSize fontSize465 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript465 = new FontSizeComplexScript() { Val = "26" };

            runProperties378.Append(runStyle13);
            runProperties378.Append(bold32);
            runProperties378.Append(fontSize465);
            runProperties378.Append(fontSizeComplexScript465);
            Text text257 = new Text();
            text257.Text = "3";

            run378.Append(runProperties378);
            run378.Append(text257);

            paragraph361.Append(paragraphProperties361);
            paragraph361.Append(run378);

            tableCell291.Append(tableCellProperties291);
            tableCell291.Append(paragraph361);

            TableCell tableCell292 = new TableCell();

            TableCellProperties tableCellProperties292 = new TableCellProperties();
            TableCellWidth tableCellWidth292 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan290 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders292 = new TableCellBorders();
            TopBorder topBorder172 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder135 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder135 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders292.Append(topBorder172);
            tableCellBorders292.Append(bottomBorder135);
            tableCellBorders292.Append(insideHorizontalBorder135);
            Shading shading484 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin156 = new TableCellMargin();
            TopMargin topMargin10 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin10 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin156.Append(topMargin10);
            tableCellMargin156.Append(bottomMargin10);

            tableCellProperties292.Append(tableCellWidth292);
            tableCellProperties292.Append(gridSpan290);
            tableCellProperties292.Append(tableCellBorders292);
            tableCellProperties292.Append(shading484);
            tableCellProperties292.Append(tableCellMargin156);

            Paragraph paragraph362 = new Paragraph();

            ParagraphProperties paragraphProperties362 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId362 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification220 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties362 = new ParagraphMarkRunProperties();

            paragraphProperties362.Append(paragraphStyleId362);
            paragraphProperties362.Append(justification220);
            paragraphProperties362.Append(paragraphMarkRunProperties362);

            Run run379 = new Run();

            RunProperties runProperties379 = new RunProperties();
            RunStyle runStyle14 = new RunStyle() { Val = "FontStyle62" };
            Bold bold33 = new Bold() { Val = false };
            FontSize fontSize466 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript466 = new FontSizeComplexScript() { Val = "26" };

            runProperties379.Append(runStyle14);
            runProperties379.Append(bold33);
            runProperties379.Append(fontSize466);
            runProperties379.Append(fontSizeComplexScript466);
            Text text258 = new Text();
            text258.Text = "4";

            run379.Append(runProperties379);
            run379.Append(text258);

            paragraph362.Append(paragraphProperties362);
            paragraph362.Append(run379);

            tableCell292.Append(tableCellProperties292);
            tableCell292.Append(paragraph362);

            TableCell tableCell293 = new TableCell();

            TableCellProperties tableCellProperties293 = new TableCellProperties();
            TableCellWidth tableCellWidth293 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan291 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders293 = new TableCellBorders();
            TopBorder topBorder173 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder151 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder136 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder80 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder136 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder80 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders293.Append(topBorder173);
            tableCellBorders293.Append(startBorder151);
            tableCellBorders293.Append(bottomBorder136);
            tableCellBorders293.Append(endBorder80);
            tableCellBorders293.Append(insideHorizontalBorder136);
            tableCellBorders293.Append(insideVerticalBorder80);
            Shading shading485 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin157 = new TableCellMargin();
            TopMargin topMargin11 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin152 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin11 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin157.Append(topMargin11);
            tableCellMargin157.Append(startMargin152);
            tableCellMargin157.Append(bottomMargin11);

            tableCellProperties293.Append(tableCellWidth293);
            tableCellProperties293.Append(gridSpan291);
            tableCellProperties293.Append(tableCellBorders293);
            tableCellProperties293.Append(shading485);
            tableCellProperties293.Append(tableCellMargin157);

            Paragraph paragraph363 = new Paragraph();

            ParagraphProperties paragraphProperties363 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId363 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification221 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties363 = new ParagraphMarkRunProperties();

            paragraphProperties363.Append(paragraphStyleId363);
            paragraphProperties363.Append(justification221);
            paragraphProperties363.Append(paragraphMarkRunProperties363);

            Run run380 = new Run();

            RunProperties runProperties380 = new RunProperties();
            RunStyle runStyle15 = new RunStyle() { Val = "FontStyle62" };
            Bold bold34 = new Bold() { Val = false };
            FontSize fontSize467 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript467 = new FontSizeComplexScript() { Val = "26" };

            runProperties380.Append(runStyle15);
            runProperties380.Append(bold34);
            runProperties380.Append(fontSize467);
            runProperties380.Append(fontSizeComplexScript467);
            Text text259 = new Text();
            text259.Text = "5";

            run380.Append(runProperties380);
            run380.Append(text259);

            paragraph363.Append(paragraphProperties363);
            paragraph363.Append(run380);

            tableCell293.Append(tableCellProperties293);
            tableCell293.Append(paragraph363);

            tableRow108.Append(tableRowProperties108);
            tableRow108.Append(tableCell289);
            tableRow108.Append(tableCell290);
            tableRow108.Append(tableCell291);
            tableRow108.Append(tableCell292);
            tableRow108.Append(tableCell293);

            TableRow tableRow109 = new TableRow();
            TableRowProperties tableRowProperties109 = new TableRowProperties();

            TableCell tableCell294 = new TableCell();

            TableCellProperties tableCellProperties294 = new TableCellProperties();
            TableCellWidth tableCellWidth294 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan292 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders294 = new TableCellBorders();
            TopBorder topBorder174 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder152 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder137 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder137 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders294.Append(topBorder174);
            tableCellBorders294.Append(startBorder152);
            tableCellBorders294.Append(bottomBorder137);
            tableCellBorders294.Append(insideHorizontalBorder137);
            Shading shading486 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin158 = new TableCellMargin();
            TopMargin topMargin12 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin153 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin12 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin158.Append(topMargin12);
            tableCellMargin158.Append(startMargin153);
            tableCellMargin158.Append(bottomMargin12);

            tableCellProperties294.Append(tableCellWidth294);
            tableCellProperties294.Append(gridSpan292);
            tableCellProperties294.Append(tableCellBorders294);
            tableCellProperties294.Append(shading486);
            tableCellProperties294.Append(tableCellMargin158);

            Paragraph paragraph364 = new Paragraph();

            ParagraphProperties paragraphProperties364 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId364 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification222 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties364 = new ParagraphMarkRunProperties();

            paragraphProperties364.Append(paragraphStyleId364);
            paragraphProperties364.Append(justification222);
            paragraphProperties364.Append(paragraphMarkRunProperties364);

            Run run381 = new Run();

            RunProperties runProperties381 = new RunProperties();
            FontSize fontSize468 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript468 = new FontSizeComplexScript() { Val = "26" };

            runProperties381.Append(fontSize468);
            runProperties381.Append(fontSizeComplexScript468);
            Text text260 = new Text();
            text260.Text = "1";

            run381.Append(runProperties381);
            run381.Append(text260);

            paragraph364.Append(paragraphProperties364);
            paragraph364.Append(run381);

            tableCell294.Append(tableCellProperties294);
            tableCell294.Append(paragraph364);

            TableCell tableCell295 = new TableCell();

            TableCellProperties tableCellProperties295 = new TableCellProperties();
            TableCellWidth tableCellWidth295 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan293 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders295 = new TableCellBorders();
            TopBorder topBorder175 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder138 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder138 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders295.Append(topBorder175);
            tableCellBorders295.Append(bottomBorder138);
            tableCellBorders295.Append(insideHorizontalBorder138);
            Shading shading487 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin159 = new TableCellMargin();
            TopMargin topMargin13 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin13 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin159.Append(topMargin13);
            tableCellMargin159.Append(bottomMargin13);

            tableCellProperties295.Append(tableCellWidth295);
            tableCellProperties295.Append(gridSpan293);
            tableCellProperties295.Append(tableCellBorders295);
            tableCellProperties295.Append(shading487);
            tableCellProperties295.Append(tableCellMargin159);

            Paragraph paragraph365 = new Paragraph();

            ParagraphProperties paragraphProperties365 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId365 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification223 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties365 = new ParagraphMarkRunProperties();

            paragraphProperties365.Append(paragraphStyleId365);
            paragraphProperties365.Append(justification223);
            paragraphProperties365.Append(paragraphMarkRunProperties365);

            Run run382 = new Run();

            RunProperties runProperties382 = new RunProperties();
            FontSize fontSize469 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript469 = new FontSizeComplexScript() { Val = "26" };

            runProperties382.Append(fontSize469);
            runProperties382.Append(fontSizeComplexScript469);
            Text text261 = new Text();
            text261.Text = "Жилой массив по улице Вилиса Лациса";

            run382.Append(runProperties382);
            run382.Append(text261);

            paragraph365.Append(paragraphProperties365);
            paragraph365.Append(run382);

            tableCell295.Append(tableCellProperties295);
            tableCell295.Append(paragraph365);

            TableCell tableCell296 = new TableCell();

            TableCellProperties tableCellProperties296 = new TableCellProperties();
            TableCellWidth tableCellWidth296 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan294 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders296 = new TableCellBorders();
            TopBorder topBorder176 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder139 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder139 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders296.Append(topBorder176);
            tableCellBorders296.Append(bottomBorder139);
            tableCellBorders296.Append(insideHorizontalBorder139);
            Shading shading488 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin160 = new TableCellMargin();
            TopMargin topMargin14 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin14 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin160.Append(topMargin14);
            tableCellMargin160.Append(bottomMargin14);

            tableCellProperties296.Append(tableCellWidth296);
            tableCellProperties296.Append(gridSpan294);
            tableCellProperties296.Append(tableCellBorders296);
            tableCellProperties296.Append(shading488);
            tableCellProperties296.Append(tableCellMargin160);

            Paragraph paragraph366 = new Paragraph();

            ParagraphProperties paragraphProperties366 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId366 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification224 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties366 = new ParagraphMarkRunProperties();

            paragraphProperties366.Append(paragraphStyleId366);
            paragraphProperties366.Append(justification224);
            paragraphProperties366.Append(paragraphMarkRunProperties366);

            Run run383 = new Run();

            RunProperties runProperties383 = new RunProperties();
            FontSize fontSize470 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript470 = new FontSizeComplexScript() { Val = "26" };

            runProperties383.Append(fontSize470);
            runProperties383.Append(fontSizeComplexScript470);
            Text text262 = new Text();
            text262.Text = "1500";

            run383.Append(runProperties383);
            run383.Append(text262);

            paragraph366.Append(paragraphProperties366);
            paragraph366.Append(run383);

            tableCell296.Append(tableCellProperties296);
            tableCell296.Append(paragraph366);

            TableCell tableCell297 = new TableCell();

            TableCellProperties tableCellProperties297 = new TableCellProperties();
            TableCellWidth tableCellWidth297 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan295 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders297 = new TableCellBorders();
            TopBorder topBorder177 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder140 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder140 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders297.Append(topBorder177);
            tableCellBorders297.Append(bottomBorder140);
            tableCellBorders297.Append(insideHorizontalBorder140);
            Shading shading489 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin161 = new TableCellMargin();
            TopMargin topMargin15 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin15 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin161.Append(topMargin15);
            tableCellMargin161.Append(bottomMargin15);

            tableCellProperties297.Append(tableCellWidth297);
            tableCellProperties297.Append(gridSpan295);
            tableCellProperties297.Append(tableCellBorders297);
            tableCellProperties297.Append(shading489);
            tableCellProperties297.Append(tableCellMargin161);

            Paragraph paragraph367 = new Paragraph();

            ParagraphProperties paragraphProperties367 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId367 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification225 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties367 = new ParagraphMarkRunProperties();

            paragraphProperties367.Append(paragraphStyleId367);
            paragraphProperties367.Append(justification225);
            paragraphProperties367.Append(paragraphMarkRunProperties367);

            Run run384 = new Run();

            RunProperties runProperties384 = new RunProperties();
            FontSize fontSize471 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript471 = new FontSizeComplexScript() { Val = "26" };

            runProperties384.Append(fontSize471);
            runProperties384.Append(fontSizeComplexScript471);
            Text text263 = new Text();
            text263.Text = "Юг";

            run384.Append(runProperties384);
            run384.Append(text263);

            paragraph367.Append(paragraphProperties367);
            paragraph367.Append(run384);

            tableCell297.Append(tableCellProperties297);
            tableCell297.Append(paragraph367);

            TableCell tableCell298 = new TableCell();

            TableCellProperties tableCellProperties298 = new TableCellProperties();
            TableCellWidth tableCellWidth298 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan296 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders298 = new TableCellBorders();
            TopBorder topBorder178 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder153 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder141 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder81 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder141 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder81 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders298.Append(topBorder178);
            tableCellBorders298.Append(startBorder153);
            tableCellBorders298.Append(bottomBorder141);
            tableCellBorders298.Append(endBorder81);
            tableCellBorders298.Append(insideHorizontalBorder141);
            tableCellBorders298.Append(insideVerticalBorder81);
            Shading shading490 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin162 = new TableCellMargin();
            TopMargin topMargin16 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin154 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin16 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin162.Append(topMargin16);
            tableCellMargin162.Append(startMargin154);
            tableCellMargin162.Append(bottomMargin16);

            tableCellProperties298.Append(tableCellWidth298);
            tableCellProperties298.Append(gridSpan296);
            tableCellProperties298.Append(tableCellBorders298);
            tableCellProperties298.Append(shading490);
            tableCellProperties298.Append(tableCellMargin162);

            Paragraph paragraph368 = new Paragraph();

            ParagraphProperties paragraphProperties368 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId368 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification226 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties368 = new ParagraphMarkRunProperties();

            paragraphProperties368.Append(paragraphStyleId368);
            paragraphProperties368.Append(justification226);
            paragraphProperties368.Append(paragraphMarkRunProperties368);

            Run run385 = new Run();

            RunProperties runProperties385 = new RunProperties();
            FontSize fontSize472 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript472 = new FontSizeComplexScript() { Val = "26" };

            runProperties385.Append(fontSize472);
            runProperties385.Append(fontSizeComplexScript472);
            Text text264 = new Text();
            text264.Text = "250";

            run385.Append(runProperties385);
            run385.Append(text264);

            paragraph368.Append(paragraphProperties368);
            paragraph368.Append(run385);

            tableCell298.Append(tableCellProperties298);
            tableCell298.Append(paragraph368);

            tableRow109.Append(tableRowProperties109);
            tableRow109.Append(tableCell294);
            tableRow109.Append(tableCell295);
            tableRow109.Append(tableCell296);
            tableRow109.Append(tableCell297);
            tableRow109.Append(tableCell298);

            TableRow tableRow110 = new TableRow();
            TableRowProperties tableRowProperties110 = new TableRowProperties();

            TableCell tableCell299 = new TableCell();

            TableCellProperties tableCellProperties299 = new TableCellProperties();
            TableCellWidth tableCellWidth299 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan297 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders299 = new TableCellBorders();
            TopBorder topBorder179 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder154 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder142 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder82 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder142 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder82 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders299.Append(topBorder179);
            tableCellBorders299.Append(startBorder154);
            tableCellBorders299.Append(bottomBorder142);
            tableCellBorders299.Append(endBorder82);
            tableCellBorders299.Append(insideHorizontalBorder142);
            tableCellBorders299.Append(insideVerticalBorder82);
            Shading shading491 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin163 = new TableCellMargin();
            StartMargin startMargin155 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin163.Append(startMargin155);

            tableCellProperties299.Append(tableCellWidth299);
            tableCellProperties299.Append(gridSpan297);
            tableCellProperties299.Append(tableCellBorders299);
            tableCellProperties299.Append(shading491);
            tableCellProperties299.Append(tableCellMargin163);

            Paragraph paragraph369 = new Paragraph();

            ParagraphProperties paragraphProperties369 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId369 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification227 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties369 = new ParagraphMarkRunProperties();

            paragraphProperties369.Append(paragraphStyleId369);
            paragraphProperties369.Append(justification227);
            paragraphProperties369.Append(paragraphMarkRunProperties369);

            Run run386 = new Run();

            RunProperties runProperties386 = new RunProperties();
            FontSize fontSize473 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript473 = new FontSizeComplexScript() { Val = "26" };

            runProperties386.Append(fontSize473);
            runProperties386.Append(fontSizeComplexScript473);
            Text text265 = new Text();
            text265.Text = "2";

            run386.Append(runProperties386);
            run386.Append(text265);

            paragraph369.Append(paragraphProperties369);
            paragraph369.Append(run386);

            tableCell299.Append(tableCellProperties299);
            tableCell299.Append(paragraph369);

            TableCell tableCell300 = new TableCell();

            TableCellProperties tableCellProperties300 = new TableCellProperties();
            TableCellWidth tableCellWidth300 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan298 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders300 = new TableCellBorders();
            TopBorder topBorder180 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder155 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder143 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder143 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders300.Append(topBorder180);
            tableCellBorders300.Append(startBorder155);
            tableCellBorders300.Append(bottomBorder143);
            tableCellBorders300.Append(insideHorizontalBorder143);
            Shading shading492 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin164 = new TableCellMargin();
            StartMargin startMargin156 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin164.Append(startMargin156);

            tableCellProperties300.Append(tableCellWidth300);
            tableCellProperties300.Append(gridSpan298);
            tableCellProperties300.Append(tableCellBorders300);
            tableCellProperties300.Append(shading492);
            tableCellProperties300.Append(tableCellMargin164);

            Paragraph paragraph370 = new Paragraph();

            ParagraphProperties paragraphProperties370 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId370 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification228 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties370 = new ParagraphMarkRunProperties();

            paragraphProperties370.Append(paragraphStyleId370);
            paragraphProperties370.Append(justification228);
            paragraphProperties370.Append(paragraphMarkRunProperties370);

            Run run387 = new Run();

            RunProperties runProperties387 = new RunProperties();
            FontSize fontSize474 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript474 = new FontSizeComplexScript() { Val = "26" };

            runProperties387.Append(fontSize474);
            runProperties387.Append(fontSizeComplexScript474);
            Text text266 = new Text();
            text266.Text = "Колледж малого бизнеса";

            run387.Append(runProperties387);
            run387.Append(text266);

            paragraph370.Append(paragraphProperties370);
            paragraph370.Append(run387);

            tableCell300.Append(tableCellProperties300);
            tableCell300.Append(paragraph370);

            TableCell tableCell301 = new TableCell();

            TableCellProperties tableCellProperties301 = new TableCellProperties();
            TableCellWidth tableCellWidth301 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan299 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders301 = new TableCellBorders();
            TopBorder topBorder181 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder156 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder144 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder144 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders301.Append(topBorder181);
            tableCellBorders301.Append(startBorder156);
            tableCellBorders301.Append(bottomBorder144);
            tableCellBorders301.Append(insideHorizontalBorder144);
            Shading shading493 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin165 = new TableCellMargin();
            StartMargin startMargin157 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin165.Append(startMargin157);

            tableCellProperties301.Append(tableCellWidth301);
            tableCellProperties301.Append(gridSpan299);
            tableCellProperties301.Append(tableCellBorders301);
            tableCellProperties301.Append(shading493);
            tableCellProperties301.Append(tableCellMargin165);

            Paragraph paragraph371 = new Paragraph();

            ParagraphProperties paragraphProperties371 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId371 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification229 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties371 = new ParagraphMarkRunProperties();

            paragraphProperties371.Append(paragraphStyleId371);
            paragraphProperties371.Append(justification229);
            paragraphProperties371.Append(paragraphMarkRunProperties371);

            Run run388 = new Run();

            RunProperties runProperties388 = new RunProperties();
            FontSize fontSize475 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript475 = new FontSizeComplexScript() { Val = "26" };

            runProperties388.Append(fontSize475);
            runProperties388.Append(fontSizeComplexScript475);
            Text text267 = new Text();
            text267.Text = "150";

            run388.Append(runProperties388);
            run388.Append(text267);

            paragraph371.Append(paragraphProperties371);
            paragraph371.Append(run388);

            tableCell301.Append(tableCellProperties301);
            tableCell301.Append(paragraph371);

            TableCell tableCell302 = new TableCell();

            TableCellProperties tableCellProperties302 = new TableCellProperties();
            TableCellWidth tableCellWidth302 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan300 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders302 = new TableCellBorders();
            TopBorder topBorder182 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder157 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder145 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder145 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders302.Append(topBorder182);
            tableCellBorders302.Append(startBorder157);
            tableCellBorders302.Append(bottomBorder145);
            tableCellBorders302.Append(insideHorizontalBorder145);
            Shading shading494 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin166 = new TableCellMargin();
            StartMargin startMargin158 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin166.Append(startMargin158);

            tableCellProperties302.Append(tableCellWidth302);
            tableCellProperties302.Append(gridSpan300);
            tableCellProperties302.Append(tableCellBorders302);
            tableCellProperties302.Append(shading494);
            tableCellProperties302.Append(tableCellMargin166);

            Paragraph paragraph372 = new Paragraph();

            ParagraphProperties paragraphProperties372 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId372 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification230 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties372 = new ParagraphMarkRunProperties();

            paragraphProperties372.Append(paragraphStyleId372);
            paragraphProperties372.Append(justification230);
            paragraphProperties372.Append(paragraphMarkRunProperties372);

            Run run389 = new Run();

            RunProperties runProperties389 = new RunProperties();
            FontSize fontSize476 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript476 = new FontSizeComplexScript() { Val = "26" };

            runProperties389.Append(fontSize476);
            runProperties389.Append(fontSizeComplexScript476);
            Text text268 = new Text();
            text268.Text = "Юго-запад";

            run389.Append(runProperties389);
            run389.Append(text268);

            paragraph372.Append(paragraphProperties372);
            paragraph372.Append(run389);

            tableCell302.Append(tableCellProperties302);
            tableCell302.Append(paragraph372);

            TableCell tableCell303 = new TableCell();

            TableCellProperties tableCellProperties303 = new TableCellProperties();
            TableCellWidth tableCellWidth303 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan301 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders303 = new TableCellBorders();
            TopBorder topBorder183 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder158 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder146 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder83 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder146 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder83 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders303.Append(topBorder183);
            tableCellBorders303.Append(startBorder158);
            tableCellBorders303.Append(bottomBorder146);
            tableCellBorders303.Append(endBorder83);
            tableCellBorders303.Append(insideHorizontalBorder146);
            tableCellBorders303.Append(insideVerticalBorder83);
            Shading shading495 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin167 = new TableCellMargin();
            StartMargin startMargin159 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin167.Append(startMargin159);

            tableCellProperties303.Append(tableCellWidth303);
            tableCellProperties303.Append(gridSpan301);
            tableCellProperties303.Append(tableCellBorders303);
            tableCellProperties303.Append(shading495);
            tableCellProperties303.Append(tableCellMargin167);

            Paragraph paragraph373 = new Paragraph();

            ParagraphProperties paragraphProperties373 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId373 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification231 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties373 = new ParagraphMarkRunProperties();

            paragraphProperties373.Append(paragraphStyleId373);
            paragraphProperties373.Append(justification231);
            paragraphProperties373.Append(paragraphMarkRunProperties373);

            Run run390 = new Run();

            RunProperties runProperties390 = new RunProperties();
            FontSize fontSize477 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript477 = new FontSizeComplexScript() { Val = "26" };

            runProperties390.Append(fontSize477);
            runProperties390.Append(fontSizeComplexScript477);
            Text text269 = new Text();
            text269.Text = "500";

            run390.Append(runProperties390);
            run390.Append(text269);

            paragraph373.Append(paragraphProperties373);
            paragraph373.Append(run390);

            tableCell303.Append(tableCellProperties303);
            tableCell303.Append(paragraph373);

            tableRow110.Append(tableRowProperties110);
            tableRow110.Append(tableCell299);
            tableRow110.Append(tableCell300);
            tableRow110.Append(tableCell301);
            tableRow110.Append(tableCell302);
            tableRow110.Append(tableCell303);

            TableRow tableRow111 = new TableRow();
            TableRowProperties tableRowProperties111 = new TableRowProperties();

            TableCell tableCell304 = new TableCell();

            TableCellProperties tableCellProperties304 = new TableCellProperties();
            TableCellWidth tableCellWidth304 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan302 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders304 = new TableCellBorders();
            TopBorder topBorder184 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder159 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder147 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder84 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder147 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder84 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders304.Append(topBorder184);
            tableCellBorders304.Append(startBorder159);
            tableCellBorders304.Append(bottomBorder147);
            tableCellBorders304.Append(endBorder84);
            tableCellBorders304.Append(insideHorizontalBorder147);
            tableCellBorders304.Append(insideVerticalBorder84);
            Shading shading496 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin168 = new TableCellMargin();
            StartMargin startMargin160 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin168.Append(startMargin160);

            tableCellProperties304.Append(tableCellWidth304);
            tableCellProperties304.Append(gridSpan302);
            tableCellProperties304.Append(tableCellBorders304);
            tableCellProperties304.Append(shading496);
            tableCellProperties304.Append(tableCellMargin168);

            Paragraph paragraph374 = new Paragraph();

            ParagraphProperties paragraphProperties374 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId374 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification232 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties374 = new ParagraphMarkRunProperties();

            paragraphProperties374.Append(paragraphStyleId374);
            paragraphProperties374.Append(justification232);
            paragraphProperties374.Append(paragraphMarkRunProperties374);

            Run run391 = new Run();

            RunProperties runProperties391 = new RunProperties();
            FontSize fontSize478 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript478 = new FontSizeComplexScript() { Val = "26" };

            runProperties391.Append(fontSize478);
            runProperties391.Append(fontSizeComplexScript478);
            Text text270 = new Text();
            text270.Text = "3";

            run391.Append(runProperties391);
            run391.Append(text270);

            paragraph374.Append(paragraphProperties374);
            paragraph374.Append(run391);

            tableCell304.Append(tableCellProperties304);
            tableCell304.Append(paragraph374);

            TableCell tableCell305 = new TableCell();

            TableCellProperties tableCellProperties305 = new TableCellProperties();
            TableCellWidth tableCellWidth305 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan303 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders305 = new TableCellBorders();
            TopBorder topBorder185 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder160 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder148 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder148 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders305.Append(topBorder185);
            tableCellBorders305.Append(startBorder160);
            tableCellBorders305.Append(bottomBorder148);
            tableCellBorders305.Append(insideHorizontalBorder148);
            Shading shading497 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin169 = new TableCellMargin();
            StartMargin startMargin161 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin169.Append(startMargin161);

            tableCellProperties305.Append(tableCellWidth305);
            tableCellProperties305.Append(gridSpan303);
            tableCellProperties305.Append(tableCellBorders305);
            tableCellProperties305.Append(shading497);
            tableCellProperties305.Append(tableCellMargin169);

            Paragraph paragraph375 = new Paragraph();

            ParagraphProperties paragraphProperties375 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId375 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification233 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties375 = new ParagraphMarkRunProperties();

            paragraphProperties375.Append(paragraphStyleId375);
            paragraphProperties375.Append(justification233);
            paragraphProperties375.Append(paragraphMarkRunProperties375);

            Run run392 = new Run();

            RunProperties runProperties392 = new RunProperties();
            FontSize fontSize479 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript479 = new FontSizeComplexScript() { Val = "26" };

            runProperties392.Append(fontSize479);
            runProperties392.Append(fontSizeComplexScript479);
            Text text271 = new Text();
            text271.Text = "Металлический ангар «автосервис»";

            run392.Append(runProperties392);
            run392.Append(text271);

            paragraph375.Append(paragraphProperties375);
            paragraph375.Append(run392);

            tableCell305.Append(tableCellProperties305);
            tableCell305.Append(paragraph375);

            TableCell tableCell306 = new TableCell();

            TableCellProperties tableCellProperties306 = new TableCellProperties();
            TableCellWidth tableCellWidth306 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan304 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders306 = new TableCellBorders();
            TopBorder topBorder186 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder161 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder149 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder149 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders306.Append(topBorder186);
            tableCellBorders306.Append(startBorder161);
            tableCellBorders306.Append(bottomBorder149);
            tableCellBorders306.Append(insideHorizontalBorder149);
            Shading shading498 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin170 = new TableCellMargin();
            StartMargin startMargin162 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin170.Append(startMargin162);

            tableCellProperties306.Append(tableCellWidth306);
            tableCellProperties306.Append(gridSpan304);
            tableCellProperties306.Append(tableCellBorders306);
            tableCellProperties306.Append(shading498);
            tableCellProperties306.Append(tableCellMargin170);

            Paragraph paragraph376 = new Paragraph();

            ParagraphProperties paragraphProperties376 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId376 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification234 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties376 = new ParagraphMarkRunProperties();

            paragraphProperties376.Append(paragraphStyleId376);
            paragraphProperties376.Append(justification234);
            paragraphProperties376.Append(paragraphMarkRunProperties376);

            Run run393 = new Run();

            RunProperties runProperties393 = new RunProperties();
            FontSize fontSize480 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript480 = new FontSizeComplexScript() { Val = "26" };

            runProperties393.Append(fontSize480);
            runProperties393.Append(fontSizeComplexScript480);
            Text text272 = new Text();
            text272.Text = "2";

            run393.Append(runProperties393);
            run393.Append(text272);

            paragraph376.Append(paragraphProperties376);
            paragraph376.Append(run393);

            tableCell306.Append(tableCellProperties306);
            tableCell306.Append(paragraph376);

            TableCell tableCell307 = new TableCell();

            TableCellProperties tableCellProperties307 = new TableCellProperties();
            TableCellWidth tableCellWidth307 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan305 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders307 = new TableCellBorders();
            TopBorder topBorder187 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder162 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder150 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder150 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders307.Append(topBorder187);
            tableCellBorders307.Append(startBorder162);
            tableCellBorders307.Append(bottomBorder150);
            tableCellBorders307.Append(insideHorizontalBorder150);
            Shading shading499 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin171 = new TableCellMargin();
            StartMargin startMargin163 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin171.Append(startMargin163);

            tableCellProperties307.Append(tableCellWidth307);
            tableCellProperties307.Append(gridSpan305);
            tableCellProperties307.Append(tableCellBorders307);
            tableCellProperties307.Append(shading499);
            tableCellProperties307.Append(tableCellMargin171);

            Paragraph paragraph377 = new Paragraph();

            ParagraphProperties paragraphProperties377 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId377 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification235 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties377 = new ParagraphMarkRunProperties();

            paragraphProperties377.Append(paragraphStyleId377);
            paragraphProperties377.Append(justification235);
            paragraphProperties377.Append(paragraphMarkRunProperties377);

            Run run394 = new Run();

            RunProperties runProperties394 = new RunProperties();
            FontSize fontSize481 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript481 = new FontSizeComplexScript() { Val = "26" };

            runProperties394.Append(fontSize481);
            runProperties394.Append(fontSizeComplexScript481);
            Text text273 = new Text();
            text273.Text = "Запад";

            run394.Append(runProperties394);
            run394.Append(text273);

            paragraph377.Append(paragraphProperties377);
            paragraph377.Append(run394);

            tableCell307.Append(tableCellProperties307);
            tableCell307.Append(paragraph377);

            TableCell tableCell308 = new TableCell();

            TableCellProperties tableCellProperties308 = new TableCellProperties();
            TableCellWidth tableCellWidth308 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan306 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders308 = new TableCellBorders();
            TopBorder topBorder188 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder163 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder151 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder85 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder151 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder85 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders308.Append(topBorder188);
            tableCellBorders308.Append(startBorder163);
            tableCellBorders308.Append(bottomBorder151);
            tableCellBorders308.Append(endBorder85);
            tableCellBorders308.Append(insideHorizontalBorder151);
            tableCellBorders308.Append(insideVerticalBorder85);
            Shading shading500 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin172 = new TableCellMargin();
            StartMargin startMargin164 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin172.Append(startMargin164);

            tableCellProperties308.Append(tableCellWidth308);
            tableCellProperties308.Append(gridSpan306);
            tableCellProperties308.Append(tableCellBorders308);
            tableCellProperties308.Append(shading500);
            tableCellProperties308.Append(tableCellMargin172);

            Paragraph paragraph378 = new Paragraph();

            ParagraphProperties paragraphProperties378 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId378 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification236 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties378 = new ParagraphMarkRunProperties();

            paragraphProperties378.Append(paragraphStyleId378);
            paragraphProperties378.Append(justification236);
            paragraphProperties378.Append(paragraphMarkRunProperties378);

            Run run395 = new Run();

            RunProperties runProperties395 = new RunProperties();
            FontSize fontSize482 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript482 = new FontSizeComplexScript() { Val = "26" };

            runProperties395.Append(fontSize482);
            runProperties395.Append(fontSizeComplexScript482);
            Text text274 = new Text();
            text274.Text = "50";

            run395.Append(runProperties395);
            run395.Append(text274);

            paragraph378.Append(paragraphProperties378);
            paragraph378.Append(run395);

            tableCell308.Append(tableCellProperties308);
            tableCell308.Append(paragraph378);

            tableRow111.Append(tableRowProperties111);
            tableRow111.Append(tableCell304);
            tableRow111.Append(tableCell305);
            tableRow111.Append(tableCell306);
            tableRow111.Append(tableCell307);
            tableRow111.Append(tableCell308);

            TableRow tableRow112 = new TableRow();
            TableRowProperties tableRowProperties112 = new TableRowProperties();

            TableCell tableCell309 = new TableCell();

            TableCellProperties tableCellProperties309 = new TableCellProperties();
            TableCellWidth tableCellWidth309 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan307 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders309 = new TableCellBorders();
            TopBorder topBorder189 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder164 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder152 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder86 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder152 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder86 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders309.Append(topBorder189);
            tableCellBorders309.Append(startBorder164);
            tableCellBorders309.Append(bottomBorder152);
            tableCellBorders309.Append(endBorder86);
            tableCellBorders309.Append(insideHorizontalBorder152);
            tableCellBorders309.Append(insideVerticalBorder86);
            Shading shading501 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin173 = new TableCellMargin();
            StartMargin startMargin165 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin173.Append(startMargin165);

            tableCellProperties309.Append(tableCellWidth309);
            tableCellProperties309.Append(gridSpan307);
            tableCellProperties309.Append(tableCellBorders309);
            tableCellProperties309.Append(shading501);
            tableCellProperties309.Append(tableCellMargin173);

            Paragraph paragraph379 = new Paragraph();

            ParagraphProperties paragraphProperties379 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId379 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification237 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties379 = new ParagraphMarkRunProperties();

            paragraphProperties379.Append(paragraphStyleId379);
            paragraphProperties379.Append(justification237);
            paragraphProperties379.Append(paragraphMarkRunProperties379);

            Run run396 = new Run();

            RunProperties runProperties396 = new RunProperties();
            FontSize fontSize483 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript483 = new FontSizeComplexScript() { Val = "26" };

            runProperties396.Append(fontSize483);
            runProperties396.Append(fontSizeComplexScript483);
            Text text275 = new Text();
            text275.Text = "4";

            run396.Append(runProperties396);
            run396.Append(text275);

            paragraph379.Append(paragraphProperties379);
            paragraph379.Append(run396);

            tableCell309.Append(tableCellProperties309);
            tableCell309.Append(paragraph379);

            TableCell tableCell310 = new TableCell();

            TableCellProperties tableCellProperties310 = new TableCellProperties();
            TableCellWidth tableCellWidth310 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan308 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders310 = new TableCellBorders();
            TopBorder topBorder190 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder165 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder153 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder153 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders310.Append(topBorder190);
            tableCellBorders310.Append(startBorder165);
            tableCellBorders310.Append(bottomBorder153);
            tableCellBorders310.Append(insideHorizontalBorder153);
            Shading shading502 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin174 = new TableCellMargin();
            StartMargin startMargin166 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin174.Append(startMargin166);

            tableCellProperties310.Append(tableCellWidth310);
            tableCellProperties310.Append(gridSpan308);
            tableCellProperties310.Append(tableCellBorders310);
            tableCellProperties310.Append(shading502);
            tableCellProperties310.Append(tableCellMargin174);

            Paragraph paragraph380 = new Paragraph();

            ParagraphProperties paragraphProperties380 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId380 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification238 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties380 = new ParagraphMarkRunProperties();

            paragraphProperties380.Append(paragraphStyleId380);
            paragraphProperties380.Append(justification238);
            paragraphProperties380.Append(paragraphMarkRunProperties380);

            Run run397 = new Run();

            RunProperties runProperties397 = new RunProperties();
            FontSize fontSize484 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript484 = new FontSizeComplexScript() { Val = "26" };

            runProperties397.Append(fontSize484);
            runProperties397.Append(fontSizeComplexScript484);
            Text text276 = new Text();
            text276.Text = "Спорткомплекс «Лазурный»";

            run397.Append(runProperties397);
            run397.Append(text276);

            paragraph380.Append(paragraphProperties380);
            paragraph380.Append(run397);

            tableCell310.Append(tableCellProperties310);
            tableCell310.Append(paragraph380);

            TableCell tableCell311 = new TableCell();

            TableCellProperties tableCellProperties311 = new TableCellProperties();
            TableCellWidth tableCellWidth311 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan309 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders311 = new TableCellBorders();
            TopBorder topBorder191 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder166 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder154 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder154 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders311.Append(topBorder191);
            tableCellBorders311.Append(startBorder166);
            tableCellBorders311.Append(bottomBorder154);
            tableCellBorders311.Append(insideHorizontalBorder154);
            Shading shading503 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin175 = new TableCellMargin();
            StartMargin startMargin167 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin175.Append(startMargin167);

            tableCellProperties311.Append(tableCellWidth311);
            tableCellProperties311.Append(gridSpan309);
            tableCellProperties311.Append(tableCellBorders311);
            tableCellProperties311.Append(shading503);
            tableCellProperties311.Append(tableCellMargin175);

            Paragraph paragraph381 = new Paragraph();

            ParagraphProperties paragraphProperties381 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId381 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification239 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties381 = new ParagraphMarkRunProperties();

            paragraphProperties381.Append(paragraphStyleId381);
            paragraphProperties381.Append(justification239);
            paragraphProperties381.Append(paragraphMarkRunProperties381);

            Run run398 = new Run();

            RunProperties runProperties398 = new RunProperties();
            FontSize fontSize485 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript485 = new FontSizeComplexScript() { Val = "26" };

            runProperties398.Append(fontSize485);
            runProperties398.Append(fontSizeComplexScript485);
            Text text277 = new Text();
            text277.Text = "50";

            run398.Append(runProperties398);
            run398.Append(text277);

            paragraph381.Append(paragraphProperties381);
            paragraph381.Append(run398);

            tableCell311.Append(tableCellProperties311);
            tableCell311.Append(paragraph381);

            TableCell tableCell312 = new TableCell();

            TableCellProperties tableCellProperties312 = new TableCellProperties();
            TableCellWidth tableCellWidth312 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan310 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders312 = new TableCellBorders();
            TopBorder topBorder192 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder167 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder155 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder155 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders312.Append(topBorder192);
            tableCellBorders312.Append(startBorder167);
            tableCellBorders312.Append(bottomBorder155);
            tableCellBorders312.Append(insideHorizontalBorder155);
            Shading shading504 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin176 = new TableCellMargin();
            StartMargin startMargin168 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin176.Append(startMargin168);

            tableCellProperties312.Append(tableCellWidth312);
            tableCellProperties312.Append(gridSpan310);
            tableCellProperties312.Append(tableCellBorders312);
            tableCellProperties312.Append(shading504);
            tableCellProperties312.Append(tableCellMargin176);

            Paragraph paragraph382 = new Paragraph();

            ParagraphProperties paragraphProperties382 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId382 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification240 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties382 = new ParagraphMarkRunProperties();

            paragraphProperties382.Append(paragraphStyleId382);
            paragraphProperties382.Append(justification240);
            paragraphProperties382.Append(paragraphMarkRunProperties382);

            Run run399 = new Run();

            RunProperties runProperties399 = new RunProperties();
            FontSize fontSize486 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript486 = new FontSizeComplexScript() { Val = "26" };

            runProperties399.Append(fontSize486);
            runProperties399.Append(fontSizeComplexScript486);
            Text text278 = new Text();
            text278.Text = "Восток";

            run399.Append(runProperties399);
            run399.Append(text278);

            paragraph382.Append(paragraphProperties382);
            paragraph382.Append(run399);

            tableCell312.Append(tableCellProperties312);
            tableCell312.Append(paragraph382);

            TableCell tableCell313 = new TableCell();

            TableCellProperties tableCellProperties313 = new TableCellProperties();
            TableCellWidth tableCellWidth313 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan311 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders313 = new TableCellBorders();
            TopBorder topBorder193 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder168 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder156 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder87 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder156 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder87 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders313.Append(topBorder193);
            tableCellBorders313.Append(startBorder168);
            tableCellBorders313.Append(bottomBorder156);
            tableCellBorders313.Append(endBorder87);
            tableCellBorders313.Append(insideHorizontalBorder156);
            tableCellBorders313.Append(insideVerticalBorder87);
            Shading shading505 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin177 = new TableCellMargin();
            StartMargin startMargin169 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin177.Append(startMargin169);

            tableCellProperties313.Append(tableCellWidth313);
            tableCellProperties313.Append(gridSpan311);
            tableCellProperties313.Append(tableCellBorders313);
            tableCellProperties313.Append(shading505);
            tableCellProperties313.Append(tableCellMargin177);

            Paragraph paragraph383 = new Paragraph();

            ParagraphProperties paragraphProperties383 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId383 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification241 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties383 = new ParagraphMarkRunProperties();

            paragraphProperties383.Append(paragraphStyleId383);
            paragraphProperties383.Append(justification241);
            paragraphProperties383.Append(paragraphMarkRunProperties383);

            Run run400 = new Run();

            RunProperties runProperties400 = new RunProperties();
            FontSize fontSize487 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript487 = new FontSizeComplexScript() { Val = "26" };

            runProperties400.Append(fontSize487);
            runProperties400.Append(fontSizeComplexScript487);
            Text text279 = new Text();
            text279.Text = "70";

            run400.Append(runProperties400);
            run400.Append(text279);

            paragraph383.Append(paragraphProperties383);
            paragraph383.Append(run400);

            tableCell313.Append(tableCellProperties313);
            tableCell313.Append(paragraph383);

            tableRow112.Append(tableRowProperties112);
            tableRow112.Append(tableCell309);
            tableRow112.Append(tableCell310);
            tableRow112.Append(tableCell311);
            tableRow112.Append(tableCell312);
            tableRow112.Append(tableCell313);

            TableRow tableRow113 = new TableRow();
            TableRowProperties tableRowProperties113 = new TableRowProperties();

            TableCell tableCell314 = new TableCell();

            TableCellProperties tableCellProperties314 = new TableCellProperties();
            TableCellWidth tableCellWidth314 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan312 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders314 = new TableCellBorders();
            TopBorder topBorder194 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder169 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder157 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder88 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder157 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder88 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders314.Append(topBorder194);
            tableCellBorders314.Append(startBorder169);
            tableCellBorders314.Append(bottomBorder157);
            tableCellBorders314.Append(endBorder88);
            tableCellBorders314.Append(insideHorizontalBorder157);
            tableCellBorders314.Append(insideVerticalBorder88);
            Shading shading506 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin178 = new TableCellMargin();
            StartMargin startMargin170 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin178.Append(startMargin170);

            tableCellProperties314.Append(tableCellWidth314);
            tableCellProperties314.Append(gridSpan312);
            tableCellProperties314.Append(tableCellBorders314);
            tableCellProperties314.Append(shading506);
            tableCellProperties314.Append(tableCellMargin178);

            Paragraph paragraph384 = new Paragraph();

            ParagraphProperties paragraphProperties384 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId384 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification242 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties384 = new ParagraphMarkRunProperties();

            paragraphProperties384.Append(paragraphStyleId384);
            paragraphProperties384.Append(justification242);
            paragraphProperties384.Append(paragraphMarkRunProperties384);

            Run run401 = new Run();

            RunProperties runProperties401 = new RunProperties();
            FontSize fontSize488 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript488 = new FontSizeComplexScript() { Val = "26" };

            runProperties401.Append(fontSize488);
            runProperties401.Append(fontSizeComplexScript488);
            Text text280 = new Text();
            text280.Text = "5";

            run401.Append(runProperties401);
            run401.Append(text280);

            paragraph384.Append(paragraphProperties384);
            paragraph384.Append(run401);

            tableCell314.Append(tableCellProperties314);
            tableCell314.Append(paragraph384);

            TableCell tableCell315 = new TableCell();

            TableCellProperties tableCellProperties315 = new TableCellProperties();
            TableCellWidth tableCellWidth315 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan313 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders315 = new TableCellBorders();
            TopBorder topBorder195 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder170 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder158 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder158 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders315.Append(topBorder195);
            tableCellBorders315.Append(startBorder170);
            tableCellBorders315.Append(bottomBorder158);
            tableCellBorders315.Append(insideHorizontalBorder158);
            Shading shading507 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin179 = new TableCellMargin();
            StartMargin startMargin171 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin179.Append(startMargin171);

            tableCellProperties315.Append(tableCellWidth315);
            tableCellProperties315.Append(gridSpan313);
            tableCellProperties315.Append(tableCellBorders315);
            tableCellProperties315.Append(shading507);
            tableCellProperties315.Append(tableCellMargin179);

            Paragraph paragraph385 = new Paragraph();

            ParagraphProperties paragraphProperties385 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId385 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification243 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties385 = new ParagraphMarkRunProperties();

            paragraphProperties385.Append(paragraphStyleId385);
            paragraphProperties385.Append(justification243);
            paragraphProperties385.Append(paragraphMarkRunProperties385);

            Run run402 = new Run();

            RunProperties runProperties402 = new RunProperties();
            FontSize fontSize489 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript489 = new FontSizeComplexScript() { Val = "26" };

            runProperties402.Append(fontSize489);
            runProperties402.Append(fontSizeComplexScript489);
            Text text281 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text281.Text = "Российский химико-технологический университет имени ";

            run402.Append(runProperties402);
            run402.Append(text281);

            paragraph385.Append(paragraphProperties385);
            paragraph385.Append(run402);

            Paragraph paragraph386 = new Paragraph();

            ParagraphProperties paragraphProperties386 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId386 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification244 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties386 = new ParagraphMarkRunProperties();

            paragraphProperties386.Append(paragraphStyleId386);
            paragraphProperties386.Append(justification244);
            paragraphProperties386.Append(paragraphMarkRunProperties386);

            Run run403 = new Run();

            RunProperties runProperties403 = new RunProperties();
            FontSize fontSize490 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript490 = new FontSizeComplexScript() { Val = "26" };

            runProperties403.Append(fontSize490);
            runProperties403.Append(fontSizeComplexScript490);
            Text text282 = new Text();
            text282.Text = "Д.И. Менделеева";

            run403.Append(runProperties403);
            run403.Append(text282);

            paragraph386.Append(paragraphProperties386);
            paragraph386.Append(run403);

            tableCell315.Append(tableCellProperties315);
            tableCell315.Append(paragraph385);
            tableCell315.Append(paragraph386);

            TableCell tableCell316 = new TableCell();

            TableCellProperties tableCellProperties316 = new TableCellProperties();
            TableCellWidth tableCellWidth316 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan314 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders316 = new TableCellBorders();
            TopBorder topBorder196 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder171 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder159 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder159 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders316.Append(topBorder196);
            tableCellBorders316.Append(startBorder171);
            tableCellBorders316.Append(bottomBorder159);
            tableCellBorders316.Append(insideHorizontalBorder159);
            Shading shading508 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin180 = new TableCellMargin();
            StartMargin startMargin172 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin180.Append(startMargin172);

            tableCellProperties316.Append(tableCellWidth316);
            tableCellProperties316.Append(gridSpan314);
            tableCellProperties316.Append(tableCellBorders316);
            tableCellProperties316.Append(shading508);
            tableCellProperties316.Append(tableCellMargin180);

            Paragraph paragraph387 = new Paragraph();

            ParagraphProperties paragraphProperties387 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId387 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification245 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties387 = new ParagraphMarkRunProperties();

            paragraphProperties387.Append(paragraphStyleId387);
            paragraphProperties387.Append(justification245);
            paragraphProperties387.Append(paragraphMarkRunProperties387);

            Run run404 = new Run();

            RunProperties runProperties404 = new RunProperties();
            FontSize fontSize491 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript491 = new FontSizeComplexScript() { Val = "26" };

            runProperties404.Append(fontSize491);
            runProperties404.Append(fontSizeComplexScript491);
            Text text283 = new Text();
            text283.Text = "300";

            run404.Append(runProperties404);
            run404.Append(text283);

            paragraph387.Append(paragraphProperties387);
            paragraph387.Append(run404);

            tableCell316.Append(tableCellProperties316);
            tableCell316.Append(paragraph387);

            TableCell tableCell317 = new TableCell();

            TableCellProperties tableCellProperties317 = new TableCellProperties();
            TableCellWidth tableCellWidth317 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan315 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders317 = new TableCellBorders();
            TopBorder topBorder197 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder172 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder160 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder160 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders317.Append(topBorder197);
            tableCellBorders317.Append(startBorder172);
            tableCellBorders317.Append(bottomBorder160);
            tableCellBorders317.Append(insideHorizontalBorder160);
            Shading shading509 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin181 = new TableCellMargin();
            StartMargin startMargin173 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin181.Append(startMargin173);

            tableCellProperties317.Append(tableCellWidth317);
            tableCellProperties317.Append(gridSpan315);
            tableCellProperties317.Append(tableCellBorders317);
            tableCellProperties317.Append(shading509);
            tableCellProperties317.Append(tableCellMargin181);

            Paragraph paragraph388 = new Paragraph();

            ParagraphProperties paragraphProperties388 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId388 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification246 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties388 = new ParagraphMarkRunProperties();

            paragraphProperties388.Append(paragraphStyleId388);
            paragraphProperties388.Append(justification246);
            paragraphProperties388.Append(paragraphMarkRunProperties388);

            Run run405 = new Run();

            RunProperties runProperties405 = new RunProperties();
            FontSize fontSize492 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript492 = new FontSizeComplexScript() { Val = "26" };

            runProperties405.Append(fontSize492);
            runProperties405.Append(fontSizeComplexScript492);
            Text text284 = new Text();
            text284.Text = "Восток";

            run405.Append(runProperties405);
            run405.Append(text284);

            paragraph388.Append(paragraphProperties388);
            paragraph388.Append(run405);

            tableCell317.Append(tableCellProperties317);
            tableCell317.Append(paragraph388);

            TableCell tableCell318 = new TableCell();

            TableCellProperties tableCellProperties318 = new TableCellProperties();
            TableCellWidth tableCellWidth318 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan316 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders318 = new TableCellBorders();
            TopBorder topBorder198 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder173 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder161 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder89 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder161 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder89 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders318.Append(topBorder198);
            tableCellBorders318.Append(startBorder173);
            tableCellBorders318.Append(bottomBorder161);
            tableCellBorders318.Append(endBorder89);
            tableCellBorders318.Append(insideHorizontalBorder161);
            tableCellBorders318.Append(insideVerticalBorder89);
            Shading shading510 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin182 = new TableCellMargin();
            StartMargin startMargin174 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin182.Append(startMargin174);

            tableCellProperties318.Append(tableCellWidth318);
            tableCellProperties318.Append(gridSpan316);
            tableCellProperties318.Append(tableCellBorders318);
            tableCellProperties318.Append(shading510);
            tableCellProperties318.Append(tableCellMargin182);

            Paragraph paragraph389 = new Paragraph();

            ParagraphProperties paragraphProperties389 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId389 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification247 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties389 = new ParagraphMarkRunProperties();

            paragraphProperties389.Append(paragraphStyleId389);
            paragraphProperties389.Append(justification247);
            paragraphProperties389.Append(paragraphMarkRunProperties389);

            Run run406 = new Run();

            RunProperties runProperties406 = new RunProperties();
            FontSize fontSize493 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript493 = new FontSizeComplexScript() { Val = "26" };

            runProperties406.Append(fontSize493);
            runProperties406.Append(fontSizeComplexScript493);
            Text text285 = new Text();
            text285.Text = "210";

            run406.Append(runProperties406);
            run406.Append(text285);

            paragraph389.Append(paragraphProperties389);
            paragraph389.Append(run406);

            tableCell318.Append(tableCellProperties318);
            tableCell318.Append(paragraph389);

            tableRow113.Append(tableRowProperties113);
            tableRow113.Append(tableCell314);
            tableRow113.Append(tableCell315);
            tableRow113.Append(tableCell316);
            tableRow113.Append(tableCell317);
            tableRow113.Append(tableCell318);

            TableRow tableRow114 = new TableRow();
            TableRowProperties tableRowProperties114 = new TableRowProperties();

            TableCell tableCell319 = new TableCell();

            TableCellProperties tableCellProperties319 = new TableCellProperties();
            TableCellWidth tableCellWidth319 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan317 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders319 = new TableCellBorders();
            TopBorder topBorder199 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders319.Append(topBorder199);
            Shading shading511 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties319.Append(tableCellWidth319);
            tableCellProperties319.Append(gridSpan317);
            tableCellProperties319.Append(tableCellBorders319);
            tableCellProperties319.Append(shading511);

            Paragraph paragraph390 = new Paragraph();

            ParagraphProperties paragraphProperties390 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId390 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties390 = new ParagraphMarkRunProperties();

            paragraphProperties390.Append(paragraphStyleId390);
            paragraphProperties390.Append(paragraphMarkRunProperties390);

            Run run407 = new Run();

            RunProperties runProperties407 = new RunProperties();
            RunStyle runStyle16 = new RunStyle() { Val = "FontStyle48" };

            runProperties407.Append(runStyle16);
            Text text286 = new Text();
            text286.Text = "* по данным сайта maps.yandex.ru";

            run407.Append(runProperties407);
            run407.Append(text286);

            paragraph390.Append(paragraphProperties390);
            paragraph390.Append(run407);

            tableCell319.Append(tableCellProperties319);
            tableCell319.Append(paragraph390);

            tableRow114.Append(tableRowProperties114);
            tableRow114.Append(tableCell319);

            TableRow tableRow115 = new TableRow();
            TableRowProperties tableRowProperties115 = new TableRowProperties();

            TableCell tableCell320 = new TableCell();

            TableCellProperties tableCellProperties320 = new TableCellProperties();
            TableCellWidth tableCellWidth320 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan318 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders320 = new TableCellBorders();
            Shading shading512 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties320.Append(tableCellWidth320);
            tableCellProperties320.Append(gridSpan318);
            tableCellProperties320.Append(tableCellBorders320);
            tableCellProperties320.Append(shading512);

            Paragraph paragraph391 = new Paragraph();

            ParagraphProperties paragraphProperties391 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId391 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties391 = new ParagraphMarkRunProperties();
            Bold bold35 = new Bold();
            Bold bold36 = new Bold();
            FontSize fontSize494 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript494 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties391.Append(bold35);
            paragraphMarkRunProperties391.Append(bold36);
            paragraphMarkRunProperties391.Append(fontSize494);
            paragraphMarkRunProperties391.Append(fontSizeComplexScript494);

            paragraphProperties391.Append(paragraphStyleId391);
            paragraphProperties391.Append(paragraphMarkRunProperties391);

            Run run408 = new Run();

            RunProperties runProperties408 = new RunProperties();
            Bold bold37 = new Bold();
            FontSize fontSize495 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript495 = new FontSizeComplexScript() { Val = "26" };

            runProperties408.Append(bold37);
            runProperties408.Append(fontSize495);
            runProperties408.Append(fontSizeComplexScript495);

            run408.Append(runProperties408);

            paragraph391.Append(paragraphProperties391);
            paragraph391.Append(run408);

            tableCell320.Append(tableCellProperties320);
            tableCell320.Append(paragraph391);

            tableRow115.Append(tableRowProperties115);
            tableRow115.Append(tableCell320);

            TableRow tableRow116 = new TableRow();
            TableRowProperties tableRowProperties116 = new TableRowProperties();

            TableCell tableCell321 = new TableCell();

            TableCellProperties tableCellProperties321 = new TableCellProperties();
            TableCellWidth tableCellWidth321 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan319 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders321 = new TableCellBorders();
            Shading shading513 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties321.Append(tableCellWidth321);
            tableCellProperties321.Append(gridSpan319);
            tableCellProperties321.Append(tableCellBorders321);
            tableCellProperties321.Append(shading513);

            Paragraph paragraph392 = new Paragraph();

            ParagraphProperties paragraphProperties392 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId392 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties392 = new ParagraphMarkRunProperties();

            paragraphProperties392.Append(paragraphStyleId392);
            paragraphProperties392.Append(paragraphMarkRunProperties392);

            Run run409 = new Run();

            RunProperties runProperties409 = new RunProperties();
            Bold bold38 = new Bold();
            FontSize fontSize496 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript496 = new FontSizeComplexScript() { Val = "26" };

            runProperties409.Append(bold38);
            runProperties409.Append(fontSize496);
            runProperties409.Append(fontSizeComplexScript496);
            Text text287 = new Text();
            text287.Text = "1.10. Размещение объекта по отношению к транспортным коммуникациям:";

            run409.Append(runProperties409);
            run409.Append(text287);

            paragraph392.Append(paragraphProperties392);
            paragraph392.Append(run409);

            tableCell321.Append(tableCellProperties321);
            tableCell321.Append(paragraph392);

            tableRow116.Append(tableRowProperties116);
            tableRow116.Append(tableCell321);

            TableRow tableRow117 = new TableRow();
            TableRowProperties tableRowProperties117 = new TableRowProperties();

            TableCell tableCell322 = new TableCell();

            TableCellProperties tableCellProperties322 = new TableCellProperties();
            TableCellWidth tableCellWidth322 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders322 = new TableCellBorders();
            TopBorder topBorder200 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder174 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder162 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder90 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder162 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder90 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders322.Append(topBorder200);
            tableCellBorders322.Append(startBorder174);
            tableCellBorders322.Append(bottomBorder162);
            tableCellBorders322.Append(endBorder90);
            tableCellBorders322.Append(insideHorizontalBorder162);
            tableCellBorders322.Append(insideVerticalBorder90);
            Shading shading514 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin183 = new TableCellMargin();
            StartMargin startMargin175 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin183.Append(startMargin175);
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties322.Append(tableCellWidth322);
            tableCellProperties322.Append(tableCellBorders322);
            tableCellProperties322.Append(shading514);
            tableCellProperties322.Append(tableCellMargin183);
            tableCellProperties322.Append(tableCellVerticalAlignment35);

            Paragraph paragraph393 = new Paragraph();

            ParagraphProperties paragraphProperties393 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId393 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification248 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties393 = new ParagraphMarkRunProperties();

            paragraphProperties393.Append(paragraphStyleId393);
            paragraphProperties393.Append(justification248);
            paragraphProperties393.Append(paragraphMarkRunProperties393);

            Run run410 = new Run();

            RunProperties runProperties410 = new RunProperties();
            RunStyle runStyle17 = new RunStyle() { Val = "FontStyle48" };

            runProperties410.Append(runStyle17);
            Text text288 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text288.Text = "№ ";

            run410.Append(runProperties410);
            run410.Append(text288);

            Run run411 = new Run();

            RunProperties runProperties411 = new RunProperties();
            RunStyle runStyle18 = new RunStyle() { Val = "FontStyle48" };

            runProperties411.Append(runStyle18);
            Text text289 = new Text();
            text289.Text = "п/п";

            run411.Append(runProperties411);
            run411.Append(text289);

            paragraph393.Append(paragraphProperties393);
            paragraph393.Append(run410);
            paragraph393.Append(run411);

            tableCell322.Append(tableCellProperties322);
            tableCell322.Append(paragraph393);

            TableCell tableCell323 = new TableCell();

            TableCellProperties tableCellProperties323 = new TableCellProperties();
            TableCellWidth tableCellWidth323 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan320 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders323 = new TableCellBorders();
            TopBorder topBorder201 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder175 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder163 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder163 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders323.Append(topBorder201);
            tableCellBorders323.Append(startBorder175);
            tableCellBorders323.Append(bottomBorder163);
            tableCellBorders323.Append(insideHorizontalBorder163);
            Shading shading515 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin184 = new TableCellMargin();
            StartMargin startMargin176 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin184.Append(startMargin176);
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties323.Append(tableCellWidth323);
            tableCellProperties323.Append(gridSpan320);
            tableCellProperties323.Append(tableCellBorders323);
            tableCellProperties323.Append(shading515);
            tableCellProperties323.Append(tableCellMargin184);
            tableCellProperties323.Append(tableCellVerticalAlignment36);

            Paragraph paragraph394 = new Paragraph();

            ParagraphProperties paragraphProperties394 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId394 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification249 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties394 = new ParagraphMarkRunProperties();

            paragraphProperties394.Append(paragraphStyleId394);
            paragraphProperties394.Append(justification249);
            paragraphProperties394.Append(paragraphMarkRunProperties394);

            Run run412 = new Run();

            RunProperties runProperties412 = new RunProperties();
            RunStyle runStyle19 = new RunStyle() { Val = "FontStyle48" };

            runProperties412.Append(runStyle19);
            Text text290 = new Text();
            text290.Text = "Вид транспорта и транспортных коммуникаций";

            run412.Append(runProperties412);
            run412.Append(text290);

            paragraph394.Append(paragraphProperties394);
            paragraph394.Append(run412);

            tableCell323.Append(tableCellProperties323);
            tableCell323.Append(paragraph394);

            TableCell tableCell324 = new TableCell();

            TableCellProperties tableCellProperties324 = new TableCellProperties();
            TableCellWidth tableCellWidth324 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan321 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders324 = new TableCellBorders();
            TopBorder topBorder202 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder176 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder164 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder164 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders324.Append(topBorder202);
            tableCellBorders324.Append(startBorder176);
            tableCellBorders324.Append(bottomBorder164);
            tableCellBorders324.Append(insideHorizontalBorder164);
            Shading shading516 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin185 = new TableCellMargin();
            StartMargin startMargin177 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin185.Append(startMargin177);
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties324.Append(tableCellWidth324);
            tableCellProperties324.Append(gridSpan321);
            tableCellProperties324.Append(tableCellBorders324);
            tableCellProperties324.Append(shading516);
            tableCellProperties324.Append(tableCellMargin185);
            tableCellProperties324.Append(tableCellVerticalAlignment37);

            Paragraph paragraph395 = new Paragraph();

            ParagraphProperties paragraphProperties395 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId395 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification250 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties395 = new ParagraphMarkRunProperties();

            paragraphProperties395.Append(paragraphStyleId395);
            paragraphProperties395.Append(justification250);
            paragraphProperties395.Append(paragraphMarkRunProperties395);

            Run run413 = new Run();

            RunProperties runProperties413 = new RunProperties();
            RunStyle runStyle20 = new RunStyle() { Val = "FontStyle48" };

            runProperties413.Append(runStyle20);
            Text text291 = new Text();
            text291.Text = "Наименование";

            run413.Append(runProperties413);
            run413.Append(text291);

            paragraph395.Append(paragraphProperties395);
            paragraph395.Append(run413);

            tableCell324.Append(tableCellProperties324);
            tableCell324.Append(paragraph395);

            TableCell tableCell325 = new TableCell();

            TableCellProperties tableCellProperties325 = new TableCellProperties();
            TableCellWidth tableCellWidth325 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan322 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders325 = new TableCellBorders();
            TopBorder topBorder203 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder177 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder165 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder91 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder165 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder91 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders325.Append(topBorder203);
            tableCellBorders325.Append(startBorder177);
            tableCellBorders325.Append(bottomBorder165);
            tableCellBorders325.Append(endBorder91);
            tableCellBorders325.Append(insideHorizontalBorder165);
            tableCellBorders325.Append(insideVerticalBorder91);
            Shading shading517 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin186 = new TableCellMargin();
            StartMargin startMargin178 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin186.Append(startMargin178);
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties325.Append(tableCellWidth325);
            tableCellProperties325.Append(gridSpan322);
            tableCellProperties325.Append(tableCellBorders325);
            tableCellProperties325.Append(shading517);
            tableCellProperties325.Append(tableCellMargin186);
            tableCellProperties325.Append(tableCellVerticalAlignment38);

            Paragraph paragraph396 = new Paragraph();

            ParagraphProperties paragraphProperties396 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId396 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification251 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties396 = new ParagraphMarkRunProperties();

            paragraphProperties396.Append(paragraphStyleId396);
            paragraphProperties396.Append(justification251);
            paragraphProperties396.Append(paragraphMarkRunProperties396);

            Run run414 = new Run();

            RunProperties runProperties414 = new RunProperties();
            RunStyle runStyle21 = new RunStyle() { Val = "FontStyle48" };

            runProperties414.Append(runStyle21);
            Text text292 = new Text();
            text292.Text = "Расстояние до транспортных коммуникаций, м.";

            run414.Append(runProperties414);
            run414.Append(text292);

            paragraph396.Append(paragraphProperties396);
            paragraph396.Append(run414);

            tableCell325.Append(tableCellProperties325);
            tableCell325.Append(paragraph396);

            tableRow117.Append(tableRowProperties117);
            tableRow117.Append(tableCell322);
            tableRow117.Append(tableCell323);
            tableRow117.Append(tableCell324);
            tableRow117.Append(tableCell325);

            TableRow tableRow118 = new TableRow();
            TableRowProperties tableRowProperties118 = new TableRowProperties();

            TableCell tableCell326 = new TableCell();

            TableCellProperties tableCellProperties326 = new TableCellProperties();
            TableCellWidth tableCellWidth326 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders326 = new TableCellBorders();
            TopBorder topBorder204 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder178 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder166 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder92 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder166 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder92 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders326.Append(topBorder204);
            tableCellBorders326.Append(startBorder178);
            tableCellBorders326.Append(bottomBorder166);
            tableCellBorders326.Append(endBorder92);
            tableCellBorders326.Append(insideHorizontalBorder166);
            tableCellBorders326.Append(insideVerticalBorder92);
            Shading shading518 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin187 = new TableCellMargin();
            StartMargin startMargin179 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin187.Append(startMargin179);

            tableCellProperties326.Append(tableCellWidth326);
            tableCellProperties326.Append(tableCellBorders326);
            tableCellProperties326.Append(shading518);
            tableCellProperties326.Append(tableCellMargin187);

            Paragraph paragraph397 = new Paragraph();

            ParagraphProperties paragraphProperties397 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId397 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification252 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties397 = new ParagraphMarkRunProperties();

            paragraphProperties397.Append(paragraphStyleId397);
            paragraphProperties397.Append(justification252);
            paragraphProperties397.Append(paragraphMarkRunProperties397);

            Run run415 = new Run();

            RunProperties runProperties415 = new RunProperties();
            RunStyle runStyle22 = new RunStyle() { Val = "FontStyle48" };

            runProperties415.Append(runStyle22);
            Text text293 = new Text();
            text293.Text = "1";

            run415.Append(runProperties415);
            run415.Append(text293);

            paragraph397.Append(paragraphProperties397);
            paragraph397.Append(run415);

            tableCell326.Append(tableCellProperties326);
            tableCell326.Append(paragraph397);

            TableCell tableCell327 = new TableCell();

            TableCellProperties tableCellProperties327 = new TableCellProperties();
            TableCellWidth tableCellWidth327 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan323 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders327 = new TableCellBorders();
            TopBorder topBorder205 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder179 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder167 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder167 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders327.Append(topBorder205);
            tableCellBorders327.Append(startBorder179);
            tableCellBorders327.Append(bottomBorder167);
            tableCellBorders327.Append(insideHorizontalBorder167);
            Shading shading519 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin188 = new TableCellMargin();
            StartMargin startMargin180 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin188.Append(startMargin180);

            tableCellProperties327.Append(tableCellWidth327);
            tableCellProperties327.Append(gridSpan323);
            tableCellProperties327.Append(tableCellBorders327);
            tableCellProperties327.Append(shading519);
            tableCellProperties327.Append(tableCellMargin188);

            Paragraph paragraph398 = new Paragraph();

            ParagraphProperties paragraphProperties398 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId398 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification253 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties398 = new ParagraphMarkRunProperties();

            paragraphProperties398.Append(paragraphStyleId398);
            paragraphProperties398.Append(justification253);
            paragraphProperties398.Append(paragraphMarkRunProperties398);

            Run run416 = new Run();

            RunProperties runProperties416 = new RunProperties();
            RunStyle runStyle23 = new RunStyle() { Val = "FontStyle48" };

            runProperties416.Append(runStyle23);
            Text text294 = new Text();
            text294.Text = "2";

            run416.Append(runProperties416);
            run416.Append(text294);

            paragraph398.Append(paragraphProperties398);
            paragraph398.Append(run416);

            tableCell327.Append(tableCellProperties327);
            tableCell327.Append(paragraph398);

            TableCell tableCell328 = new TableCell();

            TableCellProperties tableCellProperties328 = new TableCellProperties();
            TableCellWidth tableCellWidth328 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan324 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders328 = new TableCellBorders();
            TopBorder topBorder206 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder180 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder168 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder168 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders328.Append(topBorder206);
            tableCellBorders328.Append(startBorder180);
            tableCellBorders328.Append(bottomBorder168);
            tableCellBorders328.Append(insideHorizontalBorder168);
            Shading shading520 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin189 = new TableCellMargin();
            StartMargin startMargin181 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin189.Append(startMargin181);

            tableCellProperties328.Append(tableCellWidth328);
            tableCellProperties328.Append(gridSpan324);
            tableCellProperties328.Append(tableCellBorders328);
            tableCellProperties328.Append(shading520);
            tableCellProperties328.Append(tableCellMargin189);

            Paragraph paragraph399 = new Paragraph();

            ParagraphProperties paragraphProperties399 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId399 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification254 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties399 = new ParagraphMarkRunProperties();

            paragraphProperties399.Append(paragraphStyleId399);
            paragraphProperties399.Append(justification254);
            paragraphProperties399.Append(paragraphMarkRunProperties399);

            Run run417 = new Run();

            RunProperties runProperties417 = new RunProperties();
            RunStyle runStyle24 = new RunStyle() { Val = "FontStyle48" };

            runProperties417.Append(runStyle24);
            Text text295 = new Text();
            text295.Text = "3";

            run417.Append(runProperties417);
            run417.Append(text295);

            paragraph399.Append(paragraphProperties399);
            paragraph399.Append(run417);

            tableCell328.Append(tableCellProperties328);
            tableCell328.Append(paragraph399);

            TableCell tableCell329 = new TableCell();

            TableCellProperties tableCellProperties329 = new TableCellProperties();
            TableCellWidth tableCellWidth329 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan325 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders329 = new TableCellBorders();
            TopBorder topBorder207 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder181 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder169 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder93 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder169 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder93 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders329.Append(topBorder207);
            tableCellBorders329.Append(startBorder181);
            tableCellBorders329.Append(bottomBorder169);
            tableCellBorders329.Append(endBorder93);
            tableCellBorders329.Append(insideHorizontalBorder169);
            tableCellBorders329.Append(insideVerticalBorder93);
            Shading shading521 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin190 = new TableCellMargin();
            StartMargin startMargin182 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin190.Append(startMargin182);

            tableCellProperties329.Append(tableCellWidth329);
            tableCellProperties329.Append(gridSpan325);
            tableCellProperties329.Append(tableCellBorders329);
            tableCellProperties329.Append(shading521);
            tableCellProperties329.Append(tableCellMargin190);

            Paragraph paragraph400 = new Paragraph();

            ParagraphProperties paragraphProperties400 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId400 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification255 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties400 = new ParagraphMarkRunProperties();

            paragraphProperties400.Append(paragraphStyleId400);
            paragraphProperties400.Append(justification255);
            paragraphProperties400.Append(paragraphMarkRunProperties400);

            Run run418 = new Run();

            RunProperties runProperties418 = new RunProperties();
            RunStyle runStyle25 = new RunStyle() { Val = "FontStyle48" };

            runProperties418.Append(runStyle25);
            Text text296 = new Text();
            text296.Text = "4";

            run418.Append(runProperties418);
            run418.Append(text296);

            paragraph400.Append(paragraphProperties400);
            paragraph400.Append(run418);

            tableCell329.Append(tableCellProperties329);
            tableCell329.Append(paragraph400);

            tableRow118.Append(tableRowProperties118);
            tableRow118.Append(tableCell326);
            tableRow118.Append(tableCell327);
            tableRow118.Append(tableCell328);
            tableRow118.Append(tableCell329);

            TableRow tableRow119 = new TableRow();
            TableRowProperties tableRowProperties119 = new TableRowProperties();

            TableCell tableCell330 = new TableCell();

            TableCellProperties tableCellProperties330 = new TableCellProperties();
            TableCellWidth tableCellWidth330 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge31 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders330 = new TableCellBorders();
            TopBorder topBorder208 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder182 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder170 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder94 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder170 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder94 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders330.Append(topBorder208);
            tableCellBorders330.Append(startBorder182);
            tableCellBorders330.Append(bottomBorder170);
            tableCellBorders330.Append(endBorder94);
            tableCellBorders330.Append(insideHorizontalBorder170);
            tableCellBorders330.Append(insideVerticalBorder94);
            Shading shading522 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin191 = new TableCellMargin();
            StartMargin startMargin183 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin191.Append(startMargin183);

            tableCellProperties330.Append(tableCellWidth330);
            tableCellProperties330.Append(verticalMerge31);
            tableCellProperties330.Append(tableCellBorders330);
            tableCellProperties330.Append(shading522);
            tableCellProperties330.Append(tableCellMargin191);

            Paragraph paragraph401 = new Paragraph();

            ParagraphProperties paragraphProperties401 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId401 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification256 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties401 = new ParagraphMarkRunProperties();

            paragraphProperties401.Append(paragraphStyleId401);
            paragraphProperties401.Append(justification256);
            paragraphProperties401.Append(paragraphMarkRunProperties401);

            Run run419 = new Run();

            RunProperties runProperties419 = new RunProperties();
            RunStyle runStyle26 = new RunStyle() { Val = "FontStyle48" };

            runProperties419.Append(runStyle26);
            Text text297 = new Text();
            text297.Text = "1";

            run419.Append(runProperties419);
            run419.Append(text297);

            paragraph401.Append(paragraphProperties401);
            paragraph401.Append(run419);

            tableCell330.Append(tableCellProperties330);
            tableCell330.Append(paragraph401);

            TableCell tableCell331 = new TableCell();

            TableCellProperties tableCellProperties331 = new TableCellProperties();
            TableCellWidth tableCellWidth331 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan326 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge32 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders331 = new TableCellBorders();
            StartBorder startBorder183 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders331.Append(startBorder183);
            Shading shading523 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin192 = new TableCellMargin();
            StartMargin startMargin184 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin192.Append(startMargin184);

            tableCellProperties331.Append(tableCellWidth331);
            tableCellProperties331.Append(gridSpan326);
            tableCellProperties331.Append(verticalMerge32);
            tableCellProperties331.Append(tableCellBorders331);
            tableCellProperties331.Append(shading523);
            tableCellProperties331.Append(tableCellMargin192);

            Paragraph paragraph402 = new Paragraph();

            ParagraphProperties paragraphProperties402 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId402 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification257 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties402 = new ParagraphMarkRunProperties();

            paragraphProperties402.Append(paragraphStyleId402);
            paragraphProperties402.Append(justification257);
            paragraphProperties402.Append(paragraphMarkRunProperties402);

            Run run420 = new Run();

            RunProperties runProperties420 = new RunProperties();
            RunStyle runStyle27 = new RunStyle() { Val = "FontStyle48" };

            runProperties420.Append(runStyle27);
            Text text298 = new Text();
            text298.Text = "Автомобильный (шоссе, дороги, автовокзалы, автостанции и прочее)";

            run420.Append(runProperties420);
            run420.Append(text298);

            paragraph402.Append(paragraphProperties402);
            paragraph402.Append(run420);

            tableCell331.Append(tableCellProperties331);
            tableCell331.Append(paragraph402);

            TableCell tableCell332 = new TableCell();

            TableCellProperties tableCellProperties332 = new TableCellProperties();
            TableCellWidth tableCellWidth332 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan327 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders332 = new TableCellBorders();
            TopBorder topBorder209 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder184 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder171 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder171 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders332.Append(topBorder209);
            tableCellBorders332.Append(startBorder184);
            tableCellBorders332.Append(bottomBorder171);
            tableCellBorders332.Append(insideHorizontalBorder171);
            Shading shading524 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin193 = new TableCellMargin();
            StartMargin startMargin185 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin193.Append(startMargin185);

            tableCellProperties332.Append(tableCellWidth332);
            tableCellProperties332.Append(gridSpan327);
            tableCellProperties332.Append(tableCellBorders332);
            tableCellProperties332.Append(shading524);
            tableCellProperties332.Append(tableCellMargin193);

            Paragraph paragraph403 = new Paragraph();

            ParagraphProperties paragraphProperties403 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId403 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification258 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties403 = new ParagraphMarkRunProperties();

            paragraphProperties403.Append(paragraphStyleId403);
            paragraphProperties403.Append(justification258);
            paragraphProperties403.Append(paragraphMarkRunProperties403);

            Run run421 = new Run();

            RunProperties runProperties421 = new RunProperties();
            FontSize fontSize497 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript497 = new FontSizeComplexScript() { Val = "26" };

            runProperties421.Append(fontSize497);
            runProperties421.Append(fontSizeComplexScript497);
            Text text299 = new Text();
            text299.Text = "МКАД";

            run421.Append(runProperties421);
            run421.Append(text299);

            paragraph403.Append(paragraphProperties403);
            paragraph403.Append(run421);

            tableCell332.Append(tableCellProperties332);
            tableCell332.Append(paragraph403);

            TableCell tableCell333 = new TableCell();

            TableCellProperties tableCellProperties333 = new TableCellProperties();
            TableCellWidth tableCellWidth333 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan328 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders333 = new TableCellBorders();
            TopBorder topBorder210 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder185 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder172 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder95 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder172 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder95 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders333.Append(topBorder210);
            tableCellBorders333.Append(startBorder185);
            tableCellBorders333.Append(bottomBorder172);
            tableCellBorders333.Append(endBorder95);
            tableCellBorders333.Append(insideHorizontalBorder172);
            tableCellBorders333.Append(insideVerticalBorder95);
            Shading shading525 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin194 = new TableCellMargin();
            StartMargin startMargin186 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin194.Append(startMargin186);

            tableCellProperties333.Append(tableCellWidth333);
            tableCellProperties333.Append(gridSpan328);
            tableCellProperties333.Append(tableCellBorders333);
            tableCellProperties333.Append(shading525);
            tableCellProperties333.Append(tableCellMargin194);

            Paragraph paragraph404 = new Paragraph();

            ParagraphProperties paragraphProperties404 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId404 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification259 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties404 = new ParagraphMarkRunProperties();

            paragraphProperties404.Append(paragraphStyleId404);
            paragraphProperties404.Append(justification259);
            paragraphProperties404.Append(paragraphMarkRunProperties404);

            Run run422 = new Run();

            RunProperties runProperties422 = new RunProperties();
            FontSize fontSize498 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript498 = new FontSizeComplexScript() { Val = "26" };

            runProperties422.Append(fontSize498);
            runProperties422.Append(fontSizeComplexScript498);
            Text text300 = new Text();
            text300.Text = "Север (781)";

            run422.Append(runProperties422);
            run422.Append(text300);

            paragraph404.Append(paragraphProperties404);
            paragraph404.Append(run422);

            tableCell333.Append(tableCellProperties333);
            tableCell333.Append(paragraph404);

            tableRow119.Append(tableRowProperties119);
            tableRow119.Append(tableCell330);
            tableRow119.Append(tableCell331);
            tableRow119.Append(tableCell332);
            tableRow119.Append(tableCell333);

            TableRow tableRow120 = new TableRow();
            TableRowProperties tableRowProperties120 = new TableRowProperties();

            TableCell tableCell334 = new TableCell();

            TableCellProperties tableCellProperties334 = new TableCellProperties();
            TableCellWidth tableCellWidth334 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge33 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders334 = new TableCellBorders();
            TopBorder topBorder211 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder186 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder173 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder96 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder173 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder96 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders334.Append(topBorder211);
            tableCellBorders334.Append(startBorder186);
            tableCellBorders334.Append(bottomBorder173);
            tableCellBorders334.Append(endBorder96);
            tableCellBorders334.Append(insideHorizontalBorder173);
            tableCellBorders334.Append(insideVerticalBorder96);
            Shading shading526 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin195 = new TableCellMargin();
            StartMargin startMargin187 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin195.Append(startMargin187);

            tableCellProperties334.Append(tableCellWidth334);
            tableCellProperties334.Append(verticalMerge33);
            tableCellProperties334.Append(tableCellBorders334);
            tableCellProperties334.Append(shading526);
            tableCellProperties334.Append(tableCellMargin195);

            Paragraph paragraph405 = new Paragraph();

            ParagraphProperties paragraphProperties405 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId405 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification260 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties405 = new ParagraphMarkRunProperties();
            RunStyle runStyle28 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties405.Append(runStyle28);

            paragraphProperties405.Append(paragraphStyleId405);
            paragraphProperties405.Append(justification260);
            paragraphProperties405.Append(paragraphMarkRunProperties405);

            Run run423 = new Run();
            RunProperties runProperties423 = new RunProperties();

            run423.Append(runProperties423);

            paragraph405.Append(paragraphProperties405);
            paragraph405.Append(run423);

            tableCell334.Append(tableCellProperties334);
            tableCell334.Append(paragraph405);

            TableCell tableCell335 = new TableCell();

            TableCellProperties tableCellProperties335 = new TableCellProperties();
            TableCellWidth tableCellWidth335 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan329 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge34 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders335 = new TableCellBorders();
            StartBorder startBorder187 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders335.Append(startBorder187);
            Shading shading527 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin196 = new TableCellMargin();
            StartMargin startMargin188 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin196.Append(startMargin188);

            tableCellProperties335.Append(tableCellWidth335);
            tableCellProperties335.Append(gridSpan329);
            tableCellProperties335.Append(verticalMerge34);
            tableCellProperties335.Append(tableCellBorders335);
            tableCellProperties335.Append(shading527);
            tableCellProperties335.Append(tableCellMargin196);

            Paragraph paragraph406 = new Paragraph();

            ParagraphProperties paragraphProperties406 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId406 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification261 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties406 = new ParagraphMarkRunProperties();
            RunStyle runStyle29 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties406.Append(runStyle29);

            paragraphProperties406.Append(paragraphStyleId406);
            paragraphProperties406.Append(justification261);
            paragraphProperties406.Append(paragraphMarkRunProperties406);

            Run run424 = new Run();
            RunProperties runProperties424 = new RunProperties();

            run424.Append(runProperties424);

            paragraph406.Append(paragraphProperties406);
            paragraph406.Append(run424);

            tableCell335.Append(tableCellProperties335);
            tableCell335.Append(paragraph406);

            TableCell tableCell336 = new TableCell();

            TableCellProperties tableCellProperties336 = new TableCellProperties();
            TableCellWidth tableCellWidth336 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan330 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders336 = new TableCellBorders();
            TopBorder topBorder212 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder188 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder174 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder174 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders336.Append(topBorder212);
            tableCellBorders336.Append(startBorder188);
            tableCellBorders336.Append(bottomBorder174);
            tableCellBorders336.Append(insideHorizontalBorder174);
            Shading shading528 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin197 = new TableCellMargin();
            StartMargin startMargin189 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin197.Append(startMargin189);

            tableCellProperties336.Append(tableCellWidth336);
            tableCellProperties336.Append(gridSpan330);
            tableCellProperties336.Append(tableCellBorders336);
            tableCellProperties336.Append(shading528);
            tableCellProperties336.Append(tableCellMargin197);

            Paragraph paragraph407 = new Paragraph();

            ParagraphProperties paragraphProperties407 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId407 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification262 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties407 = new ParagraphMarkRunProperties();

            paragraphProperties407.Append(paragraphStyleId407);
            paragraphProperties407.Append(justification262);
            paragraphProperties407.Append(paragraphMarkRunProperties407);

            Run run425 = new Run();

            RunProperties runProperties425 = new RunProperties();
            FontSize fontSize499 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript499 = new FontSizeComplexScript() { Val = "26" };

            runProperties425.Append(fontSize499);
            runProperties425.Append(fontSizeComplexScript499);
            Text text301 = new Text();
            text301.Text = "ул. Вилиса Лациса";

            run425.Append(runProperties425);
            run425.Append(text301);

            paragraph407.Append(paragraphProperties407);
            paragraph407.Append(run425);

            tableCell336.Append(tableCellProperties336);
            tableCell336.Append(paragraph407);

            TableCell tableCell337 = new TableCell();

            TableCellProperties tableCellProperties337 = new TableCellProperties();
            TableCellWidth tableCellWidth337 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan331 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders337 = new TableCellBorders();
            TopBorder topBorder213 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder189 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder175 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder97 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder175 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder97 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders337.Append(topBorder213);
            tableCellBorders337.Append(startBorder189);
            tableCellBorders337.Append(bottomBorder175);
            tableCellBorders337.Append(endBorder97);
            tableCellBorders337.Append(insideHorizontalBorder175);
            tableCellBorders337.Append(insideVerticalBorder97);
            Shading shading529 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin198 = new TableCellMargin();
            StartMargin startMargin190 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin198.Append(startMargin190);

            tableCellProperties337.Append(tableCellWidth337);
            tableCellProperties337.Append(gridSpan331);
            tableCellProperties337.Append(tableCellBorders337);
            tableCellProperties337.Append(shading529);
            tableCellProperties337.Append(tableCellMargin198);

            Paragraph paragraph408 = new Paragraph();

            ParagraphProperties paragraphProperties408 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId408 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification263 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties408 = new ParagraphMarkRunProperties();

            paragraphProperties408.Append(paragraphStyleId408);
            paragraphProperties408.Append(justification263);
            paragraphProperties408.Append(paragraphMarkRunProperties408);

            Run run426 = new Run();

            RunProperties runProperties426 = new RunProperties();
            FontSize fontSize500 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript500 = new FontSizeComplexScript() { Val = "26" };

            runProperties426.Append(fontSize500);
            runProperties426.Append(fontSizeComplexScript500);
            Text text302 = new Text();
            text302.Text = "Север (48)";

            run426.Append(runProperties426);
            run426.Append(text302);

            paragraph408.Append(paragraphProperties408);
            paragraph408.Append(run426);

            tableCell337.Append(tableCellProperties337);
            tableCell337.Append(paragraph408);

            tableRow120.Append(tableRowProperties120);
            tableRow120.Append(tableCell334);
            tableRow120.Append(tableCell335);
            tableRow120.Append(tableCell336);
            tableRow120.Append(tableCell337);

            TableRow tableRow121 = new TableRow();
            TableRowProperties tableRowProperties121 = new TableRowProperties();

            TableCell tableCell338 = new TableCell();

            TableCellProperties tableCellProperties338 = new TableCellProperties();
            TableCellWidth tableCellWidth338 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge35 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders338 = new TableCellBorders();
            TopBorder topBorder214 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder190 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder176 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder98 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder176 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder98 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders338.Append(topBorder214);
            tableCellBorders338.Append(startBorder190);
            tableCellBorders338.Append(bottomBorder176);
            tableCellBorders338.Append(endBorder98);
            tableCellBorders338.Append(insideHorizontalBorder176);
            tableCellBorders338.Append(insideVerticalBorder98);
            Shading shading530 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin199 = new TableCellMargin();
            StartMargin startMargin191 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin199.Append(startMargin191);

            tableCellProperties338.Append(tableCellWidth338);
            tableCellProperties338.Append(verticalMerge35);
            tableCellProperties338.Append(tableCellBorders338);
            tableCellProperties338.Append(shading530);
            tableCellProperties338.Append(tableCellMargin199);

            Paragraph paragraph409 = new Paragraph();

            ParagraphProperties paragraphProperties409 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId409 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification264 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties409 = new ParagraphMarkRunProperties();
            RunStyle runStyle30 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties409.Append(runStyle30);

            paragraphProperties409.Append(paragraphStyleId409);
            paragraphProperties409.Append(justification264);
            paragraphProperties409.Append(paragraphMarkRunProperties409);

            Run run427 = new Run();
            RunProperties runProperties427 = new RunProperties();

            run427.Append(runProperties427);

            paragraph409.Append(paragraphProperties409);
            paragraph409.Append(run427);

            tableCell338.Append(tableCellProperties338);
            tableCell338.Append(paragraph409);

            TableCell tableCell339 = new TableCell();

            TableCellProperties tableCellProperties339 = new TableCellProperties();
            TableCellWidth tableCellWidth339 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan332 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge36 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders339 = new TableCellBorders();
            TopBorder topBorder215 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder191 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder177 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder177 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders339.Append(topBorder215);
            tableCellBorders339.Append(startBorder191);
            tableCellBorders339.Append(bottomBorder177);
            tableCellBorders339.Append(insideHorizontalBorder177);
            Shading shading531 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin200 = new TableCellMargin();
            StartMargin startMargin192 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin200.Append(startMargin192);

            tableCellProperties339.Append(tableCellWidth339);
            tableCellProperties339.Append(gridSpan332);
            tableCellProperties339.Append(verticalMerge36);
            tableCellProperties339.Append(tableCellBorders339);
            tableCellProperties339.Append(shading531);
            tableCellProperties339.Append(tableCellMargin200);

            Paragraph paragraph410 = new Paragraph();

            ParagraphProperties paragraphProperties410 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId410 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification265 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties410 = new ParagraphMarkRunProperties();
            RunStyle runStyle31 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties410.Append(runStyle31);

            paragraphProperties410.Append(paragraphStyleId410);
            paragraphProperties410.Append(justification265);
            paragraphProperties410.Append(paragraphMarkRunProperties410);

            Run run428 = new Run();
            RunProperties runProperties428 = new RunProperties();

            run428.Append(runProperties428);

            paragraph410.Append(paragraphProperties410);
            paragraph410.Append(run428);

            tableCell339.Append(tableCellProperties339);
            tableCell339.Append(paragraph410);

            TableCell tableCell340 = new TableCell();

            TableCellProperties tableCellProperties340 = new TableCellProperties();
            TableCellWidth tableCellWidth340 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan333 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders340 = new TableCellBorders();
            TopBorder topBorder216 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder192 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder178 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder178 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders340.Append(topBorder216);
            tableCellBorders340.Append(startBorder192);
            tableCellBorders340.Append(bottomBorder178);
            tableCellBorders340.Append(insideHorizontalBorder178);
            Shading shading532 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin201 = new TableCellMargin();
            StartMargin startMargin193 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin201.Append(startMargin193);

            tableCellProperties340.Append(tableCellWidth340);
            tableCellProperties340.Append(gridSpan333);
            tableCellProperties340.Append(tableCellBorders340);
            tableCellProperties340.Append(shading532);
            tableCellProperties340.Append(tableCellMargin201);

            Paragraph paragraph411 = new Paragraph();

            ParagraphProperties paragraphProperties411 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId411 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification266 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties411 = new ParagraphMarkRunProperties();

            paragraphProperties411.Append(paragraphStyleId411);
            paragraphProperties411.Append(justification266);
            paragraphProperties411.Append(paragraphMarkRunProperties411);

            Run run429 = new Run();

            RunProperties runProperties429 = new RunProperties();
            FontSize fontSize501 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript501 = new FontSizeComplexScript() { Val = "26" };

            runProperties429.Append(fontSize501);
            runProperties429.Append(fontSizeComplexScript501);
            Text text303 = new Text();
            text303.Text = "ул. Героев - Панфиловцев";

            run429.Append(runProperties429);
            run429.Append(text303);

            paragraph411.Append(paragraphProperties411);
            paragraph411.Append(run429);

            tableCell340.Append(tableCellProperties340);
            tableCell340.Append(paragraph411);

            TableCell tableCell341 = new TableCell();

            TableCellProperties tableCellProperties341 = new TableCellProperties();
            TableCellWidth tableCellWidth341 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan334 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders341 = new TableCellBorders();
            TopBorder topBorder217 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder193 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder179 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder99 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder179 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder99 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders341.Append(topBorder217);
            tableCellBorders341.Append(startBorder193);
            tableCellBorders341.Append(bottomBorder179);
            tableCellBorders341.Append(endBorder99);
            tableCellBorders341.Append(insideHorizontalBorder179);
            tableCellBorders341.Append(insideVerticalBorder99);
            Shading shading533 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin202 = new TableCellMargin();
            StartMargin startMargin194 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin202.Append(startMargin194);

            tableCellProperties341.Append(tableCellWidth341);
            tableCellProperties341.Append(gridSpan334);
            tableCellProperties341.Append(tableCellBorders341);
            tableCellProperties341.Append(shading533);
            tableCellProperties341.Append(tableCellMargin202);

            Paragraph paragraph412 = new Paragraph();

            ParagraphProperties paragraphProperties412 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId412 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification267 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties412 = new ParagraphMarkRunProperties();

            paragraphProperties412.Append(paragraphStyleId412);
            paragraphProperties412.Append(justification267);
            paragraphProperties412.Append(paragraphMarkRunProperties412);

            Run run430 = new Run();

            RunProperties runProperties430 = new RunProperties();
            FontSize fontSize502 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript502 = new FontSizeComplexScript() { Val = "26" };

            runProperties430.Append(fontSize502);
            runProperties430.Append(fontSizeComplexScript502);
            Text text304 = new Text();
            text304.Text = "Юг (500)";

            run430.Append(runProperties430);
            run430.Append(text304);

            paragraph412.Append(paragraphProperties412);
            paragraph412.Append(run430);

            tableCell341.Append(tableCellProperties341);
            tableCell341.Append(paragraph412);

            tableRow121.Append(tableRowProperties121);
            tableRow121.Append(tableCell338);
            tableRow121.Append(tableCell339);
            tableRow121.Append(tableCell340);
            tableRow121.Append(tableCell341);

            TableRow tableRow122 = new TableRow();
            TableRowProperties tableRowProperties122 = new TableRowProperties();

            TableCell tableCell342 = new TableCell();

            TableCellProperties tableCellProperties342 = new TableCellProperties();
            TableCellWidth tableCellWidth342 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders342 = new TableCellBorders();
            TopBorder topBorder218 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder194 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder180 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder100 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder180 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder100 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders342.Append(topBorder218);
            tableCellBorders342.Append(startBorder194);
            tableCellBorders342.Append(bottomBorder180);
            tableCellBorders342.Append(endBorder100);
            tableCellBorders342.Append(insideHorizontalBorder180);
            tableCellBorders342.Append(insideVerticalBorder100);
            Shading shading534 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin203 = new TableCellMargin();
            StartMargin startMargin195 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin203.Append(startMargin195);

            tableCellProperties342.Append(tableCellWidth342);
            tableCellProperties342.Append(tableCellBorders342);
            tableCellProperties342.Append(shading534);
            tableCellProperties342.Append(tableCellMargin203);

            Paragraph paragraph413 = new Paragraph();

            ParagraphProperties paragraphProperties413 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId413 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification268 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties413 = new ParagraphMarkRunProperties();

            paragraphProperties413.Append(paragraphStyleId413);
            paragraphProperties413.Append(justification268);
            paragraphProperties413.Append(paragraphMarkRunProperties413);

            Run run431 = new Run();

            RunProperties runProperties431 = new RunProperties();
            RunStyle runStyle32 = new RunStyle() { Val = "FontStyle48" };

            runProperties431.Append(runStyle32);
            Text text305 = new Text();
            text305.Text = "2";

            run431.Append(runProperties431);
            run431.Append(text305);

            paragraph413.Append(paragraphProperties413);
            paragraph413.Append(run431);

            tableCell342.Append(tableCellProperties342);
            tableCell342.Append(paragraph413);

            TableCell tableCell343 = new TableCell();

            TableCellProperties tableCellProperties343 = new TableCellProperties();
            TableCellWidth tableCellWidth343 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan335 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders343 = new TableCellBorders();
            StartBorder startBorder195 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders343.Append(startBorder195);
            Shading shading535 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin204 = new TableCellMargin();
            StartMargin startMargin196 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin204.Append(startMargin196);

            tableCellProperties343.Append(tableCellWidth343);
            tableCellProperties343.Append(gridSpan335);
            tableCellProperties343.Append(tableCellBorders343);
            tableCellProperties343.Append(shading535);
            tableCellProperties343.Append(tableCellMargin204);

            Paragraph paragraph414 = new Paragraph();

            ParagraphProperties paragraphProperties414 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId414 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification269 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties414 = new ParagraphMarkRunProperties();

            paragraphProperties414.Append(paragraphStyleId414);
            paragraphProperties414.Append(justification269);
            paragraphProperties414.Append(paragraphMarkRunProperties414);

            Run run432 = new Run();

            RunProperties runProperties432 = new RunProperties();
            RunStyle runStyle33 = new RunStyle() { Val = "FontStyle48" };

            runProperties432.Append(runStyle33);
            Text text306 = new Text();
            text306.Text = "Железнодорожный (железнодорожные пути, вокзалы, платформы, переезда и прочее)";

            run432.Append(runProperties432);
            run432.Append(text306);

            paragraph414.Append(paragraphProperties414);
            paragraph414.Append(run432);

            tableCell343.Append(tableCellProperties343);
            tableCell343.Append(paragraph414);

            TableCell tableCell344 = new TableCell();

            TableCellProperties tableCellProperties344 = new TableCellProperties();
            TableCellWidth tableCellWidth344 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan336 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders344 = new TableCellBorders();
            TopBorder topBorder219 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder196 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder181 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder181 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders344.Append(topBorder219);
            tableCellBorders344.Append(startBorder196);
            tableCellBorders344.Append(bottomBorder181);
            tableCellBorders344.Append(insideHorizontalBorder181);
            Shading shading536 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin205 = new TableCellMargin();
            StartMargin startMargin197 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin205.Append(startMargin197);
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties344.Append(tableCellWidth344);
            tableCellProperties344.Append(gridSpan336);
            tableCellProperties344.Append(tableCellBorders344);
            tableCellProperties344.Append(shading536);
            tableCellProperties344.Append(tableCellMargin205);
            tableCellProperties344.Append(tableCellVerticalAlignment39);

            Paragraph paragraph415 = new Paragraph();

            ParagraphProperties paragraphProperties415 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId415 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification270 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties415 = new ParagraphMarkRunProperties();

            paragraphProperties415.Append(paragraphStyleId415);
            paragraphProperties415.Append(justification270);
            paragraphProperties415.Append(paragraphMarkRunProperties415);

            Run run433 = new Run();

            RunProperties runProperties433 = new RunProperties();
            FontSize fontSize503 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript503 = new FontSizeComplexScript() { Val = "26" };

            runProperties433.Append(fontSize503);
            runProperties433.Append(fontSizeComplexScript503);
            Text text307 = new Text();
            text307.Text = "Станция метро «Планерная»";

            run433.Append(runProperties433);
            run433.Append(text307);

            paragraph415.Append(paragraphProperties415);
            paragraph415.Append(run433);

            tableCell344.Append(tableCellProperties344);
            tableCell344.Append(paragraph415);

            TableCell tableCell345 = new TableCell();

            TableCellProperties tableCellProperties345 = new TableCellProperties();
            TableCellWidth tableCellWidth345 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan337 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders345 = new TableCellBorders();
            TopBorder topBorder220 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder197 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder182 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder101 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder182 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder101 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders345.Append(topBorder220);
            tableCellBorders345.Append(startBorder197);
            tableCellBorders345.Append(bottomBorder182);
            tableCellBorders345.Append(endBorder101);
            tableCellBorders345.Append(insideHorizontalBorder182);
            tableCellBorders345.Append(insideVerticalBorder101);
            Shading shading537 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin206 = new TableCellMargin();
            StartMargin startMargin198 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin206.Append(startMargin198);
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties345.Append(tableCellWidth345);
            tableCellProperties345.Append(gridSpan337);
            tableCellProperties345.Append(tableCellBorders345);
            tableCellProperties345.Append(shading537);
            tableCellProperties345.Append(tableCellMargin206);
            tableCellProperties345.Append(tableCellVerticalAlignment40);

            Paragraph paragraph416 = new Paragraph();

            ParagraphProperties paragraphProperties416 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId416 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification271 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties416 = new ParagraphMarkRunProperties();

            paragraphProperties416.Append(paragraphStyleId416);
            paragraphProperties416.Append(justification271);
            paragraphProperties416.Append(paragraphMarkRunProperties416);

            Run run434 = new Run();

            RunProperties runProperties434 = new RunProperties();
            FontSize fontSize504 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript504 = new FontSizeComplexScript() { Val = "26" };

            runProperties434.Append(fontSize504);
            runProperties434.Append(fontSizeComplexScript504);
            Text text308 = new Text();
            text308.Text = "Восток (1820)";

            run434.Append(runProperties434);
            run434.Append(text308);

            paragraph416.Append(paragraphProperties416);
            paragraph416.Append(run434);

            tableCell345.Append(tableCellProperties345);
            tableCell345.Append(paragraph416);

            tableRow122.Append(tableRowProperties122);
            tableRow122.Append(tableCell342);
            tableRow122.Append(tableCell343);
            tableRow122.Append(tableCell344);
            tableRow122.Append(tableCell345);

            TableRow tableRow123 = new TableRow();
            TableRowProperties tableRowProperties123 = new TableRowProperties();

            TableCell tableCell346 = new TableCell();

            TableCellProperties tableCellProperties346 = new TableCellProperties();
            TableCellWidth tableCellWidth346 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders346 = new TableCellBorders();
            TopBorder topBorder221 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder198 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder183 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder102 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder183 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder102 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders346.Append(topBorder221);
            tableCellBorders346.Append(startBorder198);
            tableCellBorders346.Append(bottomBorder183);
            tableCellBorders346.Append(endBorder102);
            tableCellBorders346.Append(insideHorizontalBorder183);
            tableCellBorders346.Append(insideVerticalBorder102);
            Shading shading538 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin207 = new TableCellMargin();
            StartMargin startMargin199 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin207.Append(startMargin199);

            tableCellProperties346.Append(tableCellWidth346);
            tableCellProperties346.Append(tableCellBorders346);
            tableCellProperties346.Append(shading538);
            tableCellProperties346.Append(tableCellMargin207);

            Paragraph paragraph417 = new Paragraph();

            ParagraphProperties paragraphProperties417 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId417 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification272 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties417 = new ParagraphMarkRunProperties();

            paragraphProperties417.Append(paragraphStyleId417);
            paragraphProperties417.Append(justification272);
            paragraphProperties417.Append(paragraphMarkRunProperties417);

            Run run435 = new Run();

            RunProperties runProperties435 = new RunProperties();
            RunStyle runStyle34 = new RunStyle() { Val = "FontStyle48" };

            runProperties435.Append(runStyle34);
            Text text309 = new Text();
            text309.Text = "3";

            run435.Append(runProperties435);
            run435.Append(text309);

            paragraph417.Append(paragraphProperties417);
            paragraph417.Append(run435);

            tableCell346.Append(tableCellProperties346);
            tableCell346.Append(paragraph417);

            TableCell tableCell347 = new TableCell();

            TableCellProperties tableCellProperties347 = new TableCellProperties();
            TableCellWidth tableCellWidth347 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan338 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders347 = new TableCellBorders();
            TopBorder topBorder222 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder199 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder184 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder184 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders347.Append(topBorder222);
            tableCellBorders347.Append(startBorder199);
            tableCellBorders347.Append(bottomBorder184);
            tableCellBorders347.Append(insideHorizontalBorder184);
            Shading shading539 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin208 = new TableCellMargin();
            StartMargin startMargin200 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin208.Append(startMargin200);

            tableCellProperties347.Append(tableCellWidth347);
            tableCellProperties347.Append(gridSpan338);
            tableCellProperties347.Append(tableCellBorders347);
            tableCellProperties347.Append(shading539);
            tableCellProperties347.Append(tableCellMargin208);

            Paragraph paragraph418 = new Paragraph();

            ParagraphProperties paragraphProperties418 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId418 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification273 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties418 = new ParagraphMarkRunProperties();

            paragraphProperties418.Append(paragraphStyleId418);
            paragraphProperties418.Append(justification273);
            paragraphProperties418.Append(paragraphMarkRunProperties418);

            Run run436 = new Run();

            RunProperties runProperties436 = new RunProperties();
            RunStyle runStyle35 = new RunStyle() { Val = "FontStyle48" };

            runProperties436.Append(runStyle35);
            Text text310 = new Text();
            text310.Text = "Воздушный (аэропорты, аэровокзалы, военные аэродромы, вертолетные площадки, взлетно-посадочные полосы и прочее)";

            run436.Append(runProperties436);
            run436.Append(text310);

            paragraph418.Append(paragraphProperties418);
            paragraph418.Append(run436);

            tableCell347.Append(tableCellProperties347);
            tableCell347.Append(paragraph418);

            TableCell tableCell348 = new TableCell();

            TableCellProperties tableCellProperties348 = new TableCellProperties();
            TableCellWidth tableCellWidth348 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan339 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders348 = new TableCellBorders();
            TopBorder topBorder223 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder200 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder185 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder185 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders348.Append(topBorder223);
            tableCellBorders348.Append(startBorder200);
            tableCellBorders348.Append(bottomBorder185);
            tableCellBorders348.Append(insideHorizontalBorder185);
            Shading shading540 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin209 = new TableCellMargin();
            StartMargin startMargin201 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin209.Append(startMargin201);

            tableCellProperties348.Append(tableCellWidth348);
            tableCellProperties348.Append(gridSpan339);
            tableCellProperties348.Append(tableCellBorders348);
            tableCellProperties348.Append(shading540);
            tableCellProperties348.Append(tableCellMargin209);

            Paragraph paragraph419 = new Paragraph();

            ParagraphProperties paragraphProperties419 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId419 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification274 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties419 = new ParagraphMarkRunProperties();

            paragraphProperties419.Append(paragraphStyleId419);
            paragraphProperties419.Append(justification274);
            paragraphProperties419.Append(paragraphMarkRunProperties419);

            Run run437 = new Run();
            RunProperties runProperties437 = new RunProperties();
            Text text311 = new Text();
            text311.Text = "ОТСУТСТВУЕТ";

            run437.Append(runProperties437);
            run437.Append(text311);

            paragraph419.Append(paragraphProperties419);
            paragraph419.Append(run437);

            tableCell348.Append(tableCellProperties348);
            tableCell348.Append(paragraph419);

            TableCell tableCell349 = new TableCell();

            TableCellProperties tableCellProperties349 = new TableCellProperties();
            TableCellWidth tableCellWidth349 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan340 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders349 = new TableCellBorders();
            TopBorder topBorder224 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder201 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder186 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder103 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder186 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder103 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders349.Append(topBorder224);
            tableCellBorders349.Append(startBorder201);
            tableCellBorders349.Append(bottomBorder186);
            tableCellBorders349.Append(endBorder103);
            tableCellBorders349.Append(insideHorizontalBorder186);
            tableCellBorders349.Append(insideVerticalBorder103);
            Shading shading541 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin210 = new TableCellMargin();
            StartMargin startMargin202 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin210.Append(startMargin202);

            tableCellProperties349.Append(tableCellWidth349);
            tableCellProperties349.Append(gridSpan340);
            tableCellProperties349.Append(tableCellBorders349);
            tableCellProperties349.Append(shading541);
            tableCellProperties349.Append(tableCellMargin210);

            Paragraph paragraph420 = new Paragraph();

            ParagraphProperties paragraphProperties420 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId420 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification275 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties420 = new ParagraphMarkRunProperties();

            paragraphProperties420.Append(paragraphStyleId420);
            paragraphProperties420.Append(justification275);
            paragraphProperties420.Append(paragraphMarkRunProperties420);

            Run run438 = new Run();
            RunProperties runProperties438 = new RunProperties();

            run438.Append(runProperties438);

            paragraph420.Append(paragraphProperties420);
            paragraph420.Append(run438);

            tableCell349.Append(tableCellProperties349);
            tableCell349.Append(paragraph420);

            tableRow123.Append(tableRowProperties123);
            tableRow123.Append(tableCell346);
            tableRow123.Append(tableCell347);
            tableRow123.Append(tableCell348);
            tableRow123.Append(tableCell349);

            TableRow tableRow124 = new TableRow();
            TableRowProperties tableRowProperties124 = new TableRowProperties();

            TableCell tableCell350 = new TableCell();

            TableCellProperties tableCellProperties350 = new TableCellProperties();
            TableCellWidth tableCellWidth350 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders350 = new TableCellBorders();
            TopBorder topBorder225 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder202 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder187 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder104 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder187 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder104 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders350.Append(topBorder225);
            tableCellBorders350.Append(startBorder202);
            tableCellBorders350.Append(bottomBorder187);
            tableCellBorders350.Append(endBorder104);
            tableCellBorders350.Append(insideHorizontalBorder187);
            tableCellBorders350.Append(insideVerticalBorder104);
            Shading shading542 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin211 = new TableCellMargin();
            StartMargin startMargin203 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin211.Append(startMargin203);

            tableCellProperties350.Append(tableCellWidth350);
            tableCellProperties350.Append(tableCellBorders350);
            tableCellProperties350.Append(shading542);
            tableCellProperties350.Append(tableCellMargin211);

            Paragraph paragraph421 = new Paragraph();

            ParagraphProperties paragraphProperties421 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId421 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification276 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties421 = new ParagraphMarkRunProperties();

            paragraphProperties421.Append(paragraphStyleId421);
            paragraphProperties421.Append(justification276);
            paragraphProperties421.Append(paragraphMarkRunProperties421);

            Run run439 = new Run();

            RunProperties runProperties439 = new RunProperties();
            RunStyle runStyle36 = new RunStyle() { Val = "FontStyle48" };

            runProperties439.Append(runStyle36);
            Text text312 = new Text();
            text312.Text = "4";

            run439.Append(runProperties439);
            run439.Append(text312);

            paragraph421.Append(paragraphProperties421);
            paragraph421.Append(run439);

            tableCell350.Append(tableCellProperties350);
            tableCell350.Append(paragraph421);

            TableCell tableCell351 = new TableCell();

            TableCellProperties tableCellProperties351 = new TableCellProperties();
            TableCellWidth tableCellWidth351 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan341 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders351 = new TableCellBorders();
            TopBorder topBorder226 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder203 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder188 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder188 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders351.Append(topBorder226);
            tableCellBorders351.Append(startBorder203);
            tableCellBorders351.Append(bottomBorder188);
            tableCellBorders351.Append(insideHorizontalBorder188);
            Shading shading543 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin212 = new TableCellMargin();
            StartMargin startMargin204 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin212.Append(startMargin204);

            tableCellProperties351.Append(tableCellWidth351);
            tableCellProperties351.Append(gridSpan341);
            tableCellProperties351.Append(tableCellBorders351);
            tableCellProperties351.Append(shading543);
            tableCellProperties351.Append(tableCellMargin212);

            Paragraph paragraph422 = new Paragraph();

            ParagraphProperties paragraphProperties422 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId422 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification277 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties422 = new ParagraphMarkRunProperties();

            paragraphProperties422.Append(paragraphStyleId422);
            paragraphProperties422.Append(justification277);
            paragraphProperties422.Append(paragraphMarkRunProperties422);

            Run run440 = new Run();

            RunProperties runProperties440 = new RunProperties();
            RunStyle runStyle37 = new RunStyle() { Val = "FontStyle48" };

            runProperties440.Append(runStyle37);
            Text text313 = new Text();
            text313.Text = "Водный (морские и речные порты, причалы)";

            run440.Append(runProperties440);
            run440.Append(text313);

            paragraph422.Append(paragraphProperties422);
            paragraph422.Append(run440);

            tableCell351.Append(tableCellProperties351);
            tableCell351.Append(paragraph422);

            TableCell tableCell352 = new TableCell();

            TableCellProperties tableCellProperties352 = new TableCellProperties();
            TableCellWidth tableCellWidth352 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan342 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders352 = new TableCellBorders();
            TopBorder topBorder227 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder204 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder189 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder189 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders352.Append(topBorder227);
            tableCellBorders352.Append(startBorder204);
            tableCellBorders352.Append(bottomBorder189);
            tableCellBorders352.Append(insideHorizontalBorder189);
            Shading shading544 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin213 = new TableCellMargin();
            StartMargin startMargin205 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin213.Append(startMargin205);

            tableCellProperties352.Append(tableCellWidth352);
            tableCellProperties352.Append(gridSpan342);
            tableCellProperties352.Append(tableCellBorders352);
            tableCellProperties352.Append(shading544);
            tableCellProperties352.Append(tableCellMargin213);

            Paragraph paragraph423 = new Paragraph();

            ParagraphProperties paragraphProperties423 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId423 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification278 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties423 = new ParagraphMarkRunProperties();

            paragraphProperties423.Append(paragraphStyleId423);
            paragraphProperties423.Append(justification278);
            paragraphProperties423.Append(paragraphMarkRunProperties423);

            Run run441 = new Run();

            RunProperties runProperties441 = new RunProperties();
            RunStyle runStyle38 = new RunStyle() { Val = "FontStyle48" };

            runProperties441.Append(runStyle38);
            Text text314 = new Text();
            text314.Text = "ОТСУТСТВУЕТ";

            run441.Append(runProperties441);
            run441.Append(text314);

            paragraph423.Append(paragraphProperties423);
            paragraph423.Append(run441);

            tableCell352.Append(tableCellProperties352);
            tableCell352.Append(paragraph423);

            TableCell tableCell353 = new TableCell();

            TableCellProperties tableCellProperties353 = new TableCellProperties();
            TableCellWidth tableCellWidth353 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan343 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders353 = new TableCellBorders();
            TopBorder topBorder228 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder205 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder190 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder105 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder190 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder105 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders353.Append(topBorder228);
            tableCellBorders353.Append(startBorder205);
            tableCellBorders353.Append(bottomBorder190);
            tableCellBorders353.Append(endBorder105);
            tableCellBorders353.Append(insideHorizontalBorder190);
            tableCellBorders353.Append(insideVerticalBorder105);
            Shading shading545 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin214 = new TableCellMargin();
            StartMargin startMargin206 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin214.Append(startMargin206);

            tableCellProperties353.Append(tableCellWidth353);
            tableCellProperties353.Append(gridSpan343);
            tableCellProperties353.Append(tableCellBorders353);
            tableCellProperties353.Append(shading545);
            tableCellProperties353.Append(tableCellMargin214);

            Paragraph paragraph424 = new Paragraph();

            ParagraphProperties paragraphProperties424 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId424 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification279 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties424 = new ParagraphMarkRunProperties();
            RunStyle runStyle39 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties424.Append(runStyle39);

            paragraphProperties424.Append(paragraphStyleId424);
            paragraphProperties424.Append(justification279);
            paragraphProperties424.Append(paragraphMarkRunProperties424);

            Run run442 = new Run();
            RunProperties runProperties442 = new RunProperties();

            run442.Append(runProperties442);

            paragraph424.Append(paragraphProperties424);
            paragraph424.Append(run442);

            tableCell353.Append(tableCellProperties353);
            tableCell353.Append(paragraph424);

            tableRow124.Append(tableRowProperties124);
            tableRow124.Append(tableCell350);
            tableRow124.Append(tableCell351);
            tableRow124.Append(tableCell352);
            tableRow124.Append(tableCell353);

            TableRow tableRow125 = new TableRow();
            TableRowProperties tableRowProperties125 = new TableRowProperties();

            TableCell tableCell354 = new TableCell();

            TableCellProperties tableCellProperties354 = new TableCellProperties();
            TableCellWidth tableCellWidth354 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan344 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders354 = new TableCellBorders();
            TopBorder topBorder229 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders354.Append(topBorder229);
            Shading shading546 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties354.Append(tableCellWidth354);
            tableCellProperties354.Append(gridSpan344);
            tableCellProperties354.Append(tableCellBorders354);
            tableCellProperties354.Append(shading546);

            Paragraph paragraph425 = new Paragraph();

            ParagraphProperties paragraphProperties425 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId425 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties425 = new ParagraphMarkRunProperties();

            paragraphProperties425.Append(paragraphStyleId425);
            paragraphProperties425.Append(paragraphMarkRunProperties425);

            Run run443 = new Run();

            RunProperties runProperties443 = new RunProperties();
            RunStyle runStyle40 = new RunStyle() { Val = "FontStyle48" };

            runProperties443.Append(runStyle40);
            Text text315 = new Text();
            text315.Text = "* по данным сайта maps.yandex.ru";

            run443.Append(runProperties443);
            run443.Append(text315);

            paragraph425.Append(paragraphProperties425);
            paragraph425.Append(run443);

            tableCell354.Append(tableCellProperties354);
            tableCell354.Append(paragraph425);

            tableRow125.Append(tableRowProperties125);
            tableRow125.Append(tableCell354);

            TableRow tableRow126 = new TableRow();
            TableRowProperties tableRowProperties126 = new TableRowProperties();

            TableCell tableCell355 = new TableCell();

            TableCellProperties tableCellProperties355 = new TableCellProperties();
            TableCellWidth tableCellWidth355 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan345 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders355 = new TableCellBorders();
            Shading shading547 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties355.Append(tableCellWidth355);
            tableCellProperties355.Append(gridSpan345);
            tableCellProperties355.Append(tableCellBorders355);
            tableCellProperties355.Append(shading547);

            Paragraph paragraph426 = new Paragraph();

            ParagraphProperties paragraphProperties426 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId426 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties426 = new ParagraphMarkRunProperties();
            FontSize fontSize505 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript505 = new FontSizeComplexScript() { Val = "26" };
            Languages languages5 = new Languages() { Val = "en-US" };

            paragraphMarkRunProperties426.Append(fontSize505);
            paragraphMarkRunProperties426.Append(fontSizeComplexScript505);
            paragraphMarkRunProperties426.Append(languages5);

            paragraphProperties426.Append(paragraphStyleId426);
            paragraphProperties426.Append(paragraphMarkRunProperties426);

            Run run444 = new Run();

            RunProperties runProperties444 = new RunProperties();
            FontSize fontSize506 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript506 = new FontSizeComplexScript() { Val = "26" };
            Languages languages6 = new Languages() { Val = "en-US" };

            runProperties444.Append(fontSize506);
            runProperties444.Append(fontSizeComplexScript506);
            runProperties444.Append(languages6);

            run444.Append(runProperties444);

            paragraph426.Append(paragraphProperties426);
            paragraph426.Append(run444);

            tableCell355.Append(tableCellProperties355);
            tableCell355.Append(paragraph426);

            tableRow126.Append(tableRowProperties126);
            tableRow126.Append(tableCell355);

            TableRow tableRow127 = new TableRow();
            TableRowProperties tableRowProperties127 = new TableRowProperties();

            TableCell tableCell356 = new TableCell();

            TableCellProperties tableCellProperties356 = new TableCellProperties();
            TableCellWidth tableCellWidth356 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan346 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders356 = new TableCellBorders();
            Shading shading548 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties356.Append(tableCellWidth356);
            tableCellProperties356.Append(gridSpan346);
            tableCellProperties356.Append(tableCellBorders356);
            tableCellProperties356.Append(shading548);

            Paragraph paragraph427 = new Paragraph();

            ParagraphProperties paragraphProperties427 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId427 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties427 = new ParagraphMarkRunProperties();

            paragraphProperties427.Append(paragraphStyleId427);
            paragraphProperties427.Append(paragraphMarkRunProperties427);

            Run run445 = new Run();

            RunProperties runProperties445 = new RunProperties();
            Bold bold39 = new Bold();
            FontSize fontSize507 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript507 = new FontSizeComplexScript() { Val = "26" };

            runProperties445.Append(bold39);
            runProperties445.Append(fontSize507);
            runProperties445.Append(fontSizeComplexScript507);
            Text text316 = new Text();
            text316.Text = "1.11. Сведения об опасных веществах и материалах, используемых на объекте:";

            run445.Append(runProperties445);
            run445.Append(text316);

            paragraph427.Append(paragraphProperties427);
            paragraph427.Append(run445);

            tableCell356.Append(tableCellProperties356);
            tableCell356.Append(paragraph427);

            tableRow127.Append(tableRowProperties127);
            tableRow127.Append(tableCell356);

            TableRow tableRow128 = new TableRow();
            TableRowProperties tableRowProperties128 = new TableRowProperties();

            TableCell tableCell357 = new TableCell();

            TableCellProperties tableCellProperties357 = new TableCellProperties();
            TableCellWidth tableCellWidth357 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan347 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders357 = new TableCellBorders();
            Shading shading549 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties357.Append(tableCellWidth357);
            tableCellProperties357.Append(gridSpan347);
            tableCellProperties357.Append(tableCellBorders357);
            tableCellProperties357.Append(shading549);

            Paragraph paragraph428 = new Paragraph();

            ParagraphProperties paragraphProperties428 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId428 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification280 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties428 = new ParagraphMarkRunProperties();

            paragraphProperties428.Append(paragraphStyleId428);
            paragraphProperties428.Append(justification280);
            paragraphProperties428.Append(paragraphMarkRunProperties428);

            Run run446 = new Run();

            RunProperties runProperties446 = new RunProperties();
            FontSize fontSize508 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript508 = new FontSizeComplexScript() { Val = "26" };

            runProperties446.Append(fontSize508);
            runProperties446.Append(fontSizeComplexScript508);
            Text text317 = new Text();
            text317.Text = "Пожаро- и взрывоопасные вещества и материалы";

            run446.Append(runProperties446);
            run446.Append(text317);

            paragraph428.Append(paragraphProperties428);
            paragraph428.Append(run446);

            tableCell357.Append(tableCellProperties357);
            tableCell357.Append(paragraph428);

            tableRow128.Append(tableRowProperties128);
            tableRow128.Append(tableCell357);

            TableRow tableRow129 = new TableRow();
            TableRowProperties tableRowProperties129 = new TableRowProperties();

            TableCell tableCell358 = new TableCell();

            TableCellProperties tableCellProperties358 = new TableCellProperties();
            TableCellWidth tableCellWidth358 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan348 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders358 = new TableCellBorders();
            TopBorder topBorder230 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder206 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder191 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder106 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder191 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder106 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders358.Append(topBorder230);
            tableCellBorders358.Append(startBorder206);
            tableCellBorders358.Append(bottomBorder191);
            tableCellBorders358.Append(endBorder106);
            tableCellBorders358.Append(insideHorizontalBorder191);
            tableCellBorders358.Append(insideVerticalBorder106);
            Shading shading550 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin215 = new TableCellMargin();
            StartMargin startMargin207 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin215.Append(startMargin207);
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties358.Append(tableCellWidth358);
            tableCellProperties358.Append(gridSpan348);
            tableCellProperties358.Append(tableCellBorders358);
            tableCellProperties358.Append(shading550);
            tableCellProperties358.Append(tableCellMargin215);
            tableCellProperties358.Append(tableCellVerticalAlignment41);

            Paragraph paragraph429 = new Paragraph();

            ParagraphProperties paragraphProperties429 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId429 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification281 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties429 = new ParagraphMarkRunProperties();

            paragraphProperties429.Append(paragraphStyleId429);
            paragraphProperties429.Append(justification281);
            paragraphProperties429.Append(paragraphMarkRunProperties429);

            Run run447 = new Run();

            RunProperties runProperties447 = new RunProperties();
            FontSize fontSize509 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript509 = new FontSizeComplexScript() { Val = "26" };

            runProperties447.Append(fontSize509);
            runProperties447.Append(fontSizeComplexScript509);
            Text text318 = new Text();
            text318.Text = "Тип";

            run447.Append(runProperties447);
            run447.Append(text318);

            paragraph429.Append(paragraphProperties429);
            paragraph429.Append(run447);

            tableCell358.Append(tableCellProperties358);
            tableCell358.Append(paragraph429);

            TableCell tableCell359 = new TableCell();

            TableCellProperties tableCellProperties359 = new TableCellProperties();
            TableCellWidth tableCellWidth359 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan349 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders359 = new TableCellBorders();
            TopBorder topBorder231 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder207 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder192 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder107 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder192 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder107 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders359.Append(topBorder231);
            tableCellBorders359.Append(startBorder207);
            tableCellBorders359.Append(bottomBorder192);
            tableCellBorders359.Append(endBorder107);
            tableCellBorders359.Append(insideHorizontalBorder192);
            tableCellBorders359.Append(insideVerticalBorder107);
            Shading shading551 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin216 = new TableCellMargin();
            StartMargin startMargin208 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin216.Append(startMargin208);
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties359.Append(tableCellWidth359);
            tableCellProperties359.Append(gridSpan349);
            tableCellProperties359.Append(tableCellBorders359);
            tableCellProperties359.Append(shading551);
            tableCellProperties359.Append(tableCellMargin216);
            tableCellProperties359.Append(tableCellVerticalAlignment42);

            Paragraph paragraph430 = new Paragraph();

            ParagraphProperties paragraphProperties430 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId430 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification282 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties430 = new ParagraphMarkRunProperties();

            paragraphProperties430.Append(paragraphStyleId430);
            paragraphProperties430.Append(justification282);
            paragraphProperties430.Append(paragraphMarkRunProperties430);

            Run run448 = new Run();

            RunProperties runProperties448 = new RunProperties();
            FontSize fontSize510 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript510 = new FontSizeComplexScript() { Val = "26" };

            runProperties448.Append(fontSize510);
            runProperties448.Append(fontSizeComplexScript510);
            Text text319 = new Text();
            text319.Text = "Кол-во, кг";

            run448.Append(runProperties448);
            run448.Append(text319);

            paragraph430.Append(paragraphProperties430);
            paragraph430.Append(run448);

            tableCell359.Append(tableCellProperties359);
            tableCell359.Append(paragraph430);

            TableCell tableCell360 = new TableCell();

            TableCellProperties tableCellProperties360 = new TableCellProperties();
            TableCellWidth tableCellWidth360 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan350 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders360 = new TableCellBorders();
            TopBorder topBorder232 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder208 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder193 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder193 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders360.Append(topBorder232);
            tableCellBorders360.Append(startBorder208);
            tableCellBorders360.Append(bottomBorder193);
            tableCellBorders360.Append(insideHorizontalBorder193);
            Shading shading552 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin217 = new TableCellMargin();
            StartMargin startMargin209 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin217.Append(startMargin209);
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties360.Append(tableCellWidth360);
            tableCellProperties360.Append(gridSpan350);
            tableCellProperties360.Append(tableCellBorders360);
            tableCellProperties360.Append(shading552);
            tableCellProperties360.Append(tableCellMargin217);
            tableCellProperties360.Append(tableCellVerticalAlignment43);

            Paragraph paragraph431 = new Paragraph();

            ParagraphProperties paragraphProperties431 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId431 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification283 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties431 = new ParagraphMarkRunProperties();

            paragraphProperties431.Append(paragraphStyleId431);
            paragraphProperties431.Append(justification283);
            paragraphProperties431.Append(paragraphMarkRunProperties431);

            Run run449 = new Run();

            RunProperties runProperties449 = new RunProperties();
            FontSize fontSize511 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript511 = new FontSizeComplexScript() { Val = "26" };

            runProperties449.Append(fontSize511);
            runProperties449.Append(fontSizeComplexScript511);
            Text text320 = new Text();
            text320.Text = "Наименование элемента объекта";

            run449.Append(runProperties449);
            run449.Append(text320);

            paragraph431.Append(paragraphProperties431);
            paragraph431.Append(run449);

            tableCell360.Append(tableCellProperties360);
            tableCell360.Append(paragraph431);

            TableCell tableCell361 = new TableCell();

            TableCellProperties tableCellProperties361 = new TableCellProperties();
            TableCellWidth tableCellWidth361 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan351 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders361 = new TableCellBorders();
            TopBorder topBorder233 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder209 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder194 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder108 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder194 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder108 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders361.Append(topBorder233);
            tableCellBorders361.Append(startBorder209);
            tableCellBorders361.Append(bottomBorder194);
            tableCellBorders361.Append(endBorder108);
            tableCellBorders361.Append(insideHorizontalBorder194);
            tableCellBorders361.Append(insideVerticalBorder108);
            Shading shading553 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin218 = new TableCellMargin();
            StartMargin startMargin210 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin218.Append(startMargin210);
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties361.Append(tableCellWidth361);
            tableCellProperties361.Append(gridSpan351);
            tableCellProperties361.Append(tableCellBorders361);
            tableCellProperties361.Append(shading553);
            tableCellProperties361.Append(tableCellMargin218);
            tableCellProperties361.Append(tableCellVerticalAlignment44);

            Paragraph paragraph432 = new Paragraph();

            ParagraphProperties paragraphProperties432 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId432 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification284 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties432 = new ParagraphMarkRunProperties();

            paragraphProperties432.Append(paragraphStyleId432);
            paragraphProperties432.Append(justification284);
            paragraphProperties432.Append(paragraphMarkRunProperties432);

            Run run450 = new Run();

            RunProperties runProperties450 = new RunProperties();
            FontSize fontSize512 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript512 = new FontSizeComplexScript() { Val = "26" };

            runProperties450.Append(fontSize512);
            runProperties450.Append(fontSizeComplexScript512);
            Text text321 = new Text();
            text321.Text = "Класс опасности";

            run450.Append(runProperties450);
            run450.Append(text321);

            paragraph432.Append(paragraphProperties432);
            paragraph432.Append(run450);

            tableCell361.Append(tableCellProperties361);
            tableCell361.Append(paragraph432);

            tableRow129.Append(tableRowProperties129);
            tableRow129.Append(tableCell358);
            tableRow129.Append(tableCell359);
            tableRow129.Append(tableCell360);
            tableRow129.Append(tableCell361);

            TableRow tableRow130 = new TableRow();
            TableRowProperties tableRowProperties130 = new TableRowProperties();

            TableCell tableCell362 = new TableCell();

            TableCellProperties tableCellProperties362 = new TableCellProperties();
            TableCellWidth tableCellWidth362 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan352 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders362 = new TableCellBorders();
            TopBorder topBorder234 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder210 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder195 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder109 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder195 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder109 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders362.Append(topBorder234);
            tableCellBorders362.Append(startBorder210);
            tableCellBorders362.Append(bottomBorder195);
            tableCellBorders362.Append(endBorder109);
            tableCellBorders362.Append(insideHorizontalBorder195);
            tableCellBorders362.Append(insideVerticalBorder109);
            Shading shading554 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin219 = new TableCellMargin();
            StartMargin startMargin211 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin219.Append(startMargin211);

            tableCellProperties362.Append(tableCellWidth362);
            tableCellProperties362.Append(gridSpan352);
            tableCellProperties362.Append(tableCellBorders362);
            tableCellProperties362.Append(shading554);
            tableCellProperties362.Append(tableCellMargin219);

            Paragraph paragraph433 = new Paragraph();

            ParagraphProperties paragraphProperties433 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId433 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification285 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties433 = new ParagraphMarkRunProperties();

            paragraphProperties433.Append(paragraphStyleId433);
            paragraphProperties433.Append(justification285);
            paragraphProperties433.Append(paragraphMarkRunProperties433);

            Run run451 = new Run();

            RunProperties runProperties451 = new RunProperties();
            FontSize fontSize513 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript513 = new FontSizeComplexScript() { Val = "26" };

            runProperties451.Append(fontSize513);
            runProperties451.Append(fontSizeComplexScript513);
            Text text322 = new Text();
            text322.Text = "1";

            run451.Append(runProperties451);
            run451.Append(text322);

            paragraph433.Append(paragraphProperties433);
            paragraph433.Append(run451);

            tableCell362.Append(tableCellProperties362);
            tableCell362.Append(paragraph433);

            TableCell tableCell363 = new TableCell();

            TableCellProperties tableCellProperties363 = new TableCellProperties();
            TableCellWidth tableCellWidth363 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan353 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders363 = new TableCellBorders();
            TopBorder topBorder235 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder211 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder196 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder196 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders363.Append(topBorder235);
            tableCellBorders363.Append(startBorder211);
            tableCellBorders363.Append(bottomBorder196);
            tableCellBorders363.Append(insideHorizontalBorder196);
            Shading shading555 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin220 = new TableCellMargin();
            StartMargin startMargin212 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin220.Append(startMargin212);

            tableCellProperties363.Append(tableCellWidth363);
            tableCellProperties363.Append(gridSpan353);
            tableCellProperties363.Append(tableCellBorders363);
            tableCellProperties363.Append(shading555);
            tableCellProperties363.Append(tableCellMargin220);

            Paragraph paragraph434 = new Paragraph();

            ParagraphProperties paragraphProperties434 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId434 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification286 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties434 = new ParagraphMarkRunProperties();

            paragraphProperties434.Append(paragraphStyleId434);
            paragraphProperties434.Append(justification286);
            paragraphProperties434.Append(paragraphMarkRunProperties434);

            Run run452 = new Run();

            RunProperties runProperties452 = new RunProperties();
            FontSize fontSize514 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript514 = new FontSizeComplexScript() { Val = "26" };

            runProperties452.Append(fontSize514);
            runProperties452.Append(fontSizeComplexScript514);
            Text text323 = new Text();
            text323.Text = "2";

            run452.Append(runProperties452);
            run452.Append(text323);

            paragraph434.Append(paragraphProperties434);
            paragraph434.Append(run452);

            tableCell363.Append(tableCellProperties363);
            tableCell363.Append(paragraph434);

            TableCell tableCell364 = new TableCell();

            TableCellProperties tableCellProperties364 = new TableCellProperties();
            TableCellWidth tableCellWidth364 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan354 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders364 = new TableCellBorders();
            TopBorder topBorder236 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder212 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder197 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder197 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders364.Append(topBorder236);
            tableCellBorders364.Append(startBorder212);
            tableCellBorders364.Append(bottomBorder197);
            tableCellBorders364.Append(insideHorizontalBorder197);
            Shading shading556 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin221 = new TableCellMargin();
            StartMargin startMargin213 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin221.Append(startMargin213);

            tableCellProperties364.Append(tableCellWidth364);
            tableCellProperties364.Append(gridSpan354);
            tableCellProperties364.Append(tableCellBorders364);
            tableCellProperties364.Append(shading556);
            tableCellProperties364.Append(tableCellMargin221);

            Paragraph paragraph435 = new Paragraph();

            ParagraphProperties paragraphProperties435 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId435 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification287 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties435 = new ParagraphMarkRunProperties();

            paragraphProperties435.Append(paragraphStyleId435);
            paragraphProperties435.Append(justification287);
            paragraphProperties435.Append(paragraphMarkRunProperties435);

            Run run453 = new Run();

            RunProperties runProperties453 = new RunProperties();
            FontSize fontSize515 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript515 = new FontSizeComplexScript() { Val = "26" };

            runProperties453.Append(fontSize515);
            runProperties453.Append(fontSizeComplexScript515);
            Text text324 = new Text();
            text324.Text = "3";

            run453.Append(runProperties453);
            run453.Append(text324);

            paragraph435.Append(paragraphProperties435);
            paragraph435.Append(run453);

            tableCell364.Append(tableCellProperties364);
            tableCell364.Append(paragraph435);

            TableCell tableCell365 = new TableCell();

            TableCellProperties tableCellProperties365 = new TableCellProperties();
            TableCellWidth tableCellWidth365 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan355 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders365 = new TableCellBorders();
            TopBorder topBorder237 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder213 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder198 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder110 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder198 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder110 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders365.Append(topBorder237);
            tableCellBorders365.Append(startBorder213);
            tableCellBorders365.Append(bottomBorder198);
            tableCellBorders365.Append(endBorder110);
            tableCellBorders365.Append(insideHorizontalBorder198);
            tableCellBorders365.Append(insideVerticalBorder110);
            Shading shading557 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin222 = new TableCellMargin();
            StartMargin startMargin214 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin222.Append(startMargin214);

            tableCellProperties365.Append(tableCellWidth365);
            tableCellProperties365.Append(gridSpan355);
            tableCellProperties365.Append(tableCellBorders365);
            tableCellProperties365.Append(shading557);
            tableCellProperties365.Append(tableCellMargin222);

            Paragraph paragraph436 = new Paragraph();

            ParagraphProperties paragraphProperties436 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId436 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification288 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties436 = new ParagraphMarkRunProperties();

            paragraphProperties436.Append(paragraphStyleId436);
            paragraphProperties436.Append(justification288);
            paragraphProperties436.Append(paragraphMarkRunProperties436);

            Run run454 = new Run();

            RunProperties runProperties454 = new RunProperties();
            FontSize fontSize516 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript516 = new FontSizeComplexScript() { Val = "26" };

            runProperties454.Append(fontSize516);
            runProperties454.Append(fontSizeComplexScript516);
            Text text325 = new Text();
            text325.Text = "4";

            run454.Append(runProperties454);
            run454.Append(text325);

            paragraph436.Append(paragraphProperties436);
            paragraph436.Append(run454);

            tableCell365.Append(tableCellProperties365);
            tableCell365.Append(paragraph436);

            tableRow130.Append(tableRowProperties130);
            tableRow130.Append(tableCell362);
            tableRow130.Append(tableCell363);
            tableRow130.Append(tableCell364);
            tableRow130.Append(tableCell365);

            TableRow tableRow131 = new TableRow();
            TableRowProperties tableRowProperties131 = new TableRowProperties();

            TableCell tableCell366 = new TableCell();

            TableCellProperties tableCellProperties366 = new TableCellProperties();
            TableCellWidth tableCellWidth366 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan356 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders366 = new TableCellBorders();
            TopBorder topBorder238 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder214 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder199 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder111 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder199 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder111 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders366.Append(topBorder238);
            tableCellBorders366.Append(startBorder214);
            tableCellBorders366.Append(bottomBorder199);
            tableCellBorders366.Append(endBorder111);
            tableCellBorders366.Append(insideHorizontalBorder199);
            tableCellBorders366.Append(insideVerticalBorder111);
            Shading shading558 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin223 = new TableCellMargin();
            StartMargin startMargin215 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin223.Append(startMargin215);

            tableCellProperties366.Append(tableCellWidth366);
            tableCellProperties366.Append(gridSpan356);
            tableCellProperties366.Append(tableCellBorders366);
            tableCellProperties366.Append(shading558);
            tableCellProperties366.Append(tableCellMargin223);

            Paragraph paragraph437 = new Paragraph();

            ParagraphProperties paragraphProperties437 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId437 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification289 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties437 = new ParagraphMarkRunProperties();

            paragraphProperties437.Append(paragraphStyleId437);
            paragraphProperties437.Append(justification289);
            paragraphProperties437.Append(paragraphMarkRunProperties437);

            Run run455 = new Run();

            RunProperties runProperties455 = new RunProperties();
            RunStyle runStyle41 = new RunStyle() { Val = "FontStyle48" };

            runProperties455.Append(runStyle41);
            Text text326 = new Text();
            text326.Text = "Природный газ метан (СН4)";

            run455.Append(runProperties455);
            run455.Append(text326);

            paragraph437.Append(paragraphProperties437);
            paragraph437.Append(run455);

            tableCell366.Append(tableCellProperties366);
            tableCell366.Append(paragraph437);

            TableCell tableCell367 = new TableCell();

            TableCellProperties tableCellProperties367 = new TableCellProperties();
            TableCellWidth tableCellWidth367 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan357 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders367 = new TableCellBorders();
            TopBorder topBorder239 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder215 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder200 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder200 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders367.Append(topBorder239);
            tableCellBorders367.Append(startBorder215);
            tableCellBorders367.Append(bottomBorder200);
            tableCellBorders367.Append(insideHorizontalBorder200);
            Shading shading559 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin224 = new TableCellMargin();
            StartMargin startMargin216 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin224.Append(startMargin216);

            tableCellProperties367.Append(tableCellWidth367);
            tableCellProperties367.Append(gridSpan357);
            tableCellProperties367.Append(tableCellBorders367);
            tableCellProperties367.Append(shading559);
            tableCellProperties367.Append(tableCellMargin224);

            Paragraph paragraph438 = new Paragraph();

            ParagraphProperties paragraphProperties438 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId438 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification290 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties438 = new ParagraphMarkRunProperties();

            paragraphProperties438.Append(paragraphStyleId438);
            paragraphProperties438.Append(justification290);
            paragraphProperties438.Append(paragraphMarkRunProperties438);

            Run run456 = new Run();

            RunProperties runProperties456 = new RunProperties();
            RunStyle runStyle42 = new RunStyle() { Val = "FontStyle48" };

            runProperties456.Append(runStyle42);
            Text text327 = new Text();
            text327.Text = "7080 м";

            run456.Append(runProperties456);
            run456.Append(text327);

            Run run457 = new Run();

            RunProperties runProperties457 = new RunProperties();
            RunStyle runStyle43 = new RunStyle() { Val = "FontStyle48" };
            VerticalTextAlignment verticalTextAlignment4 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties457.Append(runStyle43);
            runProperties457.Append(verticalTextAlignment4);
            Text text328 = new Text();
            text328.Text = "2";

            run457.Append(runProperties457);
            run457.Append(text328);

            Run run458 = new Run();

            RunProperties runProperties458 = new RunProperties();
            RunStyle runStyle44 = new RunStyle() { Val = "FontStyle48" };
            Languages languages7 = new Languages() { Val = "en-US" };

            runProperties458.Append(runStyle44);
            runProperties458.Append(languages7);
            Text text329 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text329.Text = " ";

            run458.Append(runProperties458);
            run458.Append(text329);

            Run run459 = new Run();

            RunProperties runProperties459 = new RunProperties();
            RunStyle runStyle45 = new RunStyle() { Val = "FontStyle48" };

            runProperties459.Append(runStyle45);
            Text text330 = new Text();
            text330.Text = "в сутки";

            run459.Append(runProperties459);
            run459.Append(text330);

            paragraph438.Append(paragraphProperties438);
            paragraph438.Append(run456);
            paragraph438.Append(run457);
            paragraph438.Append(run458);
            paragraph438.Append(run459);

            tableCell367.Append(tableCellProperties367);
            tableCell367.Append(paragraph438);

            TableCell tableCell368 = new TableCell();

            TableCellProperties tableCellProperties368 = new TableCellProperties();
            TableCellWidth tableCellWidth368 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan358 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders368 = new TableCellBorders();
            TopBorder topBorder240 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder216 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder201 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder201 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders368.Append(topBorder240);
            tableCellBorders368.Append(startBorder216);
            tableCellBorders368.Append(bottomBorder201);
            tableCellBorders368.Append(insideHorizontalBorder201);
            Shading shading560 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin225 = new TableCellMargin();
            StartMargin startMargin217 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin225.Append(startMargin217);

            tableCellProperties368.Append(tableCellWidth368);
            tableCellProperties368.Append(gridSpan358);
            tableCellProperties368.Append(tableCellBorders368);
            tableCellProperties368.Append(shading560);
            tableCellProperties368.Append(tableCellMargin225);

            Paragraph paragraph439 = new Paragraph();

            ParagraphProperties paragraphProperties439 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId439 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification291 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties439 = new ParagraphMarkRunProperties();

            paragraphProperties439.Append(paragraphStyleId439);
            paragraphProperties439.Append(justification291);
            paragraphProperties439.Append(paragraphMarkRunProperties439);

            Run run460 = new Run();

            RunProperties runProperties460 = new RunProperties();
            RunStyle runStyle46 = new RunStyle() { Val = "FontStyle48" };

            runProperties460.Append(runStyle46);
            Text text331 = new Text();
            text331.Text = "Здание РТС";

            run460.Append(runProperties460);
            run460.Append(text331);

            paragraph439.Append(paragraphProperties439);
            paragraph439.Append(run460);

            tableCell368.Append(tableCellProperties368);
            tableCell368.Append(paragraph439);

            TableCell tableCell369 = new TableCell();

            TableCellProperties tableCellProperties369 = new TableCellProperties();
            TableCellWidth tableCellWidth369 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan359 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders369 = new TableCellBorders();
            TopBorder topBorder241 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder217 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder202 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder112 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder202 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder112 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders369.Append(topBorder241);
            tableCellBorders369.Append(startBorder217);
            tableCellBorders369.Append(bottomBorder202);
            tableCellBorders369.Append(endBorder112);
            tableCellBorders369.Append(insideHorizontalBorder202);
            tableCellBorders369.Append(insideVerticalBorder112);
            Shading shading561 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin226 = new TableCellMargin();
            StartMargin startMargin218 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin226.Append(startMargin218);

            tableCellProperties369.Append(tableCellWidth369);
            tableCellProperties369.Append(gridSpan359);
            tableCellProperties369.Append(tableCellBorders369);
            tableCellProperties369.Append(shading561);
            tableCellProperties369.Append(tableCellMargin226);

            Paragraph paragraph440 = new Paragraph();

            ParagraphProperties paragraphProperties440 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId440 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification292 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties440 = new ParagraphMarkRunProperties();

            paragraphProperties440.Append(paragraphStyleId440);
            paragraphProperties440.Append(justification292);
            paragraphProperties440.Append(paragraphMarkRunProperties440);

            Run run461 = new Run();

            RunProperties runProperties461 = new RunProperties();
            RunStyle runStyle47 = new RunStyle() { Val = "FontStyle48" };

            runProperties461.Append(runStyle47);
            Text text332 = new Text();
            text332.Text = "IV класс";

            run461.Append(runProperties461);
            run461.Append(text332);

            paragraph440.Append(paragraphProperties440);
            paragraph440.Append(run461);

            tableCell369.Append(tableCellProperties369);
            tableCell369.Append(paragraph440);

            tableRow131.Append(tableRowProperties131);
            tableRow131.Append(tableCell366);
            tableRow131.Append(tableCell367);
            tableRow131.Append(tableCell368);
            tableRow131.Append(tableCell369);

            TableRow tableRow132 = new TableRow();
            TableRowProperties tableRowProperties132 = new TableRowProperties();

            TableCell tableCell370 = new TableCell();

            TableCellProperties tableCellProperties370 = new TableCellProperties();
            TableCellWidth tableCellWidth370 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan360 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders370 = new TableCellBorders();
            TopBorder topBorder242 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder218 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder203 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder113 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder203 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder113 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders370.Append(topBorder242);
            tableCellBorders370.Append(startBorder218);
            tableCellBorders370.Append(bottomBorder203);
            tableCellBorders370.Append(endBorder113);
            tableCellBorders370.Append(insideHorizontalBorder203);
            tableCellBorders370.Append(insideVerticalBorder113);
            Shading shading562 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin227 = new TableCellMargin();
            StartMargin startMargin219 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin227.Append(startMargin219);

            tableCellProperties370.Append(tableCellWidth370);
            tableCellProperties370.Append(gridSpan360);
            tableCellProperties370.Append(tableCellBorders370);
            tableCellProperties370.Append(shading562);
            tableCellProperties370.Append(tableCellMargin227);

            Paragraph paragraph441 = new Paragraph();

            ParagraphProperties paragraphProperties441 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId441 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification293 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties441 = new ParagraphMarkRunProperties();

            paragraphProperties441.Append(paragraphStyleId441);
            paragraphProperties441.Append(justification293);
            paragraphProperties441.Append(paragraphMarkRunProperties441);

            Run run462 = new Run();

            RunProperties runProperties462 = new RunProperties();
            RunStyle runStyle48 = new RunStyle() { Val = "FontStyle48" };

            runProperties462.Append(runStyle48);
            Text text333 = new Text();
            text333.Text = "Природный газ метан (СН4)";

            run462.Append(runProperties462);
            run462.Append(text333);

            paragraph441.Append(paragraphProperties441);
            paragraph441.Append(run462);

            tableCell370.Append(tableCellProperties370);
            tableCell370.Append(paragraph441);

            TableCell tableCell371 = new TableCell();

            TableCellProperties tableCellProperties371 = new TableCellProperties();
            TableCellWidth tableCellWidth371 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan361 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders371 = new TableCellBorders();
            TopBorder topBorder243 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder219 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder204 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder204 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders371.Append(topBorder243);
            tableCellBorders371.Append(startBorder219);
            tableCellBorders371.Append(bottomBorder204);
            tableCellBorders371.Append(insideHorizontalBorder204);
            Shading shading563 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin228 = new TableCellMargin();
            StartMargin startMargin220 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin228.Append(startMargin220);

            tableCellProperties371.Append(tableCellWidth371);
            tableCellProperties371.Append(gridSpan361);
            tableCellProperties371.Append(tableCellBorders371);
            tableCellProperties371.Append(shading563);
            tableCellProperties371.Append(tableCellMargin228);

            Paragraph paragraph442 = new Paragraph();

            ParagraphProperties paragraphProperties442 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId442 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification294 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties442 = new ParagraphMarkRunProperties();

            paragraphProperties442.Append(paragraphStyleId442);
            paragraphProperties442.Append(justification294);
            paragraphProperties442.Append(paragraphMarkRunProperties442);

            Run run463 = new Run();

            RunProperties runProperties463 = new RunProperties();
            RunStyle runStyle49 = new RunStyle() { Val = "FontStyle48" };

            runProperties463.Append(runStyle49);
            Text text334 = new Text();
            text334.Text = "7080 м";

            run463.Append(runProperties463);
            run463.Append(text334);

            Run run464 = new Run();

            RunProperties runProperties464 = new RunProperties();
            RunStyle runStyle50 = new RunStyle() { Val = "FontStyle48" };
            VerticalTextAlignment verticalTextAlignment5 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties464.Append(runStyle50);
            runProperties464.Append(verticalTextAlignment5);
            Text text335 = new Text();
            text335.Text = "2";

            run464.Append(runProperties464);
            run464.Append(text335);

            Run run465 = new Run();

            RunProperties runProperties465 = new RunProperties();
            RunStyle runStyle51 = new RunStyle() { Val = "FontStyle48" };

            runProperties465.Append(runStyle51);
            Text text336 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text336.Text = " в сутки";

            run465.Append(runProperties465);
            run465.Append(text336);

            paragraph442.Append(paragraphProperties442);
            paragraph442.Append(run463);
            paragraph442.Append(run464);
            paragraph442.Append(run465);

            tableCell371.Append(tableCellProperties371);
            tableCell371.Append(paragraph442);

            TableCell tableCell372 = new TableCell();

            TableCellProperties tableCellProperties372 = new TableCellProperties();
            TableCellWidth tableCellWidth372 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan362 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders372 = new TableCellBorders();
            TopBorder topBorder244 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder220 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder205 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder205 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders372.Append(topBorder244);
            tableCellBorders372.Append(startBorder220);
            tableCellBorders372.Append(bottomBorder205);
            tableCellBorders372.Append(insideHorizontalBorder205);
            Shading shading564 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin229 = new TableCellMargin();
            StartMargin startMargin221 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin229.Append(startMargin221);

            tableCellProperties372.Append(tableCellWidth372);
            tableCellProperties372.Append(gridSpan362);
            tableCellProperties372.Append(tableCellBorders372);
            tableCellProperties372.Append(shading564);
            tableCellProperties372.Append(tableCellMargin229);

            Paragraph paragraph443 = new Paragraph();

            ParagraphProperties paragraphProperties443 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId443 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification295 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties443 = new ParagraphMarkRunProperties();

            paragraphProperties443.Append(paragraphStyleId443);
            paragraphProperties443.Append(justification295);
            paragraphProperties443.Append(paragraphMarkRunProperties443);

            Run run466 = new Run();

            RunProperties runProperties466 = new RunProperties();
            RunStyle runStyle52 = new RunStyle() { Val = "FontStyle48" };

            runProperties466.Append(runStyle52);
            Text text337 = new Text();
            text337.Text = "Здание ГРП";

            run466.Append(runProperties466);
            run466.Append(text337);

            paragraph443.Append(paragraphProperties443);
            paragraph443.Append(run466);

            tableCell372.Append(tableCellProperties372);
            tableCell372.Append(paragraph443);

            TableCell tableCell373 = new TableCell();

            TableCellProperties tableCellProperties373 = new TableCellProperties();
            TableCellWidth tableCellWidth373 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan363 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders373 = new TableCellBorders();
            TopBorder topBorder245 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder221 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder206 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder114 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder206 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder114 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders373.Append(topBorder245);
            tableCellBorders373.Append(startBorder221);
            tableCellBorders373.Append(bottomBorder206);
            tableCellBorders373.Append(endBorder114);
            tableCellBorders373.Append(insideHorizontalBorder206);
            tableCellBorders373.Append(insideVerticalBorder114);
            Shading shading565 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin230 = new TableCellMargin();
            StartMargin startMargin222 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin230.Append(startMargin222);

            tableCellProperties373.Append(tableCellWidth373);
            tableCellProperties373.Append(gridSpan363);
            tableCellProperties373.Append(tableCellBorders373);
            tableCellProperties373.Append(shading565);
            tableCellProperties373.Append(tableCellMargin230);

            Paragraph paragraph444 = new Paragraph();

            ParagraphProperties paragraphProperties444 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId444 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification296 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties444 = new ParagraphMarkRunProperties();

            paragraphProperties444.Append(paragraphStyleId444);
            paragraphProperties444.Append(justification296);
            paragraphProperties444.Append(paragraphMarkRunProperties444);

            Run run467 = new Run();

            RunProperties runProperties467 = new RunProperties();
            RunStyle runStyle53 = new RunStyle() { Val = "FontStyle48" };

            runProperties467.Append(runStyle53);
            Text text338 = new Text();
            text338.Text = "IV класс";

            run467.Append(runProperties467);
            run467.Append(text338);

            paragraph444.Append(paragraphProperties444);
            paragraph444.Append(run467);

            tableCell373.Append(tableCellProperties373);
            tableCell373.Append(paragraph444);

            tableRow132.Append(tableRowProperties132);
            tableRow132.Append(tableCell370);
            tableRow132.Append(tableCell371);
            tableRow132.Append(tableCell372);
            tableRow132.Append(tableCell373);

            TableRow tableRow133 = new TableRow();
            TableRowProperties tableRowProperties133 = new TableRowProperties();

            TableCell tableCell374 = new TableCell();

            TableCellProperties tableCellProperties374 = new TableCellProperties();
            TableCellWidth tableCellWidth374 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan364 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders374 = new TableCellBorders();
            TopBorder topBorder246 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders374.Append(topBorder246);
            Shading shading566 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties374.Append(tableCellWidth374);
            tableCellProperties374.Append(gridSpan364);
            tableCellProperties374.Append(tableCellBorders374);
            tableCellProperties374.Append(shading566);

            Paragraph paragraph445 = new Paragraph();

            ParagraphProperties paragraphProperties445 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId445 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification297 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties445 = new ParagraphMarkRunProperties();
            FontSize fontSize517 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript517 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties445.Append(fontSize517);
            paragraphMarkRunProperties445.Append(fontSizeComplexScript517);

            paragraphProperties445.Append(paragraphStyleId445);
            paragraphProperties445.Append(justification297);
            paragraphProperties445.Append(paragraphMarkRunProperties445);

            Run run468 = new Run();

            RunProperties runProperties468 = new RunProperties();
            FontSize fontSize518 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript518 = new FontSizeComplexScript() { Val = "26" };

            runProperties468.Append(fontSize518);
            runProperties468.Append(fontSizeComplexScript518);

            run468.Append(runProperties468);

            paragraph445.Append(paragraphProperties445);
            paragraph445.Append(run468);

            tableCell374.Append(tableCellProperties374);
            tableCell374.Append(paragraph445);

            tableRow133.Append(tableRowProperties133);
            tableRow133.Append(tableCell374);

            TableRow tableRow134 = new TableRow();
            TableRowProperties tableRowProperties134 = new TableRowProperties();

            TableCell tableCell375 = new TableCell();

            TableCellProperties tableCellProperties375 = new TableCellProperties();
            TableCellWidth tableCellWidth375 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan365 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders375 = new TableCellBorders();
            TopBorder topBorder247 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder207 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder207 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders375.Append(topBorder247);
            tableCellBorders375.Append(bottomBorder207);
            tableCellBorders375.Append(insideHorizontalBorder207);
            Shading shading567 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties375.Append(tableCellWidth375);
            tableCellProperties375.Append(gridSpan365);
            tableCellProperties375.Append(tableCellBorders375);
            tableCellProperties375.Append(shading567);

            Paragraph paragraph446 = new Paragraph();

            ParagraphProperties paragraphProperties446 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId446 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification298 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties446 = new ParagraphMarkRunProperties();

            paragraphProperties446.Append(paragraphStyleId446);
            paragraphProperties446.Append(justification298);
            paragraphProperties446.Append(paragraphMarkRunProperties446);

            Run run469 = new Run();

            RunProperties runProperties469 = new RunProperties();
            FontSize fontSize519 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript519 = new FontSizeComplexScript() { Val = "26" };

            runProperties469.Append(fontSize519);
            runProperties469.Append(fontSizeComplexScript519);
            Text text339 = new Text();
            text339.Text = "Химически и биологически опасные вещества и материалы";

            run469.Append(runProperties469);
            run469.Append(text339);

            paragraph446.Append(paragraphProperties446);
            paragraph446.Append(run469);

            tableCell375.Append(tableCellProperties375);
            tableCell375.Append(paragraph446);

            tableRow134.Append(tableRowProperties134);
            tableRow134.Append(tableCell375);

            TableRow tableRow135 = new TableRow();
            TableRowProperties tableRowProperties135 = new TableRowProperties();

            TableCell tableCell376 = new TableCell();

            TableCellProperties tableCellProperties376 = new TableCellProperties();
            TableCellWidth tableCellWidth376 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan366 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders376 = new TableCellBorders();
            TopBorder topBorder248 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder222 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder208 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder115 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder208 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder115 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders376.Append(topBorder248);
            tableCellBorders376.Append(startBorder222);
            tableCellBorders376.Append(bottomBorder208);
            tableCellBorders376.Append(endBorder115);
            tableCellBorders376.Append(insideHorizontalBorder208);
            tableCellBorders376.Append(insideVerticalBorder115);
            Shading shading568 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin231 = new TableCellMargin();
            StartMargin startMargin223 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin231.Append(startMargin223);
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties376.Append(tableCellWidth376);
            tableCellProperties376.Append(gridSpan366);
            tableCellProperties376.Append(tableCellBorders376);
            tableCellProperties376.Append(shading568);
            tableCellProperties376.Append(tableCellMargin231);
            tableCellProperties376.Append(tableCellVerticalAlignment45);

            Paragraph paragraph447 = new Paragraph();

            ParagraphProperties paragraphProperties447 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId447 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification299 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties447 = new ParagraphMarkRunProperties();

            paragraphProperties447.Append(paragraphStyleId447);
            paragraphProperties447.Append(justification299);
            paragraphProperties447.Append(paragraphMarkRunProperties447);

            Run run470 = new Run();

            RunProperties runProperties470 = new RunProperties();
            FontSize fontSize520 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript520 = new FontSizeComplexScript() { Val = "26" };

            runProperties470.Append(fontSize520);
            runProperties470.Append(fontSizeComplexScript520);
            Text text340 = new Text();
            text340.Text = "Тип";

            run470.Append(runProperties470);
            run470.Append(text340);

            paragraph447.Append(paragraphProperties447);
            paragraph447.Append(run470);

            tableCell376.Append(tableCellProperties376);
            tableCell376.Append(paragraph447);

            TableCell tableCell377 = new TableCell();

            TableCellProperties tableCellProperties377 = new TableCellProperties();
            TableCellWidth tableCellWidth377 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan367 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders377 = new TableCellBorders();
            TopBorder topBorder249 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder223 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder209 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder209 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders377.Append(topBorder249);
            tableCellBorders377.Append(startBorder223);
            tableCellBorders377.Append(bottomBorder209);
            tableCellBorders377.Append(insideHorizontalBorder209);
            Shading shading569 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin232 = new TableCellMargin();
            StartMargin startMargin224 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin232.Append(startMargin224);
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties377.Append(tableCellWidth377);
            tableCellProperties377.Append(gridSpan367);
            tableCellProperties377.Append(tableCellBorders377);
            tableCellProperties377.Append(shading569);
            tableCellProperties377.Append(tableCellMargin232);
            tableCellProperties377.Append(tableCellVerticalAlignment46);

            Paragraph paragraph448 = new Paragraph();

            ParagraphProperties paragraphProperties448 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId448 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification300 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties448 = new ParagraphMarkRunProperties();

            paragraphProperties448.Append(paragraphStyleId448);
            paragraphProperties448.Append(justification300);
            paragraphProperties448.Append(paragraphMarkRunProperties448);

            Run run471 = new Run();

            RunProperties runProperties471 = new RunProperties();
            FontSize fontSize521 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript521 = new FontSizeComplexScript() { Val = "26" };

            runProperties471.Append(fontSize521);
            runProperties471.Append(fontSizeComplexScript521);
            Text text341 = new Text();
            text341.Text = "Кол-во, кг";

            run471.Append(runProperties471);
            run471.Append(text341);

            paragraph448.Append(paragraphProperties448);
            paragraph448.Append(run471);

            tableCell377.Append(tableCellProperties377);
            tableCell377.Append(paragraph448);

            TableCell tableCell378 = new TableCell();

            TableCellProperties tableCellProperties378 = new TableCellProperties();
            TableCellWidth tableCellWidth378 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan368 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders378 = new TableCellBorders();
            TopBorder topBorder250 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder224 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder210 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder210 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders378.Append(topBorder250);
            tableCellBorders378.Append(startBorder224);
            tableCellBorders378.Append(bottomBorder210);
            tableCellBorders378.Append(insideHorizontalBorder210);
            Shading shading570 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin233 = new TableCellMargin();
            StartMargin startMargin225 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin233.Append(startMargin225);
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties378.Append(tableCellWidth378);
            tableCellProperties378.Append(gridSpan368);
            tableCellProperties378.Append(tableCellBorders378);
            tableCellProperties378.Append(shading570);
            tableCellProperties378.Append(tableCellMargin233);
            tableCellProperties378.Append(tableCellVerticalAlignment47);

            Paragraph paragraph449 = new Paragraph();

            ParagraphProperties paragraphProperties449 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId449 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification301 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties449 = new ParagraphMarkRunProperties();

            paragraphProperties449.Append(paragraphStyleId449);
            paragraphProperties449.Append(justification301);
            paragraphProperties449.Append(paragraphMarkRunProperties449);

            Run run472 = new Run();

            RunProperties runProperties472 = new RunProperties();
            FontSize fontSize522 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript522 = new FontSizeComplexScript() { Val = "26" };

            runProperties472.Append(fontSize522);
            runProperties472.Append(fontSizeComplexScript522);
            Text text342 = new Text();
            text342.Text = "Наименование элемента объекта";

            run472.Append(runProperties472);
            run472.Append(text342);

            paragraph449.Append(paragraphProperties449);
            paragraph449.Append(run472);

            tableCell378.Append(tableCellProperties378);
            tableCell378.Append(paragraph449);

            TableCell tableCell379 = new TableCell();

            TableCellProperties tableCellProperties379 = new TableCellProperties();
            TableCellWidth tableCellWidth379 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan369 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders379 = new TableCellBorders();
            TopBorder topBorder251 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder225 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder211 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder116 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder211 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder116 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders379.Append(topBorder251);
            tableCellBorders379.Append(startBorder225);
            tableCellBorders379.Append(bottomBorder211);
            tableCellBorders379.Append(endBorder116);
            tableCellBorders379.Append(insideHorizontalBorder211);
            tableCellBorders379.Append(insideVerticalBorder116);
            Shading shading571 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin234 = new TableCellMargin();
            StartMargin startMargin226 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin234.Append(startMargin226);
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties379.Append(tableCellWidth379);
            tableCellProperties379.Append(gridSpan369);
            tableCellProperties379.Append(tableCellBorders379);
            tableCellProperties379.Append(shading571);
            tableCellProperties379.Append(tableCellMargin234);
            tableCellProperties379.Append(tableCellVerticalAlignment48);

            Paragraph paragraph450 = new Paragraph();

            ParagraphProperties paragraphProperties450 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId450 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification302 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties450 = new ParagraphMarkRunProperties();

            paragraphProperties450.Append(paragraphStyleId450);
            paragraphProperties450.Append(justification302);
            paragraphProperties450.Append(paragraphMarkRunProperties450);

            Run run473 = new Run();

            RunProperties runProperties473 = new RunProperties();
            FontSize fontSize523 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript523 = new FontSizeComplexScript() { Val = "26" };

            runProperties473.Append(fontSize523);
            runProperties473.Append(fontSizeComplexScript523);
            Text text343 = new Text();
            text343.Text = "Класс опасности";

            run473.Append(runProperties473);
            run473.Append(text343);

            paragraph450.Append(paragraphProperties450);
            paragraph450.Append(run473);

            tableCell379.Append(tableCellProperties379);
            tableCell379.Append(paragraph450);

            tableRow135.Append(tableRowProperties135);
            tableRow135.Append(tableCell376);
            tableRow135.Append(tableCell377);
            tableRow135.Append(tableCell378);
            tableRow135.Append(tableCell379);

            TableRow tableRow136 = new TableRow();
            TableRowProperties tableRowProperties136 = new TableRowProperties();

            TableCell tableCell380 = new TableCell();

            TableCellProperties tableCellProperties380 = new TableCellProperties();
            TableCellWidth tableCellWidth380 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan370 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders380 = new TableCellBorders();
            TopBorder topBorder252 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder226 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder212 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder117 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder212 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder117 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders380.Append(topBorder252);
            tableCellBorders380.Append(startBorder226);
            tableCellBorders380.Append(bottomBorder212);
            tableCellBorders380.Append(endBorder117);
            tableCellBorders380.Append(insideHorizontalBorder212);
            tableCellBorders380.Append(insideVerticalBorder117);
            Shading shading572 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin235 = new TableCellMargin();
            StartMargin startMargin227 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin235.Append(startMargin227);

            tableCellProperties380.Append(tableCellWidth380);
            tableCellProperties380.Append(gridSpan370);
            tableCellProperties380.Append(tableCellBorders380);
            tableCellProperties380.Append(shading572);
            tableCellProperties380.Append(tableCellMargin235);

            Paragraph paragraph451 = new Paragraph();

            ParagraphProperties paragraphProperties451 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId451 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification303 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties451 = new ParagraphMarkRunProperties();

            paragraphProperties451.Append(paragraphStyleId451);
            paragraphProperties451.Append(justification303);
            paragraphProperties451.Append(paragraphMarkRunProperties451);

            Run run474 = new Run();

            RunProperties runProperties474 = new RunProperties();
            FontSize fontSize524 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript524 = new FontSizeComplexScript() { Val = "26" };

            runProperties474.Append(fontSize524);
            runProperties474.Append(fontSizeComplexScript524);
            Text text344 = new Text();
            text344.Text = "1";

            run474.Append(runProperties474);
            run474.Append(text344);

            paragraph451.Append(paragraphProperties451);
            paragraph451.Append(run474);

            tableCell380.Append(tableCellProperties380);
            tableCell380.Append(paragraph451);

            TableCell tableCell381 = new TableCell();

            TableCellProperties tableCellProperties381 = new TableCellProperties();
            TableCellWidth tableCellWidth381 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan371 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders381 = new TableCellBorders();
            TopBorder topBorder253 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder227 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder213 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder213 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders381.Append(topBorder253);
            tableCellBorders381.Append(startBorder227);
            tableCellBorders381.Append(bottomBorder213);
            tableCellBorders381.Append(insideHorizontalBorder213);
            Shading shading573 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin236 = new TableCellMargin();
            StartMargin startMargin228 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin236.Append(startMargin228);

            tableCellProperties381.Append(tableCellWidth381);
            tableCellProperties381.Append(gridSpan371);
            tableCellProperties381.Append(tableCellBorders381);
            tableCellProperties381.Append(shading573);
            tableCellProperties381.Append(tableCellMargin236);

            Paragraph paragraph452 = new Paragraph();

            ParagraphProperties paragraphProperties452 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId452 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification304 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties452 = new ParagraphMarkRunProperties();

            paragraphProperties452.Append(paragraphStyleId452);
            paragraphProperties452.Append(justification304);
            paragraphProperties452.Append(paragraphMarkRunProperties452);

            Run run475 = new Run();

            RunProperties runProperties475 = new RunProperties();
            FontSize fontSize525 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript525 = new FontSizeComplexScript() { Val = "26" };

            runProperties475.Append(fontSize525);
            runProperties475.Append(fontSizeComplexScript525);
            Text text345 = new Text();
            text345.Text = "2";

            run475.Append(runProperties475);
            run475.Append(text345);

            paragraph452.Append(paragraphProperties452);
            paragraph452.Append(run475);

            tableCell381.Append(tableCellProperties381);
            tableCell381.Append(paragraph452);

            TableCell tableCell382 = new TableCell();

            TableCellProperties tableCellProperties382 = new TableCellProperties();
            TableCellWidth tableCellWidth382 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan372 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders382 = new TableCellBorders();
            TopBorder topBorder254 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder228 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder214 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder214 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders382.Append(topBorder254);
            tableCellBorders382.Append(startBorder228);
            tableCellBorders382.Append(bottomBorder214);
            tableCellBorders382.Append(insideHorizontalBorder214);
            Shading shading574 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin237 = new TableCellMargin();
            StartMargin startMargin229 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin237.Append(startMargin229);

            tableCellProperties382.Append(tableCellWidth382);
            tableCellProperties382.Append(gridSpan372);
            tableCellProperties382.Append(tableCellBorders382);
            tableCellProperties382.Append(shading574);
            tableCellProperties382.Append(tableCellMargin237);

            Paragraph paragraph453 = new Paragraph();

            ParagraphProperties paragraphProperties453 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId453 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification305 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties453 = new ParagraphMarkRunProperties();

            paragraphProperties453.Append(paragraphStyleId453);
            paragraphProperties453.Append(justification305);
            paragraphProperties453.Append(paragraphMarkRunProperties453);

            Run run476 = new Run();

            RunProperties runProperties476 = new RunProperties();
            FontSize fontSize526 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript526 = new FontSizeComplexScript() { Val = "26" };

            runProperties476.Append(fontSize526);
            runProperties476.Append(fontSizeComplexScript526);
            Text text346 = new Text();
            text346.Text = "3";

            run476.Append(runProperties476);
            run476.Append(text346);

            paragraph453.Append(paragraphProperties453);
            paragraph453.Append(run476);

            tableCell382.Append(tableCellProperties382);
            tableCell382.Append(paragraph453);

            TableCell tableCell383 = new TableCell();

            TableCellProperties tableCellProperties383 = new TableCellProperties();
            TableCellWidth tableCellWidth383 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan373 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders383 = new TableCellBorders();
            TopBorder topBorder255 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder229 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder215 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder118 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder215 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder118 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders383.Append(topBorder255);
            tableCellBorders383.Append(startBorder229);
            tableCellBorders383.Append(bottomBorder215);
            tableCellBorders383.Append(endBorder118);
            tableCellBorders383.Append(insideHorizontalBorder215);
            tableCellBorders383.Append(insideVerticalBorder118);
            Shading shading575 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin238 = new TableCellMargin();
            StartMargin startMargin230 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin238.Append(startMargin230);

            tableCellProperties383.Append(tableCellWidth383);
            tableCellProperties383.Append(gridSpan373);
            tableCellProperties383.Append(tableCellBorders383);
            tableCellProperties383.Append(shading575);
            tableCellProperties383.Append(tableCellMargin238);

            Paragraph paragraph454 = new Paragraph();

            ParagraphProperties paragraphProperties454 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId454 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification306 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties454 = new ParagraphMarkRunProperties();

            paragraphProperties454.Append(paragraphStyleId454);
            paragraphProperties454.Append(justification306);
            paragraphProperties454.Append(paragraphMarkRunProperties454);

            Run run477 = new Run();

            RunProperties runProperties477 = new RunProperties();
            FontSize fontSize527 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript527 = new FontSizeComplexScript() { Val = "26" };

            runProperties477.Append(fontSize527);
            runProperties477.Append(fontSizeComplexScript527);
            Text text347 = new Text();
            text347.Text = "4";

            run477.Append(runProperties477);
            run477.Append(text347);

            paragraph454.Append(paragraphProperties454);
            paragraph454.Append(run477);

            tableCell383.Append(tableCellProperties383);
            tableCell383.Append(paragraph454);

            tableRow136.Append(tableRowProperties136);
            tableRow136.Append(tableCell380);
            tableRow136.Append(tableCell381);
            tableRow136.Append(tableCell382);
            tableRow136.Append(tableCell383);

            TableRow tableRow137 = new TableRow();
            TableRowProperties tableRowProperties137 = new TableRowProperties();

            TableCell tableCell384 = new TableCell();

            TableCellProperties tableCellProperties384 = new TableCellProperties();
            TableCellWidth tableCellWidth384 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan374 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders384 = new TableCellBorders();
            TopBorder topBorder256 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder230 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder216 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder119 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder216 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder119 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders384.Append(topBorder256);
            tableCellBorders384.Append(startBorder230);
            tableCellBorders384.Append(bottomBorder216);
            tableCellBorders384.Append(endBorder119);
            tableCellBorders384.Append(insideHorizontalBorder216);
            tableCellBorders384.Append(insideVerticalBorder119);
            Shading shading576 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin239 = new TableCellMargin();
            StartMargin startMargin231 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin239.Append(startMargin231);

            tableCellProperties384.Append(tableCellWidth384);
            tableCellProperties384.Append(gridSpan374);
            tableCellProperties384.Append(tableCellBorders384);
            tableCellProperties384.Append(shading576);
            tableCellProperties384.Append(tableCellMargin239);

            Paragraph paragraph455 = new Paragraph();

            ParagraphProperties paragraphProperties455 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId455 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification307 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties455 = new ParagraphMarkRunProperties();

            paragraphProperties455.Append(paragraphStyleId455);
            paragraphProperties455.Append(justification307);
            paragraphProperties455.Append(paragraphMarkRunProperties455);

            Run run478 = new Run();

            RunProperties runProperties478 = new RunProperties();
            FontSize fontSize528 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript528 = new FontSizeComplexScript() { Val = "26" };

            runProperties478.Append(fontSize528);
            runProperties478.Append(fontSizeComplexScript528);
            Text text348 = new Text();
            text348.Text = "ОТСУТСТВУЮТ";

            run478.Append(runProperties478);
            run478.Append(text348);

            paragraph455.Append(paragraphProperties455);
            paragraph455.Append(run478);

            tableCell384.Append(tableCellProperties384);
            tableCell384.Append(paragraph455);

            tableRow137.Append(tableRowProperties137);
            tableRow137.Append(tableCell384);

            TableRow tableRow138 = new TableRow();
            TableRowProperties tableRowProperties138 = new TableRowProperties();

            TableCell tableCell385 = new TableCell();

            TableCellProperties tableCellProperties385 = new TableCellProperties();
            TableCellWidth tableCellWidth385 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan375 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders385 = new TableCellBorders();
            TopBorder topBorder257 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders385.Append(topBorder257);
            Shading shading577 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties385.Append(tableCellWidth385);
            tableCellProperties385.Append(gridSpan375);
            tableCellProperties385.Append(tableCellBorders385);
            tableCellProperties385.Append(shading577);

            Paragraph paragraph456 = new Paragraph();

            ParagraphProperties paragraphProperties456 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId456 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification308 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties456 = new ParagraphMarkRunProperties();
            FontSize fontSize529 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript529 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties456.Append(fontSize529);
            paragraphMarkRunProperties456.Append(fontSizeComplexScript529);

            paragraphProperties456.Append(paragraphStyleId456);
            paragraphProperties456.Append(justification308);
            paragraphProperties456.Append(paragraphMarkRunProperties456);

            Run run479 = new Run();

            RunProperties runProperties479 = new RunProperties();
            FontSize fontSize530 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript530 = new FontSizeComplexScript() { Val = "26" };

            runProperties479.Append(fontSize530);
            runProperties479.Append(fontSizeComplexScript530);

            run479.Append(runProperties479);

            paragraph456.Append(paragraphProperties456);
            paragraph456.Append(run479);

            tableCell385.Append(tableCellProperties385);
            tableCell385.Append(paragraph456);

            tableRow138.Append(tableRowProperties138);
            tableRow138.Append(tableCell385);

            TableRow tableRow139 = new TableRow();
            TableRowProperties tableRowProperties139 = new TableRowProperties();

            TableCell tableCell386 = new TableCell();

            TableCellProperties tableCellProperties386 = new TableCellProperties();
            TableCellWidth tableCellWidth386 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan376 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders386 = new TableCellBorders();
            TopBorder topBorder258 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder217 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder217 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders386.Append(topBorder258);
            tableCellBorders386.Append(bottomBorder217);
            tableCellBorders386.Append(insideHorizontalBorder217);
            Shading shading578 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties386.Append(tableCellWidth386);
            tableCellProperties386.Append(gridSpan376);
            tableCellProperties386.Append(tableCellBorders386);
            tableCellProperties386.Append(shading578);

            Paragraph paragraph457 = new Paragraph();

            ParagraphProperties paragraphProperties457 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId457 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification309 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties457 = new ParagraphMarkRunProperties();

            paragraphProperties457.Append(paragraphStyleId457);
            paragraphProperties457.Append(justification309);
            paragraphProperties457.Append(paragraphMarkRunProperties457);

            Run run480 = new Run();

            RunProperties runProperties480 = new RunProperties();
            FontSize fontSize531 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript531 = new FontSizeComplexScript() { Val = "26" };

            runProperties480.Append(fontSize531);
            runProperties480.Append(fontSizeComplexScript531);
            Text text349 = new Text();
            text349.Text = "Токсичные, наркотические, психотропные вещества, сильнодействующие яды и препараты";

            run480.Append(runProperties480);
            run480.Append(text349);

            paragraph457.Append(paragraphProperties457);
            paragraph457.Append(run480);

            tableCell386.Append(tableCellProperties386);
            tableCell386.Append(paragraph457);

            tableRow139.Append(tableRowProperties139);
            tableRow139.Append(tableCell386);

            TableRow tableRow140 = new TableRow();
            TableRowProperties tableRowProperties140 = new TableRowProperties();

            TableCell tableCell387 = new TableCell();

            TableCellProperties tableCellProperties387 = new TableCellProperties();
            TableCellWidth tableCellWidth387 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan377 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders387 = new TableCellBorders();
            TopBorder topBorder259 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder231 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder218 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder120 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder218 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder120 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders387.Append(topBorder259);
            tableCellBorders387.Append(startBorder231);
            tableCellBorders387.Append(bottomBorder218);
            tableCellBorders387.Append(endBorder120);
            tableCellBorders387.Append(insideHorizontalBorder218);
            tableCellBorders387.Append(insideVerticalBorder120);
            Shading shading579 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin240 = new TableCellMargin();
            StartMargin startMargin232 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin240.Append(startMargin232);
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties387.Append(tableCellWidth387);
            tableCellProperties387.Append(gridSpan377);
            tableCellProperties387.Append(tableCellBorders387);
            tableCellProperties387.Append(shading579);
            tableCellProperties387.Append(tableCellMargin240);
            tableCellProperties387.Append(tableCellVerticalAlignment49);

            Paragraph paragraph458 = new Paragraph();

            ParagraphProperties paragraphProperties458 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId458 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification310 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties458 = new ParagraphMarkRunProperties();

            paragraphProperties458.Append(paragraphStyleId458);
            paragraphProperties458.Append(justification310);
            paragraphProperties458.Append(paragraphMarkRunProperties458);

            Run run481 = new Run();

            RunProperties runProperties481 = new RunProperties();
            FontSize fontSize532 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript532 = new FontSizeComplexScript() { Val = "26" };

            runProperties481.Append(fontSize532);
            runProperties481.Append(fontSizeComplexScript532);
            Text text350 = new Text();
            text350.Text = "Тип";

            run481.Append(runProperties481);
            run481.Append(text350);

            paragraph458.Append(paragraphProperties458);
            paragraph458.Append(run481);

            tableCell387.Append(tableCellProperties387);
            tableCell387.Append(paragraph458);

            TableCell tableCell388 = new TableCell();

            TableCellProperties tableCellProperties388 = new TableCellProperties();
            TableCellWidth tableCellWidth388 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan378 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders388 = new TableCellBorders();
            TopBorder topBorder260 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder232 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder219 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder219 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders388.Append(topBorder260);
            tableCellBorders388.Append(startBorder232);
            tableCellBorders388.Append(bottomBorder219);
            tableCellBorders388.Append(insideHorizontalBorder219);
            Shading shading580 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin241 = new TableCellMargin();
            StartMargin startMargin233 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin241.Append(startMargin233);
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties388.Append(tableCellWidth388);
            tableCellProperties388.Append(gridSpan378);
            tableCellProperties388.Append(tableCellBorders388);
            tableCellProperties388.Append(shading580);
            tableCellProperties388.Append(tableCellMargin241);
            tableCellProperties388.Append(tableCellVerticalAlignment50);

            Paragraph paragraph459 = new Paragraph();

            ParagraphProperties paragraphProperties459 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId459 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification311 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties459 = new ParagraphMarkRunProperties();

            paragraphProperties459.Append(paragraphStyleId459);
            paragraphProperties459.Append(justification311);
            paragraphProperties459.Append(paragraphMarkRunProperties459);

            Run run482 = new Run();

            RunProperties runProperties482 = new RunProperties();
            FontSize fontSize533 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript533 = new FontSizeComplexScript() { Val = "26" };

            runProperties482.Append(fontSize533);
            runProperties482.Append(fontSizeComplexScript533);
            Text text351 = new Text();
            text351.Text = "Кол-во, кг";

            run482.Append(runProperties482);
            run482.Append(text351);

            paragraph459.Append(paragraphProperties459);
            paragraph459.Append(run482);

            tableCell388.Append(tableCellProperties388);
            tableCell388.Append(paragraph459);

            TableCell tableCell389 = new TableCell();

            TableCellProperties tableCellProperties389 = new TableCellProperties();
            TableCellWidth tableCellWidth389 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan379 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders389 = new TableCellBorders();
            TopBorder topBorder261 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder233 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder220 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder220 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders389.Append(topBorder261);
            tableCellBorders389.Append(startBorder233);
            tableCellBorders389.Append(bottomBorder220);
            tableCellBorders389.Append(insideHorizontalBorder220);
            Shading shading581 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin242 = new TableCellMargin();
            StartMargin startMargin234 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin242.Append(startMargin234);
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties389.Append(tableCellWidth389);
            tableCellProperties389.Append(gridSpan379);
            tableCellProperties389.Append(tableCellBorders389);
            tableCellProperties389.Append(shading581);
            tableCellProperties389.Append(tableCellMargin242);
            tableCellProperties389.Append(tableCellVerticalAlignment51);

            Paragraph paragraph460 = new Paragraph();

            ParagraphProperties paragraphProperties460 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId460 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification312 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties460 = new ParagraphMarkRunProperties();

            paragraphProperties460.Append(paragraphStyleId460);
            paragraphProperties460.Append(justification312);
            paragraphProperties460.Append(paragraphMarkRunProperties460);

            Run run483 = new Run();

            RunProperties runProperties483 = new RunProperties();
            FontSize fontSize534 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript534 = new FontSizeComplexScript() { Val = "26" };

            runProperties483.Append(fontSize534);
            runProperties483.Append(fontSizeComplexScript534);
            Text text352 = new Text();
            text352.Text = "Наименование элемента объекта";

            run483.Append(runProperties483);
            run483.Append(text352);

            paragraph460.Append(paragraphProperties460);
            paragraph460.Append(run483);

            tableCell389.Append(tableCellProperties389);
            tableCell389.Append(paragraph460);

            TableCell tableCell390 = new TableCell();

            TableCellProperties tableCellProperties390 = new TableCellProperties();
            TableCellWidth tableCellWidth390 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan380 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders390 = new TableCellBorders();
            TopBorder topBorder262 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder234 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder221 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder121 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder221 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder121 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders390.Append(topBorder262);
            tableCellBorders390.Append(startBorder234);
            tableCellBorders390.Append(bottomBorder221);
            tableCellBorders390.Append(endBorder121);
            tableCellBorders390.Append(insideHorizontalBorder221);
            tableCellBorders390.Append(insideVerticalBorder121);
            Shading shading582 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin243 = new TableCellMargin();
            StartMargin startMargin235 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin243.Append(startMargin235);
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties390.Append(tableCellWidth390);
            tableCellProperties390.Append(gridSpan380);
            tableCellProperties390.Append(tableCellBorders390);
            tableCellProperties390.Append(shading582);
            tableCellProperties390.Append(tableCellMargin243);
            tableCellProperties390.Append(tableCellVerticalAlignment52);

            Paragraph paragraph461 = new Paragraph();

            ParagraphProperties paragraphProperties461 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId461 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification313 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties461 = new ParagraphMarkRunProperties();

            paragraphProperties461.Append(paragraphStyleId461);
            paragraphProperties461.Append(justification313);
            paragraphProperties461.Append(paragraphMarkRunProperties461);

            Run run484 = new Run();

            RunProperties runProperties484 = new RunProperties();
            FontSize fontSize535 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript535 = new FontSizeComplexScript() { Val = "26" };

            runProperties484.Append(fontSize535);
            runProperties484.Append(fontSizeComplexScript535);
            Text text353 = new Text();
            text353.Text = "Класс опасности";

            run484.Append(runProperties484);
            run484.Append(text353);

            paragraph461.Append(paragraphProperties461);
            paragraph461.Append(run484);

            tableCell390.Append(tableCellProperties390);
            tableCell390.Append(paragraph461);

            tableRow140.Append(tableRowProperties140);
            tableRow140.Append(tableCell387);
            tableRow140.Append(tableCell388);
            tableRow140.Append(tableCell389);
            tableRow140.Append(tableCell390);

            TableRow tableRow141 = new TableRow();
            TableRowProperties tableRowProperties141 = new TableRowProperties();

            TableCell tableCell391 = new TableCell();

            TableCellProperties tableCellProperties391 = new TableCellProperties();
            TableCellWidth tableCellWidth391 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan381 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders391 = new TableCellBorders();
            TopBorder topBorder263 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder235 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder222 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder122 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder222 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder122 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders391.Append(topBorder263);
            tableCellBorders391.Append(startBorder235);
            tableCellBorders391.Append(bottomBorder222);
            tableCellBorders391.Append(endBorder122);
            tableCellBorders391.Append(insideHorizontalBorder222);
            tableCellBorders391.Append(insideVerticalBorder122);
            Shading shading583 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin244 = new TableCellMargin();
            StartMargin startMargin236 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin244.Append(startMargin236);

            tableCellProperties391.Append(tableCellWidth391);
            tableCellProperties391.Append(gridSpan381);
            tableCellProperties391.Append(tableCellBorders391);
            tableCellProperties391.Append(shading583);
            tableCellProperties391.Append(tableCellMargin244);

            Paragraph paragraph462 = new Paragraph();

            ParagraphProperties paragraphProperties462 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId462 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification314 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties462 = new ParagraphMarkRunProperties();

            paragraphProperties462.Append(paragraphStyleId462);
            paragraphProperties462.Append(justification314);
            paragraphProperties462.Append(paragraphMarkRunProperties462);

            Run run485 = new Run();

            RunProperties runProperties485 = new RunProperties();
            FontSize fontSize536 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript536 = new FontSizeComplexScript() { Val = "26" };

            runProperties485.Append(fontSize536);
            runProperties485.Append(fontSizeComplexScript536);
            Text text354 = new Text();
            text354.Text = "1";

            run485.Append(runProperties485);
            run485.Append(text354);

            paragraph462.Append(paragraphProperties462);
            paragraph462.Append(run485);

            tableCell391.Append(tableCellProperties391);
            tableCell391.Append(paragraph462);

            TableCell tableCell392 = new TableCell();

            TableCellProperties tableCellProperties392 = new TableCellProperties();
            TableCellWidth tableCellWidth392 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan382 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders392 = new TableCellBorders();
            TopBorder topBorder264 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder236 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder223 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder223 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders392.Append(topBorder264);
            tableCellBorders392.Append(startBorder236);
            tableCellBorders392.Append(bottomBorder223);
            tableCellBorders392.Append(insideHorizontalBorder223);
            Shading shading584 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin245 = new TableCellMargin();
            StartMargin startMargin237 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin245.Append(startMargin237);

            tableCellProperties392.Append(tableCellWidth392);
            tableCellProperties392.Append(gridSpan382);
            tableCellProperties392.Append(tableCellBorders392);
            tableCellProperties392.Append(shading584);
            tableCellProperties392.Append(tableCellMargin245);

            Paragraph paragraph463 = new Paragraph();

            ParagraphProperties paragraphProperties463 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId463 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification315 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties463 = new ParagraphMarkRunProperties();

            paragraphProperties463.Append(paragraphStyleId463);
            paragraphProperties463.Append(justification315);
            paragraphProperties463.Append(paragraphMarkRunProperties463);

            Run run486 = new Run();

            RunProperties runProperties486 = new RunProperties();
            FontSize fontSize537 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript537 = new FontSizeComplexScript() { Val = "26" };

            runProperties486.Append(fontSize537);
            runProperties486.Append(fontSizeComplexScript537);
            Text text355 = new Text();
            text355.Text = "2";

            run486.Append(runProperties486);
            run486.Append(text355);

            paragraph463.Append(paragraphProperties463);
            paragraph463.Append(run486);

            tableCell392.Append(tableCellProperties392);
            tableCell392.Append(paragraph463);

            TableCell tableCell393 = new TableCell();

            TableCellProperties tableCellProperties393 = new TableCellProperties();
            TableCellWidth tableCellWidth393 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan383 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders393 = new TableCellBorders();
            TopBorder topBorder265 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder237 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder224 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder224 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders393.Append(topBorder265);
            tableCellBorders393.Append(startBorder237);
            tableCellBorders393.Append(bottomBorder224);
            tableCellBorders393.Append(insideHorizontalBorder224);
            Shading shading585 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin246 = new TableCellMargin();
            StartMargin startMargin238 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin246.Append(startMargin238);

            tableCellProperties393.Append(tableCellWidth393);
            tableCellProperties393.Append(gridSpan383);
            tableCellProperties393.Append(tableCellBorders393);
            tableCellProperties393.Append(shading585);
            tableCellProperties393.Append(tableCellMargin246);

            Paragraph paragraph464 = new Paragraph();

            ParagraphProperties paragraphProperties464 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId464 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification316 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties464 = new ParagraphMarkRunProperties();

            paragraphProperties464.Append(paragraphStyleId464);
            paragraphProperties464.Append(justification316);
            paragraphProperties464.Append(paragraphMarkRunProperties464);

            Run run487 = new Run();

            RunProperties runProperties487 = new RunProperties();
            FontSize fontSize538 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript538 = new FontSizeComplexScript() { Val = "26" };

            runProperties487.Append(fontSize538);
            runProperties487.Append(fontSizeComplexScript538);
            Text text356 = new Text();
            text356.Text = "3";

            run487.Append(runProperties487);
            run487.Append(text356);

            paragraph464.Append(paragraphProperties464);
            paragraph464.Append(run487);

            tableCell393.Append(tableCellProperties393);
            tableCell393.Append(paragraph464);

            TableCell tableCell394 = new TableCell();

            TableCellProperties tableCellProperties394 = new TableCellProperties();
            TableCellWidth tableCellWidth394 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan384 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders394 = new TableCellBorders();
            TopBorder topBorder266 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder238 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder225 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder123 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder225 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder123 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders394.Append(topBorder266);
            tableCellBorders394.Append(startBorder238);
            tableCellBorders394.Append(bottomBorder225);
            tableCellBorders394.Append(endBorder123);
            tableCellBorders394.Append(insideHorizontalBorder225);
            tableCellBorders394.Append(insideVerticalBorder123);
            Shading shading586 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin247 = new TableCellMargin();
            StartMargin startMargin239 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin247.Append(startMargin239);

            tableCellProperties394.Append(tableCellWidth394);
            tableCellProperties394.Append(gridSpan384);
            tableCellProperties394.Append(tableCellBorders394);
            tableCellProperties394.Append(shading586);
            tableCellProperties394.Append(tableCellMargin247);

            Paragraph paragraph465 = new Paragraph();

            ParagraphProperties paragraphProperties465 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId465 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification317 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties465 = new ParagraphMarkRunProperties();

            paragraphProperties465.Append(paragraphStyleId465);
            paragraphProperties465.Append(justification317);
            paragraphProperties465.Append(paragraphMarkRunProperties465);

            Run run488 = new Run();

            RunProperties runProperties488 = new RunProperties();
            FontSize fontSize539 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript539 = new FontSizeComplexScript() { Val = "26" };

            runProperties488.Append(fontSize539);
            runProperties488.Append(fontSizeComplexScript539);
            Text text357 = new Text();
            text357.Text = "4";

            run488.Append(runProperties488);
            run488.Append(text357);

            paragraph465.Append(paragraphProperties465);
            paragraph465.Append(run488);

            tableCell394.Append(tableCellProperties394);
            tableCell394.Append(paragraph465);

            tableRow141.Append(tableRowProperties141);
            tableRow141.Append(tableCell391);
            tableRow141.Append(tableCell392);
            tableRow141.Append(tableCell393);
            tableRow141.Append(tableCell394);

            TableRow tableRow142 = new TableRow();
            TableRowProperties tableRowProperties142 = new TableRowProperties();

            TableCell tableCell395 = new TableCell();

            TableCellProperties tableCellProperties395 = new TableCellProperties();
            TableCellWidth tableCellWidth395 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan385 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders395 = new TableCellBorders();
            TopBorder topBorder267 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder239 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder226 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder124 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder226 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder124 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders395.Append(topBorder267);
            tableCellBorders395.Append(startBorder239);
            tableCellBorders395.Append(bottomBorder226);
            tableCellBorders395.Append(endBorder124);
            tableCellBorders395.Append(insideHorizontalBorder226);
            tableCellBorders395.Append(insideVerticalBorder124);
            Shading shading587 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin248 = new TableCellMargin();
            StartMargin startMargin240 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin248.Append(startMargin240);

            tableCellProperties395.Append(tableCellWidth395);
            tableCellProperties395.Append(gridSpan385);
            tableCellProperties395.Append(tableCellBorders395);
            tableCellProperties395.Append(shading587);
            tableCellProperties395.Append(tableCellMargin248);

            Paragraph paragraph466 = new Paragraph();

            ParagraphProperties paragraphProperties466 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId466 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification318 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties466 = new ParagraphMarkRunProperties();

            paragraphProperties466.Append(paragraphStyleId466);
            paragraphProperties466.Append(justification318);
            paragraphProperties466.Append(paragraphMarkRunProperties466);

            Run run489 = new Run();

            RunProperties runProperties489 = new RunProperties();
            FontSize fontSize540 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript540 = new FontSizeComplexScript() { Val = "26" };

            runProperties489.Append(fontSize540);
            runProperties489.Append(fontSizeComplexScript540);
            Text text358 = new Text();
            text358.Text = "ОТСУТСТВУЮТ";

            run489.Append(runProperties489);
            run489.Append(text358);

            paragraph466.Append(paragraphProperties466);
            paragraph466.Append(run489);

            tableCell395.Append(tableCellProperties395);
            tableCell395.Append(paragraph466);

            tableRow142.Append(tableRowProperties142);
            tableRow142.Append(tableCell395);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            table1.Append(tableRow6);
            table1.Append(tableRow7);
            table1.Append(tableRow8);
            table1.Append(tableRow9);
            table1.Append(tableRow10);
            table1.Append(tableRow11);
            table1.Append(tableRow12);
            table1.Append(tableRow13);
            table1.Append(tableRow14);
            table1.Append(tableRow15);
            table1.Append(tableRow16);
            table1.Append(tableRow17);
            table1.Append(tableRow18);
            table1.Append(tableRow19);
            table1.Append(tableRow20);
            table1.Append(tableRow21);
            table1.Append(tableRow22);
            table1.Append(tableRow23);
            table1.Append(tableRow24);
            table1.Append(tableRow25);
            table1.Append(tableRow26);
            table1.Append(tableRow27);
            table1.Append(tableRow28);
            table1.Append(tableRow29);
            table1.Append(tableRow30);
            table1.Append(tableRow31);
            table1.Append(tableRow32);
            table1.Append(tableRow33);
            table1.Append(tableRow34);
            table1.Append(tableRow35);
            table1.Append(tableRow36);
            table1.Append(tableRow37);
            table1.Append(tableRow38);
            table1.Append(tableRow39);
            table1.Append(tableRow40);
            table1.Append(tableRow41);
            table1.Append(tableRow42);
            table1.Append(tableRow43);
            table1.Append(tableRow44);
            table1.Append(tableRow45);
            table1.Append(tableRow46);
            table1.Append(tableRow47);
            table1.Append(tableRow48);
            table1.Append(tableRow49);
            table1.Append(tableRow50);
            table1.Append(tableRow51);
            table1.Append(tableRow52);
            table1.Append(tableRow53);
            table1.Append(tableRow54);
            table1.Append(tableRow55);
            table1.Append(tableRow56);
            table1.Append(tableRow57);
            table1.Append(tableRow58);
            table1.Append(tableRow59);
            table1.Append(tableRow60);
            table1.Append(tableRow61);
            table1.Append(tableRow62);
            table1.Append(tableRow63);
            table1.Append(tableRow64);
            table1.Append(tableRow65);
            table1.Append(tableRow66);
            table1.Append(tableRow67);
            table1.Append(tableRow68);
            table1.Append(tableRow69);
            table1.Append(tableRow70);
            table1.Append(tableRow71);
            table1.Append(tableRow72);
            table1.Append(tableRow73);
            table1.Append(tableRow74);
            table1.Append(tableRow75);
            table1.Append(tableRow76);
            table1.Append(tableRow77);
            table1.Append(tableRow78);
            table1.Append(tableRow79);
            table1.Append(tableRow80);
            table1.Append(tableRow81);
            table1.Append(tableRow82);
            table1.Append(tableRow83);
            table1.Append(tableRow84);
            table1.Append(tableRow85);
            table1.Append(tableRow86);
            table1.Append(tableRow87);
            table1.Append(tableRow88);
            table1.Append(tableRow89);
            table1.Append(tableRow90);
            table1.Append(tableRow91);
            table1.Append(tableRow92);
            table1.Append(tableRow93);
            table1.Append(tableRow94);
            table1.Append(tableRow95);
            table1.Append(tableRow96);
            table1.Append(tableRow97);
            table1.Append(tableRow98);
            table1.Append(tableRow99);
            table1.Append(tableRow100);
            table1.Append(tableRow101);
            table1.Append(tableRow102);
            table1.Append(tableRow103);
            table1.Append(tableRow104);
            table1.Append(tableRow105);
            table1.Append(tableRow106);
            table1.Append(tableRow107);
            table1.Append(tableRow108);
            table1.Append(tableRow109);
            table1.Append(tableRow110);
            table1.Append(tableRow111);
            table1.Append(tableRow112);
            table1.Append(tableRow113);
            table1.Append(tableRow114);
            table1.Append(tableRow115);
            table1.Append(tableRow116);
            table1.Append(tableRow117);
            table1.Append(tableRow118);
            table1.Append(tableRow119);
            table1.Append(tableRow120);
            table1.Append(tableRow121);
            table1.Append(tableRow122);
            table1.Append(tableRow123);
            table1.Append(tableRow124);
            table1.Append(tableRow125);
            table1.Append(tableRow126);
            table1.Append(tableRow127);
            table1.Append(tableRow128);
            table1.Append(tableRow129);
            table1.Append(tableRow130);
            table1.Append(tableRow131);
            table1.Append(tableRow132);
            table1.Append(tableRow133);
            table1.Append(tableRow134);
            table1.Append(tableRow135);
            table1.Append(tableRow136);
            table1.Append(tableRow137);
            table1.Append(tableRow138);
            table1.Append(tableRow139);
            table1.Append(tableRow140);
            table1.Append(tableRow141);
            table1.Append(tableRow142);

            Paragraph paragraph467 = new Paragraph();

            ParagraphProperties paragraphProperties467 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId467 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties467 = new ParagraphMarkRunProperties();

            paragraphProperties467.Append(paragraphStyleId467);
            paragraphProperties467.Append(paragraphMarkRunProperties467);

            Run run490 = new Run();
            RunProperties runProperties490 = new RunProperties();

            run490.Append(runProperties490);

            paragraph467.Append(paragraphProperties467);
            paragraph467.Append(run490);

            SectionProperties sectionProperties1 = new SectionProperties();
            SectionType sectionType1 = new SectionType() { Val = SectionMarkValues.NextPage };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1134, Right = (UInt32Value)1134U, Bottom = 1134, Left = (UInt32Value)1134U, Header = (UInt32Value)0U, Footer = (UInt32Value)0U, Gutter = (UInt32Value)0U };
            PageNumberType pageNumberType1 = new PageNumberType() { Format = NumberFormatValues.Decimal };
            FormProtection formProtection1 = new FormProtection() { Val = false };
            TextDirection textDirection1 = new TextDirection() { Val = TextDirectionValues.LefToRightTopToBottom };
            DocGrid docGrid1 = new DocGrid() { Type = DocGridValues.Default, LinePitch = 240, CharacterSpace = new Int32Value() { InnerText = "4294961151" } };

            sectionProperties1.Append(sectionType1);
            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(pageNumberType1);
            sectionProperties1.Append(formProtection1);
            sectionProperties1.Append(textDirection1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(table1);
            body1.Append(paragraph467);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
Beispiel #11
0
        private static Table CreateTable(List <string> headers, List <List <string> > items)
        {
            //// Create a new table
            Table tbl = new Table();

            //// Create the table properties
            TableProperties    tblProperties = new TableProperties();
            TableJustification just          = new TableJustification();

            just.Val = TableRowAlignmentValues.Center;
            //// Create Table Borders
            TableBorders tblBorders = new TableBorders();
            TopBorder    topBorder  = new TopBorder();

            topBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            topBorder.Color = "000000";
            tblBorders.AppendChild(topBorder);
            BottomBorder bottomBorder = new BottomBorder();

            bottomBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            bottomBorder.Color = "000000";
            tblBorders.AppendChild(bottomBorder);
            RightBorder rightBorder = new RightBorder();

            rightBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            rightBorder.Color = "000000";
            tblBorders.AppendChild(rightBorder);
            LeftBorder leftBorder = new LeftBorder();

            leftBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            leftBorder.Color = "000000";
            tblBorders.AppendChild(leftBorder);
            InsideHorizontalBorder insideHBorder = new InsideHorizontalBorder();

            insideHBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideHBorder.Color = "000000";
            tblBorders.AppendChild(insideHBorder);
            InsideVerticalBorder insideVBorder = new InsideVerticalBorder();

            insideVBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideVBorder.Color = "000000";
            tblBorders.AppendChild(insideVBorder);
            //// Add the table borders to the properties
            tblProperties.AppendChild(tblBorders);
            tblProperties.AppendChild(just);
            //// Add the table properties to the table
            tbl.AppendChild(tblProperties);
            //// Add a cell to each column in the row
            ///
            List <TableCell> headerCells = new List <TableCell>();

            foreach (string itemHeaders in headers)
            {
                TableCell tcName1 = new TableCell(new Paragraph(new Run(new Text(itemHeaders))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "3000"
                }));
                headerCells.Add(tcName1);
            }
            //// Create a new row
            TableRow tr = new TableRow();

            tr.Append(headerCells.ToArray());
            tbl.AppendChild(tr);

            foreach (List <string> rowItems in items)
            {
                List <TableCell> dataCells = new List <TableCell>();
                foreach (string data in rowItems)
                {
                    TableCell tcName1 = new TableCell(new Paragraph(new Run(new Text(data))));
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = "3000"
                    }));
                    dataCells.Add(tcName1);
                }
                TableRow tr1 = new TableRow();
                tr1.Append(dataCells.ToArray());
                tbl.AppendChild(tr1);
            }

            return(tbl);
        }
Beispiel #12
0
        private static Table CreateTable2(AuditDetailInfo item)
        {
            int    index     = 1;
            bool   IsVAT     = false;
            double VATNumber = 0;

            foreach (QuoteAuditInfo Quoteinfo in item.Quotes)
            {
                IsVAT     = Quoteinfo.IsVAT;
                VATNumber = Quoteinfo.VATNumber;
            }
            //prepare ITEMs
            List <string>         headers = new List <string>();
            List <List <string> > items   = new List <List <string> >();

            headers.Add("STT");
            headers.Add("Mặt hàng & dịch vụ");
            headers.Add("ĐVT");
            headers.Add("SL");
            headers.Add("Đơn giá");
            headers.Add("Thuế VAT " + VATNumber + "%");
            headers.Add("Đơn giá (Đã bao gồm thuế " + VATNumber + "% VAT )(VNĐ)");
            headers.Add("Thành tiền (VNĐ)");

            int[] widths = { 1000, 2700, 1300, 1300, 1300, 1300, 1300, 1300 };

            foreach (QuoteAuditInfo Quoteinfo in item.Quotes)
            {
                foreach (ItemInfo record in Quoteinfo.Items)
                {
                    double        VATcost = (record.ItemPrice * VATNumber) / 100;
                    List <string> row     = new List <string>();
                    row.Add(index.ToString());
                    row.Add(record.ItemName);
                    row.Add(record.ItemUnit);
                    row.Add(record.Amount.ToString());
                    row.Add(string.Format("{0:0,0}", record.ItemPrice).Replace(",", "."));
                    row.Add(string.Format("{0:0,0}", VATcost).Replace(",", "."));
                    row.Add(string.Format("{0:0,0}", (record.ItemPrice + VATcost)).Replace(",", "."));
                    row.Add(string.Format("{0:0,0}", ((record.ItemPrice + VATcost) * record.Amount)).Replace(",", "."));
                    items.Add(row);
                    index++;
                }
            }


            //// Create a new table
            Table tbl = new Table();

            //// Create the table properties
            TableProperties    tblProperties = new TableProperties();
            TableJustification just          = new TableJustification();

            just.Val = TableRowAlignmentValues.Center;
            //// Create Table Borders
            TableBorders tblBorders = new TableBorders();
            TopBorder    topBorder  = new TopBorder();

            topBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            topBorder.Color = "000000";
            tblBorders.AppendChild(topBorder);
            BottomBorder bottomBorder = new BottomBorder();

            bottomBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            bottomBorder.Color = "000000";
            tblBorders.AppendChild(bottomBorder);
            RightBorder rightBorder = new RightBorder();

            rightBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            rightBorder.Color = "000000";
            tblBorders.AppendChild(rightBorder);
            LeftBorder leftBorder = new LeftBorder();

            leftBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            leftBorder.Color = "000000";
            tblBorders.AppendChild(leftBorder);
            InsideHorizontalBorder insideHBorder = new InsideHorizontalBorder();

            insideHBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideHBorder.Color = "000000";
            tblBorders.AppendChild(insideHBorder);
            InsideVerticalBorder insideVBorder = new InsideVerticalBorder();

            insideVBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideVBorder.Color = "000000";
            tblBorders.AppendChild(insideVBorder);
            //// Add the table borders to the properties
            tblProperties.AppendChild(tblBorders);
            tblProperties.AppendChild(just);
            //// Add the table properties to the table
            tbl.AppendChild(tblProperties);
            //// Add a cell to each column in the row
            ///
            List <TableCell> headerCells = new List <TableCell>();
            TableCell        tcName1;

            foreach (string itemHeaders in headers)
            {
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(Bold(), new Text(itemHeaders))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "3000"
                }));
                headerCells.Add(tcName1);
            }
            //// Create a new row
            TableRow tr = new TableRow();

            tr.Append(headerCells.ToArray());
            tbl.AppendChild(tr);
            List <TableCell> dataCells = new List <TableCell>();

            foreach (List <string> rowItems in items)
            {
                dataCells = new List <TableCell>();
                foreach (string data in rowItems)
                {
                    tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                    {
                        Val = JustificationValues.Right
                    }), new Run(Bold(), new Text(data))));
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = "3000"
                    }));
                    dataCells.Add(tcName1);
                }
                TableRow tr1 = new TableRow();
                tr1.Append(dataCells.ToArray());
                tbl.AppendChild(tr1);
            }
            TableCellProperties cellOneProperties = new TableCellProperties();

            return(tbl);
        }
Beispiel #13
0
        public static void ReplaceComments(string filePath, Dictionary<string, Object> dictmark)
        {
            if (dictmark == null) dictmark = new Dictionary<string, Object>();

            FileStream fs = new FileStream(filePath, FileMode.Open);

            WordprocessingDocument WORD = WordprocessingDocument.Open(fs, true);

            #region 生成Word
            try
            {
                Document doc = WORD.MainDocumentPart.Document;//找到正文处顶级
                MainDocumentPart MainPart = WORD.MainDocumentPart;
                IEnumerable<Comment> comments = WORD.MainDocumentPart.WordprocessingCommentsPart.Comments.Descendants<Comment>();//找到所有批注

                var CommentRangeStarts = doc.Descendants<CommentRangeStart>();
                var CommentRangeEnds = doc.Descendants<CommentRangeEnd>();
                var CommentReferences = doc.Descendants<CommentReference>();

                foreach (Comment comment in comments)
                {
                    string id = comment.Id;
                    string key = comment.InnerText.Trim();
                    var Startnode = CommentRangeStarts.First(p => p.Id == id);
                    var Startnode_a = CommentRangeStarts.First(p => p.Id == id);
                    var Endnode = CommentRangeEnds.First(p => p.Id == id);
                    var Refernode = CommentReferences.First(p => p.Id == id);
                    if (dictmark.ContainsKey(key))
                    {
                        Object value = dictmark[key];
                        if (value is String)
                        {
                            var str = value as string;
                            if (str.Contains("\r\n") || str.Contains("\n"))
                            {
                                var strArray = str.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries);
                                value = strArray;
                            }
                            else
                            {
                                Run run = Startnode.NextSibling<Run>();
                                run.ReplaceChild<Text>(new Text(value.ToString()), run.GetFirstChild<Text>());
                                OpenXmlElement nextNode = null;
                                while ((nextNode = run.NextSibling()) is Run) nextNode.Remove();
                            }
                        }
                        if (value is System.Drawing.Image)
                        {
                            //
                            System.Drawing.Image img = value as System.Drawing.Image;

                            ImagePart imagePart = MainPart.AddImagePart(ImageDict[img.RawFormat]);
                            using (MemoryStream ms = new MemoryStream())
                            {
                                img.Save(ms, img.RawFormat);
                                ms.Position = 0;
                                imagePart.FeedData(ms);
                            }
                            Run imagerun = CreateImageRun.GenerateRun(MainPart.GetIdOfPart(imagePart), img);
                            //
                            OpenXmlElement nextNode = null;
                            while ((nextNode = Startnode.NextSibling()) is Run) nextNode.Remove();
                            Startnode.InsertAfterSelf<Run>(imagerun);
                        }
                        if (value is ImageTextArray[])
                        {
                            OpenXmlElement nextNode = null;
                            RunProperties TempStyle = new RunProperties();//= run.RunProperties.Clone() as RunProperties;
                            //
                            OpenXmlElement replacenode = Startnode.Parent;

                            while ((nextNode = Startnode.NextSibling()) is Run)
                            {
                                nextNode.Remove();
                            }
                            ImageTextArray[] imgArray = value as ImageTextArray[];
                            //imgArray = imgArray.OrderByDescending(i=>i).ToArray();
                            //图片
                            for (int i = imgArray.Length - 1; i >= 0; i--)
                            {
                                var img = imgArray[i].Images;
                                var str = imgArray[i].Foots;
                                var text = imgArray[i].Text;

                                //判断是否是手签图片,若不是则将文字套入
                                if (img != null)
                                {
                                    #region insert img
                                    ImagePart imagePart = MainPart.AddImagePart(ImageDict[img.RawFormat]);
                                    using (MemoryStream ms = new MemoryStream())
                                    {
                                        img.Save(ms, img.RawFormat);
                                        ms.Position = 0;
                                        imagePart.FeedData(ms);
                                        ms.Close();
                                    }
                                    Run imagerun = CreateImageRun.GenerateRun(MainPart.GetIdOfPart(imagePart), img);
                                    //
                                    //if (i == 0)
                                    //{
                                    //    Startnode.InsertAfterSelf<Run>(imagerun);
                                    //}
                                    //else
                                    //{
                                    Paragraph imgPgf = new Paragraph(imagerun);

                                    // 进入该段落的ParagraphProperties部分,如果没有,创建新的。
                                    if (!imgPgf.Elements<ParagraphProperties>().Any())
                                    {
                                        imgPgf.PrependChild<ParagraphProperties>(new ParagraphProperties());
                                    }
                                    ParagraphProperties imgpPr = imgPgf.ParagraphProperties;
                                    if (!imgpPr.Elements<Justification>().Any())
                                    {
                                        imgpPr.PrependChild<Justification>(new Justification());
                                    }
                                    imgpPr.Justification.Val = imgArray[i].ImageAlign;

                                    replacenode.InsertBeforeSelf<Paragraph>(imgPgf);
                                    //}
                                    #endregion
                                }
                                else
                                {
                                    //文字内容
                                    RunProperties styles_T = new RunProperties(TempStyle.OuterXml);
                                    styles_T.Append(new FontSize() { Val = "24" });
                                    styles_T.Append(new RunFonts() { Ascii = "仿宋", HighAnsi = "仿宋", EastAsia = "仿宋" });
                                    Paragraph pgf_T = new Paragraph(new Run(styles_T, new Text(text)));
                                    if (!pgf_T.Elements<ParagraphProperties>().Any())
                                    {
                                        pgf_T.PrependChild<ParagraphProperties>(new ParagraphProperties());
                                    }
                                    ParagraphProperties pPr_T = pgf_T.ParagraphProperties;
                                    replacenode.InsertBeforeSelf<Paragraph>(pgf_T);
                                }

                                #region 插入用户名与日期
                                RunProperties styles = new RunProperties(TempStyle.OuterXml);
                                styles.Append(new RunFonts() { Ascii = "仿宋", HighAnsi = "仿宋", EastAsia = "仿宋" });
                                styles.Append(new FontSize() { Val = "24" }, new Bold());
                                Paragraph pgf = new Paragraph(new Run(styles, new Text(str)));

                                // 进入该段落的ParagraphProperties部分,如果没有,创建新的。
                                if (!pgf.Elements<ParagraphProperties>().Any())
                                {
                                    pgf.PrependChild<ParagraphProperties>(new ParagraphProperties());
                                }
                                ParagraphProperties pPr = pgf.ParagraphProperties;
                                if (!pPr.Elements<Justification>().Any())
                                {
                                    pPr.PrependChild<Justification>(new Justification());
                                }
                                pPr.Justification.Val = imgArray[i].FootAlign;

                                replacenode.InsertBeforeSelf<Paragraph>(pgf);

                                //RunProperties styles2 = new RunProperties(TempStyle.OuterXml);
                                //Paragraph pgf2 = new Paragraph(new Run(styles2, new Text("系统dddd")));

                                //// 进入该段落的ParagraphProperties部分,如果没有,创建新的。
                                //if (!pgf2.Elements<ParagraphProperties>().Any())
                                //{
                                //    pgf2.PrependChild<ParagraphProperties>(new ParagraphProperties());
                                //}
                                //ParagraphProperties pPr2 = pgf2.ParagraphProperties;
                                //if (!pPr2.Elements<Justification>().Any())
                                //{
                                //    pPr2.PrependChild<Justification>(new Justification());
                                //}
                                //pPr2.Justification.Val = imgArray[i].FootAlign;

                                //replacenode.InsertBeforeSelf<Paragraph>(pgf2);
                                #endregion

                                if (img != null)
                                {
                                    img.Dispose();
                                }
                            }
                            //RunProperties stylesLast = new RunProperties(TempStyle.OuterXml);

                            //Paragraph pgfLast = new Paragraph(new Run(stylesLast, new Break()));

                            //// 进入该段落的ParagraphProperties部分,如果没有,创建新的。
                            //if (!pgfLast.Elements<ParagraphProperties>().Any())
                            //{
                            //    pgfLast.PrependChild<ParagraphProperties>(new ParagraphProperties());
                            //}

                            //replacenode.InsertAfterSelf<Paragraph>(pgfLast);

                        }
                        if (value is System.Data.DataTable)
                        {
                            System.Data.DataTable table = value as System.Data.DataTable;
                            Table tb = CreateTable.GenerateTable(doc, table.Copy());
                            OpenXmlElement nextNode = null;
                            while ((nextNode = Startnode.NextSibling()) is Run) nextNode.Remove();
                            Startnode.Parent.InsertAfterSelf<Table>(tb);
                            Startnode.Parent.Remove();

                        }
                        if (value is DataTableArray)
                        {
                            DataTableArray tableArray = value as DataTableArray;
                            int index = tableArray.addIndexNum;
                            System.Data.DataTable table = tableArray.dataTable;

                            Table tbl = (Table)doc.MainDocumentPart.Document.Body.ChildElements[index];

                            //Table tbl = doc.MainDocumentPart.Document.Body.GetFirstChild<Table>();
                            for (int j = 0; j < table.Rows.Count; j++)
                            {
                                TableRow tableRow2 = new TableRow() { RsidTableRowAddition = "00344722", RsidTableRowProperties = "00164A46", ParagraphId = "47CB71AF", TextId = "77777777" };

                                TableRowProperties tableRowProperties2 = new TableRowProperties();
                                TableJustification tableJustification3 = new TableJustification() { Val = TableRowAlignmentValues.Center };

                                tableRowProperties2.Append(tableJustification3);
                                tableRow2.Append(tableRowProperties2);
                                for (int i = 0; i < table.Columns.Count; i++)
                                {
                                    //var cells = tbl.ToList()[2].ChildElements[i];
                                    TableCell tableCell11 = new TableCell();

                                    TableCellProperties tableCellProperties11 = new TableCellProperties();
                                    TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "405", Type = TableWidthUnitValues.Pct };
                                    TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

                                    tableCellProperties11.Append(tableCellWidth11);
                                    tableCellProperties11.Append(tableCellVerticalAlignment11);

                                    Paragraph paragraph16 = new Paragraph() { RsidParagraphAddition = "00344722", RsidParagraphProperties = "007F3CE0", RsidRunAdditionDefault = "00344722", ParagraphId = "3113A1DD", TextId = "62D52A14" };

                                    ParagraphProperties paragraphProperties16 = new ParagraphProperties();
                                    Justification justification16 = new Justification() { Val = JustificationValues.Center };

                                    ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
                                    RunFonts runFonts19 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };

                                    paragraphMarkRunProperties1.Append(runFonts19);

                                    paragraphProperties16.Append(justification16);
                                    paragraphProperties16.Append(paragraphMarkRunProperties1);

                                    Run run19 = new Run();

                                    RunProperties runProperties19 = new RunProperties();
                                    RunFonts runFonts20 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };

                                    runProperties19.Append(runFonts20);
                                    Text text19 = new Text();
                                    text19.Text = table.Rows[j][i].ToString();

                                    run19.Append(runProperties19);
                                    run19.Append(text19);

                                    paragraph16.Append(paragraphProperties16);
                                    paragraph16.Append(run19);

                                    tableCell11.Append(tableCellProperties11);
                                    tableCell11.Append(paragraph16);

                                    tableRow2.Append(tableCell11);
                                }
                                tbl.Append(tableRow2);
                            }
                            //删除表中多余的元素
                            if (!string.IsNullOrEmpty(tableArray.deleteNumber))
                            {
                                Paragraph deleteParagraph = (Paragraph)doc.MainDocumentPart.Document.Body.ChildElements[int.Parse(tableArray.deleteNumber)];
                                doc.MainDocumentPart.Document.Body.RemoveChild(deleteParagraph);
                            }

                        }

                        if (value is IEnumerable<string>)
                        {
                            IEnumerable<string> lst = value as IEnumerable<string>;
                            //
                            Run run = Startnode.NextSibling<Run>();
                            run.ReplaceChild<Text>(new Text(lst.First().ToString()), run.GetFirstChild<Text>());
                            //
                            OpenXmlElement nextNode = null;
                            while ((nextNode = run.NextSibling()) is Run) nextNode.Remove();
                            //
                            RunProperties TempStyle = run.RunProperties.Clone() as RunProperties;
                            TempStyle.Append(new FontSize() { Val = "24" });
                            TempStyle.Append(new RunFonts() { Ascii = "方正仿宋_GBK", HighAnsi = "方正仿宋_GBK", EastAsia = "方正仿宋_GBK" });
                            //
                            OpenXmlElement replacenode = Startnode.Parent;
                            //
                            IEnumerable<string> Afterlst = lst.Reverse();

                            // 方正仿宋_GBK
                            //
                            int sum = 0;
                            foreach (string str in Afterlst)
                            {
                                if (sum == Afterlst.Count() - 1) break;
                                //RunProperties styles = new RunProperties(TempStyle.OuterXml);
                                RunProperties TempStyle2 = run.RunProperties.Clone() as RunProperties;
                                TempStyle2.Append(new FontSize() { Val = "24" });
                                TempStyle2.Append(new RunFonts() { Ascii = "方正仿宋_GBK", HighAnsi = "方正仿宋_GBK", EastAsia = "方正仿宋_GBK" });
                                TempStyle2.Append(new SpacingBetweenLines() { Line = "10000", LineRule = LineSpacingRuleValues.Exact });
                                Paragraph pgf = new Paragraph(new Run(TempStyle2, new Text(str)));
                                replacenode.InsertAfterSelf(pgf);
                                //replacenode.AppendChild(pgf as OpenXmlElement);
                                sum++;
                            }
                            //

                        }
                    }
                    Startnode.Remove();
                    Endnode.Remove();
                    Refernode.Parent.Remove();
                }
                WORD.MainDocumentPart.RemoveAnnotations<Comments>();
                doc.Save();
            }
            finally
            {
                WORD.Close();
                fs.Close();
            }
            #endregion
        }
Beispiel #14
0
        private void button2_Click(object sender, EventArgs e)
        {
            string pathWord = "C:\\Users\\mishka\\Desktop\\UpWork\\wordTOXml\\wordTOXml\\bin\\Debug\\newword\\Before.docx";
            string savePath = "C:\\Users\\mishka\\Desktop\\UpWork\\wordTOXml\\wordTOXml\\bin\\Debug\\newword\\After.docx";

            using (var mainDoc = WordprocessingDocument.Open(pathWord, false))
                using (var resultDoc = WordprocessingDocument.Create(savePath,
                                                                     WordprocessingDocumentType.Document))
                {
                    // copy parts from source document to new document
                    foreach (var part in mainDoc.Parts)
                    {
                        resultDoc.AddPart(part.OpenXmlPart, part.RelationshipId);
                    }

                    IEnumerable <DocumentFormat.OpenXml.Vml.Shape> shapes =
                        resultDoc.MainDocumentPart.Document.Body.Descendants <DocumentFormat.OpenXml.Vml.Shape>();

                    UInt32 height = 0;

                    foreach (var shape in shapes)
                    {
                        // Getting shape height for adjusting table height
                        var    val        = shape.Style.Value;
                        string height_str = val.Split(new string[] { "height:" }, StringSplitOptions.None)[1]
                                            .Split(new string[] { "pt;" }, StringSplitOptions.None)[0]
                                            .Trim();
                        double h1 = double.Parse(height_str, System.Globalization.CultureInfo.InvariantCulture);
                        int    h  = Convert.ToInt32(h1);
                        height = Convert.ToUInt32(h);

                        //shape
                        shape.HorizontalAlignment = DocumentFormat.OpenXml.Vml.Office.HorizontalRuleAlignmentValues.Center;
                    }

                    foreach (var cc in resultDoc.ContentControls())
                    {
                        DocumentFormat.OpenXml.Wordprocessing.Table table1 = new DocumentFormat.OpenXml.Wordprocessing.Table();

                        TableProperties tableProperties1 = new TableProperties();
                        DocumentFormat.OpenXml.Wordprocessing.TableStyle tableStyle1 = new DocumentFormat.OpenXml.Wordprocessing.TableStyle()
                        {
                            Val = "ad"
                        };
                        BiDiVisual biDiVisual1 = new BiDiVisual();
                        TableWidth tableWidth1 = new TableWidth()
                        {
                            Width = "5200", Type = TableWidthUnitValues.Pct
                        };
                        TableJustification tableJustification1 = new TableJustification()
                        {
                            Val = TableRowAlignmentValues.Center
                        };

                        TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
                        TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
                        {
                            Width = 0, Type = TableWidthValues.Dxa
                        };
                        TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
                        {
                            Width = 0, Type = TableWidthValues.Dxa
                        };


                        tableCellMarginDefault1.Append(tableCellLeftMargin1);
                        tableCellMarginDefault1.Append(tableCellRightMargin1);
                        TableLook tableLook1 = new TableLook()
                        {
                            Val = "04A0"
                        };


                        tableProperties1.Append(tableStyle1);
                        tableProperties1.Append(biDiVisual1);
                        tableProperties1.Append(tableWidth1);
                        tableProperties1.Append(tableJustification1);
                        tableProperties1.Append(tableCellMarginDefault1);
                        tableProperties1.Append(tableLook1);


                        TableGrid  tableGrid1  = new TableGrid();
                        GridColumn gridColumn1 = new GridColumn()
                        {
                            Width = "555"
                        };
                        GridColumn gridColumn2 = new GridColumn()
                        {
                            Width = "556"
                        };


                        tableGrid1.Append(gridColumn1);
                        tableGrid1.Append(gridColumn2);

                        TableRow tableRow1 = new TableRow()
                        {
                            RsidTableRowAddition = "00AE49FD", RsidTableRowProperties = "00AE49FD"
                        };

                        TableRowProperties tableRowProperties1 = new TableRowProperties();
                        TableRowHeight     tableRowHeight1     = new TableRowHeight()
                        {
                            Val = 200, HeightType = HeightRuleValues.Exact
                        };

                        TableJustification tableJustification2 = new TableJustification()
                        {
                            Val = TableRowAlignmentValues.Center
                        };

                        tableRowProperties1.Append(tableRowHeight1);
                        tableRowProperties1.Append(tableJustification2);

                        TableCell tableCell1 = new TableCell();

                        TableCellProperties tableCellProperties1 = new TableCellProperties();
                        TableCellWidth      tableCellWidth1      = new TableCellWidth()
                        {
                            Width = "100", Type = TableWidthUnitValues.Pct
                        };
                        //tableCell1.TableCellProperties.TableCellMargin.BottomMargin = new BottomMargin() { Width = "0" };
                        //tableCell1.TableCellProperties.TableCellMargin.TopMargin = new TopMargin() { Width = "0" };
                        TableCellVerticalAlignment tableCellVerticalAlignment = new TableCellVerticalAlignment()
                        {
                            Val = TableVerticalAlignmentValues.Top
                        };
                        tableCellProperties1.Append(tableCellWidth1, tableCellVerticalAlignment);

                        DocumentFormat.OpenXml.Wordprocessing.Paragraph paragraph2 = new DocumentFormat.OpenXml.Wordprocessing.Paragraph()
                        {
                            RsidParagraphAddition = "00AE49FD", RsidParagraphProperties = "00AE49FD", RsidRunAdditionDefault = "00AE49FD"
                        };

                        ParagraphProperties paragraphProperties2 = new ParagraphProperties();
                        Justification       justification1       = new Justification()
                        {
                            Val = JustificationValues.Right
                        };

                        ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
                        RightToLeftText            rightToLeftText2            = new RightToLeftText();

                        paragraphMarkRunProperties2.Append(rightToLeftText2);

                        paragraphProperties2.Append(justification1);
                        paragraphProperties2.Append(paragraphMarkRunProperties2);

                        paragraph2.Append(paragraphProperties2);

                        tableCell1.Append(tableCellProperties1);
                        tableCell1.Append(paragraph2);

                        TableCell tableCell2 = new TableCell();

                        TableCellProperties tableCellProperties2 = new TableCellProperties();
                        TableCellWidth      tableCellWidth2      = new TableCellWidth()
                        {
                            Width = "100", Type = TableWidthUnitValues.Pct
                        };
                        //tableCell2.TableCellProperties.TableCellMargin.BottomMargin = new BottomMargin() { Width = "0" };
                        //tableCell2.TableCellProperties.TableCellMargin.TopMargin = new TopMargin() { Width = "0" };
                        TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment()
                        {
                            Val = TableVerticalAlignmentValues.Bottom
                        };

                        tableCellProperties2.Append(tableCellWidth2);
                        tableCellProperties2.Append(tableCellVerticalAlignment1);

                        DocumentFormat.OpenXml.Wordprocessing.Paragraph paragraph3 = new DocumentFormat.OpenXml.Wordprocessing.Paragraph()
                        {
                            RsidParagraphAddition = "00AE49FD", RsidParagraphProperties = "00AE49FD", RsidRunAdditionDefault = "00AE49FD"
                        };

                        ParagraphProperties paragraphProperties3 = new ParagraphProperties();
                        Justification       justification2       = new Justification()
                        {
                            Val = JustificationValues.Left
                        };

                        ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
                        RightToLeftText            rightToLeftText3            = new RightToLeftText();

                        paragraphMarkRunProperties3.Append(rightToLeftText3);

                        paragraphProperties3.Append(justification2);
                        paragraphProperties3.Append(paragraphMarkRunProperties3);

                        paragraph3.Append(paragraphProperties3);

                        tableCell2.Append(tableCellProperties2);
                        tableCell2.Append(paragraph3);

                        tableRow1.Append(tableRowProperties1);
                        tableRow1.Append(tableCell1);
                        tableRow1.Append(tableCell2);

                        table1.Append(tableProperties1);
                        table1.Append(tableGrid1);
                        table1.Append(tableRow1);

                        cc.AppendChild(table1);
                    }
                }
        }
Beispiel #15
0
        private static Table CreateBidplan1(List <string> headers, List <List <string> > items, string Cost)
        {
            //// Create a new table
            Table tbl = new Table();

            //// Create the table properties
            TableProperties    tblProperties = new TableProperties();
            TableJustification just          = new TableJustification();

            just.Val = TableRowAlignmentValues.Center;
            //// Create Table Borders
            TableBorders tblBorders = new TableBorders();
            TopBorder    topBorder  = new TopBorder();

            topBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            topBorder.Color = "000000";
            tblBorders.AppendChild(topBorder);
            BottomBorder bottomBorder = new BottomBorder();

            bottomBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            bottomBorder.Color = "000000";
            tblBorders.AppendChild(bottomBorder);
            RightBorder rightBorder = new RightBorder();

            rightBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            rightBorder.Color = "000000";
            tblBorders.AppendChild(rightBorder);
            LeftBorder leftBorder = new LeftBorder();

            leftBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            leftBorder.Color = "000000";
            tblBorders.AppendChild(leftBorder);
            InsideHorizontalBorder insideHBorder = new InsideHorizontalBorder();

            insideHBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideHBorder.Color = "000000";
            tblBorders.AppendChild(insideHBorder);
            InsideVerticalBorder insideVBorder = new InsideVerticalBorder();

            insideVBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideVBorder.Color = "000000";
            tblBorders.AppendChild(insideVBorder);
            //// Add the table borders to the properties
            tblProperties.AppendChild(tblBorders);
            tblProperties.AppendChild(just);
            //// Add the table properties to the table
            tbl.AppendChild(tblProperties);
            //// Add a cell to each column in the row
            TableCellProperties cellOneProperties = new TableCellProperties();
            List <TableCell>    headerCells       = new List <TableCell>();
            int index = 0;

            int[] widths = { 1400, 1800, 1600, 1300, 1300, 1300, 1300, 1300 };
            foreach (string itemHeaders in headers)
            {
                TableCell tcName12 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Center
                }), new Run(Bold(), new Text(itemHeaders))));
                tcName12.Append(new TableCellProperties(
                                    new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = widths[index].ToString()
                }));
                headerCells.Add(tcName12);
                index++;
            }
            //// Create a new row
            TableRow tr = new TableRow();

            tr.Append(headerCells.ToArray());
            tbl.AppendChild(tr);
            List <TableCell> dataCells = new List <TableCell>();
            TableCell        tcName1;

            foreach (List <string> rowItems in items)
            {
                index     = 0;
                dataCells = new List <TableCell>();
                foreach (string data in rowItems)
                {
                    tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                    {
                        Val = JustificationValues.Center
                    }), new Run(Bold(), new Text(data))));
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[index].ToString()
                    }));
                    dataCells.Add(tcName1);
                    index++;
                }
                tr = new TableRow();
                tr.Append(dataCells.ToArray());
                tbl.AppendChild(tr);
            }

            // total row
            tr        = new TableRow();
            dataCells = new List <TableCell>();

            tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Center
            }), new Run(Bold(), new Text("Tổng Giá"))));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "1400"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Restart
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);

            tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Center
            }), new Run(Bold(), new Text())));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "2200"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Continue
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);


            tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Center
            }), new Run(Bold(), new Text(Cost))));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "1800"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Restart
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);


            for (int loopindex = 3; loopindex < widths.Length; loopindex++)
            {
                tcName1 = new TableCell(new Paragraph(new Run(new Text(Cost))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Continue
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);
            }
            tr.Append(dataCells.ToArray());
            tbl.AppendChild(tr);

            return(tbl);
        }
Beispiel #16
0
        private static Table CreateTable(NegotiationPrintModel item, double Totalcost)
        {
            //prepare ITEMs
            List <string>         headers = new List <string>();
            List <List <string> > items   = new List <List <string> >();

            headers.Add("STT");
            headers.Add("Tên và mô tả thiết bị");
            headers.Add("Đơn vị tính");
            headers.Add("Số lượng");

            headers.Add("Đơn giá(VNĐ)");
            headers.Add("Thành tiền (VNĐ)");

            int[] widths = { 1000, 4200, 1800, 1500, 2100, 2100 };


            int index = 1;

            foreach (ItemInfo record in item.Items)
            {
                List <string> row = new List <string>();
                row.Add(index.ToString());
                row.Add(record.ItemName);
                row.Add(record.ItemUnit);
                row.Add(record.Amount.ToString());
                row.Add(string.Format("{0:0,0}", record.ItemPrice).Replace(",", "."));
                row.Add(string.Format("{0:0,0}", record.ItemPrice * record.Amount).Replace(",", "."));
                items.Add(row);
                index++;
            }



            //// Create a new table
            Table tbl = new Table();

            //// Create the table properties
            TableProperties    tblProperties = new TableProperties();
            TableJustification just          = new TableJustification();

            just.Val = TableRowAlignmentValues.Center;
            //// Create Table Borders
            TableBorders tblBorders = new TableBorders();
            TopBorder    topBorder  = new TopBorder();

            topBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            topBorder.Color = "000000";
            tblBorders.AppendChild(topBorder);
            BottomBorder bottomBorder = new BottomBorder();

            bottomBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            bottomBorder.Color = "000000";
            tblBorders.AppendChild(bottomBorder);
            RightBorder rightBorder = new RightBorder();

            rightBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            rightBorder.Color = "000000";
            tblBorders.AppendChild(rightBorder);
            LeftBorder leftBorder = new LeftBorder();

            leftBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            leftBorder.Color = "000000";
            tblBorders.AppendChild(leftBorder);
            InsideHorizontalBorder insideHBorder = new InsideHorizontalBorder();

            insideHBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideHBorder.Color = "000000";
            tblBorders.AppendChild(insideHBorder);
            InsideVerticalBorder insideVBorder = new InsideVerticalBorder();

            insideVBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideVBorder.Color = "000000";
            tblBorders.AppendChild(insideVBorder);
            //// Add the table borders to the properties
            tblProperties.AppendChild(tblBorders);
            tblProperties.AppendChild(just);
            //// Add the table properties to the table
            tbl.AppendChild(tblProperties);
            //// Add a cell to each column in the row
            ///
            List <TableCell> headerCells = new List <TableCell>();
            TableCell        tcName1;

            foreach (string itemHeaders in headers)
            {
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Center
                }), new Run(FontTable(), new Text(itemHeaders))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "3000"
                }));
                headerCells.Add(tcName1);
            }
            //// Create a new row
            TableRow tr = new TableRow();

            tr.Append(headerCells.ToArray());
            tbl.AppendChild(tr);
            List <TableCell> dataCells = new List <TableCell>();


            foreach (List <string> rowItems in items)
            {
                int i = 0;
                dataCells = new List <TableCell>();
                foreach (string data in rowItems)
                {
                    if (i == rowItems.Count - 1)
                    {
                        tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                        {
                            Val = JustificationValues.Right
                        }), new Run(FontTable(), new Text(data))));
                    }
                    else
                    {
                        tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                        {
                            Val = JustificationValues.Center
                        }), new Run(FontTable(), new Text(data))));
                    }
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = "3000"
                    }));
                    dataCells.Add(tcName1);

                    i++;
                }
                TableRow tr1 = new TableRow();
                tr1.Append(dataCells.ToArray());
                tbl.AppendChild(tr1);
            }
            TableCellProperties cellOneProperties = new TableCellProperties();

            //if VAT
            if (item.IsVAT)
            {
                // total row
                tr        = new TableRow();
                dataCells = new List <TableCell>();
                tcName1   = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text("Tổng công (chưa bao gồm VAT)"))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "1000"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                for (int loopindex = 1; loopindex < widths.Length - 1; loopindex++)
                {
                    tcName1 = new TableCell(new Paragraph());
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                    }));
                    cellOneProperties = new TableCellProperties();
                    cellOneProperties.Append(new HorizontalMerge()
                    {
                        Val = MergedCellValues.Continue
                    });
                    tcName1.Append(cellOneProperties);
                    dataCells.Add(tcName1);
                }
                double totalCostWithoutVAT = 0;
                totalCostWithoutVAT = Totalcost;
                Totalcost           = Totalcost * (100 + item.VATNumber) / 100;
                var totalCostWithoutVATstr = string.Format("{0:0,0}", totalCostWithoutVAT).Replace(",", ".");
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text(totalCostWithoutVATstr))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "1900"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);
                tr.Append(dataCells.ToArray());
                tbl.AppendChild(tr);



                // total row
                tr        = new TableRow();
                dataCells = new List <TableCell>();
                tcName1   = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text("Thuế VAT " + item.VATNumber.ToString() + "%"))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "200"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                for (int loopindex = 1; loopindex < widths.Length - 1; loopindex++)
                {
                    tcName1 = new TableCell(new Paragraph());
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                    }));
                    cellOneProperties = new TableCellProperties();
                    cellOneProperties.Append(new HorizontalMerge()
                    {
                        Val = MergedCellValues.Continue
                    });
                    tcName1.Append(cellOneProperties);
                    dataCells.Add(tcName1);
                }
                double vatCost = 0;
                vatCost = (Totalcost * item.VATNumber) / 100;
                var vatCoststr = string.Format("{0:0,0}", vatCost).Replace(",", ".");
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text(vatCoststr))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "1900"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                tr.Append(dataCells.ToArray());
                tbl.AppendChild(tr);

                // total row
                tr        = new TableRow();
                dataCells = new List <TableCell>();
                tcName1   = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text("TỔNG CỘNG (đã bao gồm VAT)"))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "200"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                for (int loopindex = 1; loopindex < widths.Length - 1; loopindex++)
                {
                    tcName1 = new TableCell(new Paragraph());
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                    }));
                    cellOneProperties = new TableCellProperties();
                    cellOneProperties.Append(new HorizontalMerge()
                    {
                        Val = MergedCellValues.Continue
                    });
                    tcName1.Append(cellOneProperties);
                    dataCells.Add(tcName1);
                }

                var TotalCostfm = string.Format("{0:0,0}", Totalcost).Replace(",", ".");
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text(TotalCostfm))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "1900"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                tr.Append(dataCells.ToArray());
                tbl.AppendChild(tr);
            }
            else
            {
                // total row
                tr        = new TableRow();
                dataCells = new List <TableCell>();
                tcName1   = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text("TỔNG CỘNG "))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "200"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                for (int loopindex = 1; loopindex < widths.Length - 1; loopindex++)
                {
                    tcName1 = new TableCell(new Paragraph());
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                    }));
                    cellOneProperties = new TableCellProperties();
                    cellOneProperties.Append(new HorizontalMerge()
                    {
                        Val = MergedCellValues.Continue
                    });
                    tcName1.Append(cellOneProperties);
                    dataCells.Add(tcName1);
                }

                var TotalCostfm = string.Format("{0:0,0}", Totalcost).Replace(",", ".");
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Right
                }), new Run(FontTable(), new Text(TotalCostfm))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = "1900"
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Restart
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);

                tr.Append(dataCells.ToArray());
                tbl.AppendChild(tr);
            }
            return(tbl);
        }
Beispiel #17
0
        private static void SetTableAlignment(HorizontalAlignmentType alignment, TableProperties tblProp)
        {
            TableJustification tblJustification = null;

            if (alignment == HorizontalAlignmentType.Center) {

                tblJustification = new TableJustification() { Val = TableRowAlignmentValues.Center };
            }
            else if (alignment == HorizontalAlignmentType.Right) {

                tblJustification = new TableJustification() { Val = TableRowAlignmentValues.Right };
            }
            else {

                tblJustification = new TableJustification() { Val = TableRowAlignmentValues.Left };
            }

            tblProp.Append(tblJustification);
        }
Beispiel #18
0
        /// <summary>
        /// 表格样式,默认启用
        /// </summary>
        /// <returns></returns>
        public static Style GenerateTableStyle()
        {
            Style style1 = new Style()
            {
                Type = StyleValues.Table, StyleId = "Table"
            };
            StyleName styleName1 = new StyleName()
            {
                Val = "Table"
            };
            BasedOn basedOn1 = new BasedOn()
            {
                Val = "a1"
            };
            UIPriority uIPriority1 = new UIPriority()
            {
                Val = 4
            };

            StyleTableProperties styleTableProperties1 = new StyleTableProperties();

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            styleTableProperties1.Append(tableBorders1);

            // 居中对齐
            TableJustification tableJustification1 = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            styleTableProperties1.Append(tableJustification1);

            style1.Append(styleName1);
            style1.Append(basedOn1);
            style1.Append(uIPriority1);
            style1.Append(styleTableProperties1);
            return(style1);
        }
Beispiel #19
0
        private static Table CreateTablec34(List <string> headers, List <List <string> > items, double Totalcost)
        {
            int[] widths = { 900, 3600, 900, 900, 1200, 1200, 1500, 900 };



            //// Create a new table
            Table tbl = new Table();

            //// Create the table properties
            TableProperties    tblProperties = new TableProperties();
            TableJustification just          = new TableJustification();

            just.Val = TableRowAlignmentValues.Center;
            //// Create Table Borders
            TableBorders tblBorders = new TableBorders();
            TopBorder    topBorder  = new TopBorder();

            topBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            topBorder.Color = "000000";
            tblBorders.AppendChild(topBorder);
            BottomBorder bottomBorder = new BottomBorder();

            bottomBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            bottomBorder.Color = "000000";
            tblBorders.AppendChild(bottomBorder);
            RightBorder rightBorder = new RightBorder();

            rightBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            rightBorder.Color = "000000";
            tblBorders.AppendChild(rightBorder);
            LeftBorder leftBorder = new LeftBorder();

            leftBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            leftBorder.Color = "000000";
            tblBorders.AppendChild(leftBorder);
            InsideHorizontalBorder insideHBorder = new InsideHorizontalBorder();

            insideHBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideHBorder.Color = "000000";
            tblBorders.AppendChild(insideHBorder);
            InsideVerticalBorder insideVBorder = new InsideVerticalBorder();

            insideVBorder.Val   = new EnumValue <BorderValues>(BorderValues.Thick);
            insideVBorder.Color = "000000";
            tblBorders.AppendChild(insideVBorder);
            //// Add the table borders to the properties
            tblProperties.AppendChild(tblBorders);
            tblProperties.AppendChild(just);
            //// Add the table properties to the table
            tbl.AppendChild(tblProperties);
            //// Add a cell to each column in the row
            ///
            List <TableCell> headerCells = new List <TableCell>();
            TableCell        tcName1;
            int i = 0;

            foreach (string itemHeaders in headers)
            {
                tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                {
                    Val = JustificationValues.Center
                }), new Run(FontTable(), new Text(itemHeaders))));
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = widths[i].ToString()
                }));
                headerCells.Add(tcName1);
                i++;
            }
            //// Create a new row
            TableRow tr = new TableRow();

            tr.Append(headerCells.ToArray());
            tbl.AppendChild(tr);
            List <TableCell> dataCells = new List <TableCell>();

            i = 0;
            foreach (List <string> rowItems in items)
            {
                dataCells = new List <TableCell>();
                foreach (string data in rowItems)
                {
                    tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
                    {
                        Val = JustificationValues.Center
                    }), new Run(FontTable(), new Text(data))));
                    tcName1.Append(new TableCellProperties(
                                       new TableCellWidth()
                    {
                        Type = TableWidthUnitValues.Dxa, Width = widths[i].ToString()
                    }));
                    dataCells.Add(tcName1);
                }
                TableRow tr1 = new TableRow();
                tr1.Append(dataCells.ToArray());
                tbl.AppendChild(tr1);
                i++;
            }
            TableCellProperties cellOneProperties = new TableCellProperties();

            //if VAT
            tr        = new TableRow();
            dataCells = new List <TableCell>();
            tcName1   = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Center
            }), new Run(FontTable(), new Text("TỔNG CỘNG "))));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "800"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Restart
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);

            for (int loopindex = 1; loopindex < widths.Length - 2; loopindex++)
            {
                tcName1 = new TableCell(new Paragraph());
                tcName1.Append(new TableCellProperties(
                                   new TableCellWidth()
                {
                    Type = TableWidthUnitValues.Dxa, Width = widths[loopindex].ToString()
                }));
                cellOneProperties = new TableCellProperties();
                cellOneProperties.Append(new HorizontalMerge()
                {
                    Val = MergedCellValues.Continue
                });
                tcName1.Append(cellOneProperties);
                dataCells.Add(tcName1);
            }

            var TotalCostfm = string.Format("{0:0,0}", Totalcost).Replace(",", ".");

            tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Left
            }), new Run(FontTable(), new Text(TotalCostfm))));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "1500"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Restart
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);


            tcName1 = new TableCell(new Paragraph(new ParagraphProperties(new Justification()
            {
                Val = JustificationValues.Center
            }), new Run(FontTable(), new Text())));
            tcName1.Append(new TableCellProperties(
                               new TableCellWidth()
            {
                Type = TableWidthUnitValues.Dxa, Width = "900"
            }));
            cellOneProperties = new TableCellProperties();
            cellOneProperties.Append(new HorizontalMerge()
            {
                Val = MergedCellValues.Restart
            });
            tcName1.Append(cellOneProperties);
            dataCells.Add(tcName1);

            tr.Append(dataCells.ToArray());
            tbl.AppendChild(tr);

            return(tbl);
        }