Error reading pvtu file

I’m trying to write a .pvtu file to read multiple .vtu files wriiten out from a parallel program. When opening in paraview it gives the following error: “Error processing xml file at line 12 column 2 byte index 502”. I have scalar data r,u,v,w,t,p,c in ascii format in the .vtu files. Could someone please point out what I am doing wrong please?
Link for the file: https://docs.google.com/document/d/1ps0GNVZUrN0RIbmV1Ffr7SsNnS6QkQyVEpJ16rswyRw/edit?usp=sharing

(I’m unable to write the write here)
"

<?xml version="1.0"?> "

Looks like you’re missing a dash “/”
<PDataArray type=“Float64” Name=“c” format=“ascii”/>

That solved it! Don’t know how I missed that, thanks a bunch!