diff --git a/ReportToolz/repgen.php b/ReportToolz/repgen.php
index 86ac51b..cfd6b23 100755
--- a/ReportToolz/repgen.php
+++ b/ReportToolz/repgen.php
@@ -5,7 +5,8 @@
 /***
  * Configuration options
  */
-$template = "templates/odt/blank_template_v0.2.odt";
+$template = "templates/odt/blank_template_v0.3.odt";
+$CHECKtemplate = "templates/odt/blank_template_check_v0.2.odt";
 $vulnTemplate = "templates/odt/vuln_template.xml";
 
 /***
@@ -38,6 +39,13 @@
 if(!is_dir($filter->getParam("path")))
 	die("[-] no such folder! \n");
 
+//get config file
+$config = json_decode(file_get_contents($filter->getParam("path")."config.conf")); 
+if(isset($config->checkRef) && trim($config->checkRef) <> ""){
+    $template = $CHECKtemplate; // if checkRefset use CHECK template
+    echo "[+] using CHECK template\n";
+}
+
 // extract doc and get contents
 $rand = uniqid();
 mkdir("/tmp/$rand");
@@ -48,7 +56,7 @@
 	die("[-] unable to extract doc\n");
 }
 	
-$config = json_decode(file_get_contents($filter->getParam("path")."config.conf"));
+
 
 // add config into template
 $source = file_get_contents("/tmp/$rand/content.xml");
@@ -81,7 +89,7 @@
 	$templateSource = $templateOrig;
 	$togo = $singlevuln['risk'];
 	foreach ($singlevuln as $key => $value){
-		$value = str_replace("\n", "</text:p><text:p text:style-name=\"P173\">", $value);
+		$value = str_replace("\n", "</text:p><text:p text:style-name=\"Text_20_body\">", $value);
 		$templateSource = str_replace('{'.$key.'}', $value, $templateSource);
 	}
 	$$togo .= $templateSource;
@@ -91,11 +99,11 @@
 // squash vulns into one bbig xml
 $value = "";
 if(!empty($Serious)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Serious Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Serious Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -104,11 +112,11 @@
 }
 
 if(!empty($High)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">High Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">High Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -116,11 +124,11 @@
 	$value .= $High;
 }
 if(!empty($Medium)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Medium Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Medium Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -128,11 +136,11 @@
 	$value .= $Medium;
 }
 if(!empty($Low)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Low Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Low Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>

diff --git a/ReportToolz/repgen.php b/ReportToolz/repgen.php
index 86ac51b..cfd6b23 100755
--- a/ReportToolz/repgen.php
+++ b/ReportToolz/repgen.php
@@ -5,7 +5,8 @@
 /***
  * Configuration options
  */
-$template = "templates/odt/blank_template_v0.2.odt";
+$template = "templates/odt/blank_template_v0.3.odt";
+$CHECKtemplate = "templates/odt/blank_template_check_v0.2.odt";
 $vulnTemplate = "templates/odt/vuln_template.xml";
 
 /***
@@ -38,6 +39,13 @@
 if(!is_dir($filter->getParam("path")))
 	die("[-] no such folder! \n");
 
+//get config file
+$config = json_decode(file_get_contents($filter->getParam("path")."config.conf")); 
+if(isset($config->checkRef) && trim($config->checkRef) <> ""){
+    $template = $CHECKtemplate; // if checkRefset use CHECK template
+    echo "[+] using CHECK template\n";
+}
+
 // extract doc and get contents
 $rand = uniqid();
 mkdir("/tmp/$rand");
@@ -48,7 +56,7 @@
 	die("[-] unable to extract doc\n");
 }
 	
-$config = json_decode(file_get_contents($filter->getParam("path")."config.conf"));
+
 
 // add config into template
 $source = file_get_contents("/tmp/$rand/content.xml");
@@ -81,7 +89,7 @@
 	$templateSource = $templateOrig;
 	$togo = $singlevuln['risk'];
 	foreach ($singlevuln as $key => $value){
-		$value = str_replace("\n", "</text:p><text:p text:style-name=\"P173\">", $value);
+		$value = str_replace("\n", "</text:p><text:p text:style-name=\"Text_20_body\">", $value);
 		$templateSource = str_replace('{'.$key.'}', $value, $templateSource);
 	}
 	$$togo .= $templateSource;
@@ -91,11 +99,11 @@
 // squash vulns into one bbig xml
 $value = "";
 if(!empty($Serious)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Serious Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Serious Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -104,11 +112,11 @@
 }
 
 if(!empty($High)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">High Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">High Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -116,11 +124,11 @@
 	$value .= $High;
 }
 if(!empty($Medium)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Medium Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Medium Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -128,11 +136,11 @@
 	$value .= $Medium;
 }
 if(!empty($Low)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Low Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Low Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
diff --git a/ReportToolz/templates/odt/blank_template_v0.1.odt b/ReportToolz/templates/odt/blank_template_v0.1.odt
new file mode 100755
index 0000000..6c08f56
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.1.odt
Binary files differ

diff --git a/ReportToolz/repgen.php b/ReportToolz/repgen.php
index 86ac51b..cfd6b23 100755
--- a/ReportToolz/repgen.php
+++ b/ReportToolz/repgen.php
@@ -5,7 +5,8 @@
 /***
  * Configuration options
  */
-$template = "templates/odt/blank_template_v0.2.odt";
+$template = "templates/odt/blank_template_v0.3.odt";
+$CHECKtemplate = "templates/odt/blank_template_check_v0.2.odt";
 $vulnTemplate = "templates/odt/vuln_template.xml";
 
 /***
@@ -38,6 +39,13 @@
 if(!is_dir($filter->getParam("path")))
 	die("[-] no such folder! \n");
 
+//get config file
+$config = json_decode(file_get_contents($filter->getParam("path")."config.conf")); 
+if(isset($config->checkRef) && trim($config->checkRef) <> ""){
+    $template = $CHECKtemplate; // if checkRefset use CHECK template
+    echo "[+] using CHECK template\n";
+}
+
 // extract doc and get contents
 $rand = uniqid();
 mkdir("/tmp/$rand");
@@ -48,7 +56,7 @@
 	die("[-] unable to extract doc\n");
 }
 	
-$config = json_decode(file_get_contents($filter->getParam("path")."config.conf"));
+
 
 // add config into template
 $source = file_get_contents("/tmp/$rand/content.xml");
@@ -81,7 +89,7 @@
 	$templateSource = $templateOrig;
 	$togo = $singlevuln['risk'];
 	foreach ($singlevuln as $key => $value){
-		$value = str_replace("\n", "</text:p><text:p text:style-name=\"P173\">", $value);
+		$value = str_replace("\n", "</text:p><text:p text:style-name=\"Text_20_body\">", $value);
 		$templateSource = str_replace('{'.$key.'}', $value, $templateSource);
 	}
 	$$togo .= $templateSource;
@@ -91,11 +99,11 @@
 // squash vulns into one bbig xml
 $value = "";
 if(!empty($Serious)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Serious Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Serious Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -104,11 +112,11 @@
 }
 
 if(!empty($High)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">High Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">High Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -116,11 +124,11 @@
 	$value .= $High;
 }
 if(!empty($Medium)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Medium Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Medium Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -128,11 +136,11 @@
 	$value .= $Medium;
 }
 if(!empty($Low)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Low Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Low Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
diff --git a/ReportToolz/templates/odt/blank_template_v0.1.odt b/ReportToolz/templates/odt/blank_template_v0.1.odt
new file mode 100755
index 0000000..6c08f56
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.1.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/blank_template_v0.2.odt b/ReportToolz/templates/odt/blank_template_v0.2.odt
old mode 100644
new mode 100755
index 76721c3..3010ce9
--- a/ReportToolz/templates/odt/blank_template_v0.2.odt
+++ b/ReportToolz/templates/odt/blank_template_v0.2.odt
Binary files differ

diff --git a/ReportToolz/repgen.php b/ReportToolz/repgen.php
index 86ac51b..cfd6b23 100755
--- a/ReportToolz/repgen.php
+++ b/ReportToolz/repgen.php
@@ -5,7 +5,8 @@
 /***
  * Configuration options
  */
-$template = "templates/odt/blank_template_v0.2.odt";
+$template = "templates/odt/blank_template_v0.3.odt";
+$CHECKtemplate = "templates/odt/blank_template_check_v0.2.odt";
 $vulnTemplate = "templates/odt/vuln_template.xml";
 
 /***
@@ -38,6 +39,13 @@
 if(!is_dir($filter->getParam("path")))
 	die("[-] no such folder! \n");
 
+//get config file
+$config = json_decode(file_get_contents($filter->getParam("path")."config.conf")); 
+if(isset($config->checkRef) && trim($config->checkRef) <> ""){
+    $template = $CHECKtemplate; // if checkRefset use CHECK template
+    echo "[+] using CHECK template\n";
+}
+
 // extract doc and get contents
 $rand = uniqid();
 mkdir("/tmp/$rand");
@@ -48,7 +56,7 @@
 	die("[-] unable to extract doc\n");
 }
 	
-$config = json_decode(file_get_contents($filter->getParam("path")."config.conf"));
+
 
 // add config into template
 $source = file_get_contents("/tmp/$rand/content.xml");
@@ -81,7 +89,7 @@
 	$templateSource = $templateOrig;
 	$togo = $singlevuln['risk'];
 	foreach ($singlevuln as $key => $value){
-		$value = str_replace("\n", "</text:p><text:p text:style-name=\"P173\">", $value);
+		$value = str_replace("\n", "</text:p><text:p text:style-name=\"Text_20_body\">", $value);
 		$templateSource = str_replace('{'.$key.'}', $value, $templateSource);
 	}
 	$$togo .= $templateSource;
@@ -91,11 +99,11 @@
 // squash vulns into one bbig xml
 $value = "";
 if(!empty($Serious)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Serious Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Serious Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -104,11 +112,11 @@
 }
 
 if(!empty($High)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">High Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">High Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -116,11 +124,11 @@
 	$value .= $High;
 }
 if(!empty($Medium)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Medium Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Medium Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -128,11 +136,11 @@
 	$value .= $Medium;
 }
 if(!empty($Low)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Low Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Low Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
diff --git a/ReportToolz/templates/odt/blank_template_v0.1.odt b/ReportToolz/templates/odt/blank_template_v0.1.odt
new file mode 100755
index 0000000..6c08f56
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.1.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/blank_template_v0.2.odt b/ReportToolz/templates/odt/blank_template_v0.2.odt
old mode 100644
new mode 100755
index 76721c3..3010ce9
--- a/ReportToolz/templates/odt/blank_template_v0.2.odt
+++ b/ReportToolz/templates/odt/blank_template_v0.2.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/blank_template_v0.3.odt b/ReportToolz/templates/odt/blank_template_v0.3.odt
new file mode 100755
index 0000000..f2d55ae
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.3.odt
Binary files differ

diff --git a/ReportToolz/repgen.php b/ReportToolz/repgen.php
index 86ac51b..cfd6b23 100755
--- a/ReportToolz/repgen.php
+++ b/ReportToolz/repgen.php
@@ -5,7 +5,8 @@
 /***
  * Configuration options
  */
-$template = "templates/odt/blank_template_v0.2.odt";
+$template = "templates/odt/blank_template_v0.3.odt";
+$CHECKtemplate = "templates/odt/blank_template_check_v0.2.odt";
 $vulnTemplate = "templates/odt/vuln_template.xml";
 
 /***
@@ -38,6 +39,13 @@
 if(!is_dir($filter->getParam("path")))
 	die("[-] no such folder! \n");
 
+//get config file
+$config = json_decode(file_get_contents($filter->getParam("path")."config.conf")); 
+if(isset($config->checkRef) && trim($config->checkRef) <> ""){
+    $template = $CHECKtemplate; // if checkRefset use CHECK template
+    echo "[+] using CHECK template\n";
+}
+
 // extract doc and get contents
 $rand = uniqid();
 mkdir("/tmp/$rand");
@@ -48,7 +56,7 @@
 	die("[-] unable to extract doc\n");
 }
 	
-$config = json_decode(file_get_contents($filter->getParam("path")."config.conf"));
+
 
 // add config into template
 $source = file_get_contents("/tmp/$rand/content.xml");
@@ -81,7 +89,7 @@
 	$templateSource = $templateOrig;
 	$togo = $singlevuln['risk'];
 	foreach ($singlevuln as $key => $value){
-		$value = str_replace("\n", "</text:p><text:p text:style-name=\"P173\">", $value);
+		$value = str_replace("\n", "</text:p><text:p text:style-name=\"Text_20_body\">", $value);
 		$templateSource = str_replace('{'.$key.'}', $value, $templateSource);
 	}
 	$$togo .= $templateSource;
@@ -91,11 +99,11 @@
 // squash vulns into one bbig xml
 $value = "";
 if(!empty($Serious)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Serious Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Serious Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -104,11 +112,11 @@
 }
 
 if(!empty($High)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">High Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">High Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -116,11 +124,11 @@
 	$value .= $High;
 }
 if(!empty($Medium)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Medium Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Medium Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
@@ -128,11 +136,11 @@
 	$value .= $Medium;
 }
 if(!empty($Low)){
-	$value .= '<text:list xml:id="list215514604433265" text:continue-numbering="true" text:style-name="Outline">
+	$value .= '<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
-                <text:h text:style-name="P156" text:outline-level="2">Low Risk Vulnerabilities</text:h>
+                <text:h text:outline-level="2">Low Risk Vulnerabilities</text:h>
             </text:list-item>
         </text:list>
     </text:list-item>
diff --git a/ReportToolz/templates/odt/blank_template_v0.1.odt b/ReportToolz/templates/odt/blank_template_v0.1.odt
new file mode 100755
index 0000000..6c08f56
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.1.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/blank_template_v0.2.odt b/ReportToolz/templates/odt/blank_template_v0.2.odt
old mode 100644
new mode 100755
index 76721c3..3010ce9
--- a/ReportToolz/templates/odt/blank_template_v0.2.odt
+++ b/ReportToolz/templates/odt/blank_template_v0.2.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/blank_template_v0.3.odt b/ReportToolz/templates/odt/blank_template_v0.3.odt
new file mode 100755
index 0000000..f2d55ae
--- /dev/null
+++ b/ReportToolz/templates/odt/blank_template_v0.3.odt
Binary files differ
diff --git a/ReportToolz/templates/odt/vuln_template.xml b/ReportToolz/templates/odt/vuln_template.xml
index ad7eb53..a5056bc 100644
--- a/ReportToolz/templates/odt/vuln_template.xml
+++ b/ReportToolz/templates/odt/vuln_template.xml
@@ -1,10 +1,10 @@
-<text:list xml:id="list213560360713376" text:continue-numbering="true" text:style-name="Outline">
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
                 <text:list>
                     <text:list-item>
-                        <text:h text:style-name="P158" text:outline-level="3"><text:span text:style-name="T68">{title}</text:span>
+                        <text:h text:outline-level="3"><text:span>{title}</text:span>
                     </text:h>
                 </text:list-item>
             </text:list>
@@ -12,8 +12,8 @@
     </text:list>
 </text:list-item>
 </text:list>
-<text:p text:style-name="P172">{description}</text:p>
-<text:list xml:id="list213561795199098" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{description}</text:p>
+<text:list  text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -21,7 +21,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P160" text:outline-level="4">Description</text:h>
+                                <text:h text:outline-level="4">Description</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -30,8 +30,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P173">{tech_description}</text:p>
-<text:list xml:id="list213560538834392" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{tech_description}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -39,7 +39,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P163" text:outline-level="4">Potential Impact</text:h>
+                                <text:h text:outline-level="4">Potential Impact</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -48,8 +48,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P174">{impact}</text:p>
-<text:list xml:id="list213561208498537" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{impact}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -57,7 +57,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P163" text:outline-level="4">Solution</text:h>
+                                <text:h text:outline-level="4">Solution</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -66,8 +66,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P174">{solution}</text:p>
-<text:list xml:id="list213559784479853" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{solution}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -75,7 +75,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P168" text:outline-level="4">Remediation</text:h>
+                                <text:h text:outline-level="4">Remediation</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -84,8 +84,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P176">{remediation} </text:p>
-<text:list xml:id="list213560383564909" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{remediation}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -93,7 +93,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P166" text:outline-level="4">CVSS Base Score</text:h>
+                                <text:h text:outline-level="4">CVSS Base Score</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -102,8 +102,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P175">{cvss_score}</text:p>
-<text:list xml:id="list213560394355852" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{cvss_score}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -111,7 +111,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P168" text:outline-level="4">Risk Level</text:h>
+                                <text:h text:outline-level="4">Risk Level</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -120,8 +120,8 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P176">{risk}: {owasp}</text:p>
-<text:list xml:id="list213560496396733" text:continue-numbering="true" text:style-name="Outline">
+<text:p text:style-name="Text_20_body">{risk}: {owasp}</text:p>
+<text:list text:continue-numbering="true" text:style-name="Outline">
     <text:list-item>
         <text:list>
             <text:list-item>
@@ -129,7 +129,7 @@
                     <text:list-item>
                         <text:list>
                             <text:list-item>
-                                <text:h text:style-name="P168" text:outline-level="4">Vulnerabilities Exist On</text:h>
+                                <text:h text:outline-level="4">Vulnerabilities Exist On</text:h>
                             </text:list-item>
                         </text:list>
                     </text:list-item>
@@ -138,4 +138,5 @@
         </text:list>
     </text:list-item>
 </text:list>
-<text:p text:style-name="P171">host</text:p>
+<text:p text:style-name="Text_20_body">host</text:p>
+<text:p text:style-name="PageBreak"></text:p>
\ No newline at end of file