Word not reading all paragraph

We have a licensed version of Word. We are using the following code to read the paragraph. However, we are noticing that below line is not getting read. We are using 19.10 version

I have attached the document along with this message. Any help is appreciated.

Filgi

012300 Alternates 11-2007.zip (16.9 KB)

Below line not read

" Definition in paragraph below expands the definition in AIA Document A701, “Instructions to Bidders,” and assumes the normal bidding situation applies, with contractors stating alternate amounts requested on the Bid Form. It also assumes that Owner will decide to accept or reject alternates before signing the Owner/Contractor Agreement and that Bidding Requirements stipulate terms under which Owner will accept or reject alternates.
Revise paragraph below to suit Project."

The below is the code.

Document doc1 = new Document(path1);
NodeCollection node = doc.GetChildNodes(NodeType.Paragraph, true);
List paragraphs = new List();// doc.FirstSection.Body.Paragraphs.OfType().ToList();
foreach (Node no in node)
{
paragraphs.Add((Paragraph)no);
}

@filgimathew

We have tested the scenario using the latest version of Aspose.Words for .NET 19.11 and have not found the shared issue. Please use Aspose.Words for .NET 19.11 and check the attached image for detail. paragraph read.png (45.9 KB)