svg_conform 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (335) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +15 -0
  3. data/.github/workflows/release.yml +23 -0
  4. data/.github/workflows/svgcheck-compatibility.yml +135 -0
  5. data/.gitignore +12 -0
  6. data/.rspec +3 -0
  7. data/.rubocop.yml +13 -0
  8. data/.rubocop_todo.yml +183 -0
  9. data/CODE_OF_CONDUCT.md +132 -0
  10. data/Gemfile +14 -0
  11. data/README.adoc +1384 -0
  12. data/Rakefile +15 -0
  13. data/config/profiles/base.yml +34 -0
  14. data/config/profiles/lucid_fix.yml +37 -0
  15. data/config/profiles/metanorma.yml +212 -0
  16. data/config/profiles/no_external_css.yml +20 -0
  17. data/config/profiles/svg_1_2_rfc.yml +284 -0
  18. data/config/profiles/svg_1_2_rfc_with_rdf.yml +145 -0
  19. data/config/svgcheck_mapping.yml +180 -0
  20. data/docs/profiles.adoc +547 -0
  21. data/docs/rdf_metadata_support.adoc +212 -0
  22. data/docs/remediation.adoc +732 -0
  23. data/docs/requirements.adoc +709 -0
  24. data/examples/demo.rb +116 -0
  25. data/examples/requirements_demo.rb +240 -0
  26. data/exe/svg_conform +7 -0
  27. data/lib/svg_conform/batch_report.rb +70 -0
  28. data/lib/svg_conform/cli.rb +107 -0
  29. data/lib/svg_conform/commands/check.rb +390 -0
  30. data/lib/svg_conform/commands/profiles.rb +118 -0
  31. data/lib/svg_conform/commands/svgcheck.rb +90 -0
  32. data/lib/svg_conform/commands/svgcheck_compare.rb +92 -0
  33. data/lib/svg_conform/commands/svgcheck_compatibility.rb +43 -0
  34. data/lib/svg_conform/commands/svgcheck_generate.rb +262 -0
  35. data/lib/svg_conform/compatibility/analysis_context.rb +68 -0
  36. data/lib/svg_conform/compatibility/comparison_result.rb +147 -0
  37. data/lib/svg_conform/compatibility/compatibility_analyzer.rb +85 -0
  38. data/lib/svg_conform/compatibility/file_processor.rb +109 -0
  39. data/lib/svg_conform/compatibility/pattern_discovery.rb +319 -0
  40. data/lib/svg_conform/compatibility/report_formatter.rb +359 -0
  41. data/lib/svg_conform/compatibility/svg_analysis_engine.rb +316 -0
  42. data/lib/svg_conform/compatibility/validity_analysis.rb +252 -0
  43. data/lib/svg_conform/compatibility/xml_analysis_engine.rb +198 -0
  44. data/lib/svg_conform/compatibility_analyzer.rb +285 -0
  45. data/lib/svg_conform/conformance_report.rb +267 -0
  46. data/lib/svg_conform/constants.rb +199 -0
  47. data/lib/svg_conform/css_color.rb +262 -0
  48. data/lib/svg_conform/document.rb +203 -0
  49. data/lib/svg_conform/external_checkers/svgcheck/compatibility_engine.rb +166 -0
  50. data/lib/svg_conform/external_checkers/svgcheck/output_generator.rb +101 -0
  51. data/lib/svg_conform/external_checkers/svgcheck/parser.rb +200 -0
  52. data/lib/svg_conform/external_checkers/svgcheck/report_comparator.rb +175 -0
  53. data/lib/svg_conform/external_checkers/svgcheck/report_generator.rb +82 -0
  54. data/lib/svg_conform/external_checkers/svgcheck/validation_pipeline.rb +249 -0
  55. data/lib/svg_conform/external_checkers/svgcheck.rb +56 -0
  56. data/lib/svg_conform/external_checkers.rb +34 -0
  57. data/lib/svg_conform/fixer.rb +56 -0
  58. data/lib/svg_conform/profile.rb +164 -0
  59. data/lib/svg_conform/profiles.rb +60 -0
  60. data/lib/svg_conform/remediation_engine.rb +92 -0
  61. data/lib/svg_conform/remediation_result.rb +36 -0
  62. data/lib/svg_conform/remediation_runner.rb +225 -0
  63. data/lib/svg_conform/remediations/base_remediation.rb +165 -0
  64. data/lib/svg_conform/remediations/color_remediation.rb +226 -0
  65. data/lib/svg_conform/remediations/font_embedding_remediation.rb +145 -0
  66. data/lib/svg_conform/remediations/font_remediation.rb +122 -0
  67. data/lib/svg_conform/remediations/image_embedding_remediation.rb +154 -0
  68. data/lib/svg_conform/remediations/invalid_id_references_remediation.rb +129 -0
  69. data/lib/svg_conform/remediations/namespace_attribute_remediation.rb +244 -0
  70. data/lib/svg_conform/remediations/namespace_remediation.rb +151 -0
  71. data/lib/svg_conform/remediations/no_external_css_remediation.rb +192 -0
  72. data/lib/svg_conform/remediations/style_promotion_remediation.rb +93 -0
  73. data/lib/svg_conform/remediations/viewbox_remediation.rb +127 -0
  74. data/lib/svg_conform/remediations.rb +40 -0
  75. data/lib/svg_conform/report_comparator.rb +772 -0
  76. data/lib/svg_conform/requirements/allowed_elements_requirement.rb +367 -0
  77. data/lib/svg_conform/requirements/base_requirement.rb +98 -0
  78. data/lib/svg_conform/requirements/color_restrictions_requirement.rb +126 -0
  79. data/lib/svg_conform/requirements/element_requirement_config.rb +75 -0
  80. data/lib/svg_conform/requirements/font_family_requirement.rb +133 -0
  81. data/lib/svg_conform/requirements/forbidden_content_requirement.rb +60 -0
  82. data/lib/svg_conform/requirements/id_reference_requirement.rb +133 -0
  83. data/lib/svg_conform/requirements/invalid_id_references_requirement.rb +132 -0
  84. data/lib/svg_conform/requirements/link_validation_requirement.rb +55 -0
  85. data/lib/svg_conform/requirements/namespace_attributes_requirement.rb +211 -0
  86. data/lib/svg_conform/requirements/namespace_requirement.rb +294 -0
  87. data/lib/svg_conform/requirements/no_external_css_requirement.rb +132 -0
  88. data/lib/svg_conform/requirements/no_external_fonts_requirement.rb +121 -0
  89. data/lib/svg_conform/requirements/no_external_images_requirement.rb +91 -0
  90. data/lib/svg_conform/requirements/style_promotion_requirement.rb +72 -0
  91. data/lib/svg_conform/requirements/style_requirement.rb +226 -0
  92. data/lib/svg_conform/requirements/viewbox_required_requirement.rb +96 -0
  93. data/lib/svg_conform/requirements.rb +49 -0
  94. data/lib/svg_conform/semantic_comparator.rb +829 -0
  95. data/lib/svg_conform/validation_context.rb +408 -0
  96. data/lib/svg_conform/validation_result.rb +146 -0
  97. data/lib/svg_conform/validator.rb +91 -0
  98. data/lib/svg_conform/version.rb +5 -0
  99. data/lib/svg_conform.rb +68 -0
  100. data/lib/tasks/fixtures.rake +321 -0
  101. data/lib/tasks/svgcheck.rake +111 -0
  102. data/reference-docs/SVG-1.2-RFC.rnc.txt +1676 -0
  103. data/reference-docs/Scalable Vector Graphics (SVG) 1.1 (Second Edition).html +40764 -0
  104. data/reference-docs/Scalable Vector Graphics (SVG) Tiny 1.2 Specification.html +44591 -0
  105. data/reference-docs/rfc7996.txt +2971 -0
  106. data/sig/svg_conform.rbs +4 -0
  107. data/spec/fixtures/allowed_elements/inputs/basic_violations.svg +21 -0
  108. data/spec/fixtures/allowed_elements/repair/basic_violations.svg +18 -0
  109. data/spec/fixtures/color_restrictions/inputs/basic_violations.svg +23 -0
  110. data/spec/fixtures/color_restrictions/repair/basic_violations.svg +23 -0
  111. data/spec/fixtures/comprehensive/inputs/multiple_violations.svg +21 -0
  112. data/spec/fixtures/comprehensive/repair/multiple_violations.svg +16 -0
  113. data/spec/fixtures/font_family/inputs/basic_violations.svg +17 -0
  114. data/spec/fixtures/font_family/repair/basic_violations.svg +17 -0
  115. data/spec/fixtures/forbidden_content/inputs/basic_violations.svg +27 -0
  116. data/spec/fixtures/forbidden_content/repair/basic_violations.svg +19 -0
  117. data/spec/fixtures/id_reference/inputs/basic_violations.svg +17 -0
  118. data/spec/fixtures/id_reference/repair/basic_violations.svg +15 -0
  119. data/spec/fixtures/link_validation/inputs/basic_violations.svg +20 -0
  120. data/spec/fixtures/link_validation/repair/basic_violations.svg +16 -0
  121. data/spec/fixtures/lucid/inputs/simple.svg +67 -0
  122. data/spec/fixtures/lucid/repair/simple.svg +63 -0
  123. data/spec/fixtures/namespace/inputs/basic_violations.svg +20 -0
  124. data/spec/fixtures/namespace/repair/basic_violations.svg +17 -0
  125. data/spec/fixtures/namespace_attributes/inputs/basic_violations.svg +16 -0
  126. data/spec/fixtures/namespace_attributes/repair/basic_violations.svg +15 -0
  127. data/spec/fixtures/no_external_css/inputs/basic_violations.svg +20 -0
  128. data/spec/fixtures/no_external_css/repair/basic_violations.svg +18 -0
  129. data/spec/fixtures/style/inputs/basic_violations.svg +22 -0
  130. data/spec/fixtures/style/repair/basic_violations.svg +22 -0
  131. data/spec/fixtures/style_promotion/inputs/basic_test.svg +15 -0
  132. data/spec/fixtures/style_promotion/repair/basic_test.svg +15 -0
  133. data/spec/fixtures/svg_1_2_rfc/inputs/allowed_elements_violations.svg +18 -0
  134. data/spec/fixtures/svg_1_2_rfc/inputs/color_restrictions_violations.svg +23 -0
  135. data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.code +1 -0
  136. data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.err +0 -0
  137. data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.out +23 -0
  138. data/spec/fixtures/svgcheck/check/IETF-test.svg.code +1 -0
  139. data/spec/fixtures/svgcheck/check/IETF-test.svg.err +0 -0
  140. data/spec/fixtures/svgcheck/check/IETF-test.svg.out +20 -0
  141. data/spec/fixtures/svgcheck/check/circle.svg.code +1 -0
  142. data/spec/fixtures/svgcheck/check/circle.svg.err +0 -0
  143. data/spec/fixtures/svgcheck/check/circle.svg.out +2 -0
  144. data/spec/fixtures/svgcheck/check/colors.svg.code +1 -0
  145. data/spec/fixtures/svgcheck/check/colors.svg.err +0 -0
  146. data/spec/fixtures/svgcheck/check/colors.svg.out +13 -0
  147. data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.code +1 -0
  148. data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.err +0 -0
  149. data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.out +76 -0
  150. data/spec/fixtures/svgcheck/check/example-dot.svg.code +1 -0
  151. data/spec/fixtures/svgcheck/check/example-dot.svg.err +0 -0
  152. data/spec/fixtures/svgcheck/check/example-dot.svg.out +11 -0
  153. data/spec/fixtures/svgcheck/check/full-tiny.svg.code +1 -0
  154. data/spec/fixtures/svgcheck/check/full-tiny.svg.err +0 -0
  155. data/spec/fixtures/svgcheck/check/full-tiny.svg.out +5835 -0
  156. data/spec/fixtures/svgcheck/check/good.svg.code +1 -0
  157. data/spec/fixtures/svgcheck/check/good.svg.err +0 -0
  158. data/spec/fixtures/svgcheck/check/good.svg.out +1 -0
  159. data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.code +1 -0
  160. data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.err +0 -0
  161. data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.out +5 -0
  162. data/spec/fixtures/svgcheck/check/malformed.svg.code +1 -0
  163. data/spec/fixtures/svgcheck/check/malformed.svg.err +0 -0
  164. data/spec/fixtures/svgcheck/check/malformed.svg.out +8 -0
  165. data/spec/fixtures/svgcheck/check/rfc-svg.svg.code +1 -0
  166. data/spec/fixtures/svgcheck/check/rfc-svg.svg.err +0 -0
  167. data/spec/fixtures/svgcheck/check/rfc-svg.svg.out +1 -0
  168. data/spec/fixtures/svgcheck/check/rfc.xml.code +1 -0
  169. data/spec/fixtures/svgcheck/check/rfc.xml.err +0 -0
  170. data/spec/fixtures/svgcheck/check/rfc.xml.out +2 -0
  171. data/spec/fixtures/svgcheck/check/rgb.svg.code +1 -0
  172. data/spec/fixtures/svgcheck/check/rgb.svg.err +0 -0
  173. data/spec/fixtures/svgcheck/check/rgb.svg.out +9 -0
  174. data/spec/fixtures/svgcheck/check/svg-wordle.svg.code +1 -0
  175. data/spec/fixtures/svgcheck/check/svg-wordle.svg.err +0 -0
  176. data/spec/fixtures/svgcheck/check/svg-wordle.svg.out +508 -0
  177. data/spec/fixtures/svgcheck/check/threshold.svg.code +1 -0
  178. data/spec/fixtures/svgcheck/check/threshold.svg.err +0 -0
  179. data/spec/fixtures/svgcheck/check/threshold.svg.out +20 -0
  180. data/spec/fixtures/svgcheck/check/utf8.svg.code +1 -0
  181. data/spec/fixtures/svgcheck/check/utf8.svg.err +0 -0
  182. data/spec/fixtures/svgcheck/check/utf8.svg.out +162 -0
  183. data/spec/fixtures/svgcheck/check/viewBox-both.svg.code +1 -0
  184. data/spec/fixtures/svgcheck/check/viewBox-both.svg.err +0 -0
  185. data/spec/fixtures/svgcheck/check/viewBox-both.svg.out +4 -0
  186. data/spec/fixtures/svgcheck/check/viewBox-height.svg.code +1 -0
  187. data/spec/fixtures/svgcheck/check/viewBox-height.svg.err +0 -0
  188. data/spec/fixtures/svgcheck/check/viewBox-height.svg.out +3 -0
  189. data/spec/fixtures/svgcheck/check/viewBox-none.svg.code +1 -0
  190. data/spec/fixtures/svgcheck/check/viewBox-none.svg.err +0 -0
  191. data/spec/fixtures/svgcheck/check/viewBox-none.svg.out +3 -0
  192. data/spec/fixtures/svgcheck/check/viewBox-width.svg.code +1 -0
  193. data/spec/fixtures/svgcheck/check/viewBox-width.svg.err +0 -0
  194. data/spec/fixtures/svgcheck/check/viewBox-width.svg.out +3 -0
  195. data/spec/fixtures/svgcheck/inputs/DrawBerry-sample-2.svg +28 -0
  196. data/spec/fixtures/svgcheck/inputs/IETF-test.svg +28 -0
  197. data/spec/fixtures/svgcheck/inputs/circle.svg +3 -0
  198. data/spec/fixtures/svgcheck/inputs/colors.svg +18 -0
  199. data/spec/fixtures/svgcheck/inputs/dia-sample-svg.svg +47 -0
  200. data/spec/fixtures/svgcheck/inputs/example-dot.svg +75 -0
  201. data/spec/fixtures/svgcheck/inputs/full-tiny.svg +16194 -0
  202. data/spec/fixtures/svgcheck/inputs/good.svg +19 -0
  203. data/spec/fixtures/svgcheck/inputs/httpbis-proxy20-fig6.svg +2 -0
  204. data/spec/fixtures/svgcheck/inputs/malformed.svg +11 -0
  205. data/spec/fixtures/svgcheck/inputs/rfc-svg.svg +1028 -0
  206. data/spec/fixtures/svgcheck/inputs/rfc.xml +37 -0
  207. data/spec/fixtures/svgcheck/inputs/rgb.svg +9 -0
  208. data/spec/fixtures/svgcheck/inputs/svg-wordle.svg +330 -0
  209. data/spec/fixtures/svgcheck/inputs/threshold.svg +26 -0
  210. data/spec/fixtures/svgcheck/inputs/utf8.svg +448 -0
  211. data/spec/fixtures/svgcheck/inputs/viewBox-both.svg +3 -0
  212. data/spec/fixtures/svgcheck/inputs/viewBox-height.svg +3 -0
  213. data/spec/fixtures/svgcheck/inputs/viewBox-none.svg +3 -0
  214. data/spec/fixtures/svgcheck/inputs/viewBox-width.svg +3 -0
  215. data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.code +1 -0
  216. data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.err +0 -0
  217. data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.file +0 -0
  218. data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.out +23 -0
  219. data/spec/fixtures/svgcheck/repair/IETF-test.svg.code +1 -0
  220. data/spec/fixtures/svgcheck/repair/IETF-test.svg.err +0 -0
  221. data/spec/fixtures/svgcheck/repair/IETF-test.svg.file +29 -0
  222. data/spec/fixtures/svgcheck/repair/IETF-test.svg.out +20 -0
  223. data/spec/fixtures/svgcheck/repair/circle.svg.code +1 -0
  224. data/spec/fixtures/svgcheck/repair/circle.svg.err +0 -0
  225. data/spec/fixtures/svgcheck/repair/circle.svg.file +4 -0
  226. data/spec/fixtures/svgcheck/repair/circle.svg.out +2 -0
  227. data/spec/fixtures/svgcheck/repair/colors.svg.code +1 -0
  228. data/spec/fixtures/svgcheck/repair/colors.svg.err +0 -0
  229. data/spec/fixtures/svgcheck/repair/colors.svg.file +19 -0
  230. data/spec/fixtures/svgcheck/repair/colors.svg.out +13 -0
  231. data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.code +1 -0
  232. data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.err +0 -0
  233. data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.file +47 -0
  234. data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.out +76 -0
  235. data/spec/fixtures/svgcheck/repair/example-dot.svg.code +1 -0
  236. data/spec/fixtures/svgcheck/repair/example-dot.svg.err +0 -0
  237. data/spec/fixtures/svgcheck/repair/example-dot.svg.file +69 -0
  238. data/spec/fixtures/svgcheck/repair/example-dot.svg.out +11 -0
  239. data/spec/fixtures/svgcheck/repair/good.svg.code +1 -0
  240. data/spec/fixtures/svgcheck/repair/good.svg.err +0 -0
  241. data/spec/fixtures/svgcheck/repair/good.svg.file +0 -0
  242. data/spec/fixtures/svgcheck/repair/good.svg.out +1 -0
  243. data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.code +1 -0
  244. data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.err +0 -0
  245. data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.file +73 -0
  246. data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.out +5 -0
  247. data/spec/fixtures/svgcheck/repair/malformed.svg.code +1 -0
  248. data/spec/fixtures/svgcheck/repair/malformed.svg.err +0 -0
  249. data/spec/fixtures/svgcheck/repair/malformed.svg.file +9 -0
  250. data/spec/fixtures/svgcheck/repair/malformed.svg.out +8 -0
  251. data/spec/fixtures/svgcheck/repair/rfc-svg.svg.code +1 -0
  252. data/spec/fixtures/svgcheck/repair/rfc-svg.svg.err +0 -0
  253. data/spec/fixtures/svgcheck/repair/rfc-svg.svg.file +0 -0
  254. data/spec/fixtures/svgcheck/repair/rfc-svg.svg.out +1 -0
  255. data/spec/fixtures/svgcheck/repair/rfc.xml.code +1 -0
  256. data/spec/fixtures/svgcheck/repair/rfc.xml.err +0 -0
  257. data/spec/fixtures/svgcheck/repair/rfc.xml.file +37 -0
  258. data/spec/fixtures/svgcheck/repair/rfc.xml.out +2 -0
  259. data/spec/fixtures/svgcheck/repair/rgb.svg.code +1 -0
  260. data/spec/fixtures/svgcheck/repair/rgb.svg.err +0 -0
  261. data/spec/fixtures/svgcheck/repair/rgb.svg.file +10 -0
  262. data/spec/fixtures/svgcheck/repair/rgb.svg.out +9 -0
  263. data/spec/fixtures/svgcheck/repair/svg-wordle.svg.code +1 -0
  264. data/spec/fixtures/svgcheck/repair/svg-wordle.svg.err +0 -0
  265. data/spec/fixtures/svgcheck/repair/svg-wordle.svg.file +112 -0
  266. data/spec/fixtures/svgcheck/repair/svg-wordle.svg.out +508 -0
  267. data/spec/fixtures/svgcheck/repair/threshold.svg.code +1 -0
  268. data/spec/fixtures/svgcheck/repair/threshold.svg.err +0 -0
  269. data/spec/fixtures/svgcheck/repair/threshold.svg.file +27 -0
  270. data/spec/fixtures/svgcheck/repair/threshold.svg.out +20 -0
  271. data/spec/fixtures/svgcheck/repair/utf8.svg.code +1 -0
  272. data/spec/fixtures/svgcheck/repair/utf8.svg.err +0 -0
  273. data/spec/fixtures/svgcheck/repair/utf8.svg.file +381 -0
  274. data/spec/fixtures/svgcheck/repair/utf8.svg.out +162 -0
  275. data/spec/fixtures/svgcheck/repair/viewBox-both.svg.code +1 -0
  276. data/spec/fixtures/svgcheck/repair/viewBox-both.svg.err +0 -0
  277. data/spec/fixtures/svgcheck/repair/viewBox-both.svg.file +4 -0
  278. data/spec/fixtures/svgcheck/repair/viewBox-both.svg.out +4 -0
  279. data/spec/fixtures/svgcheck/repair/viewBox-height.svg.code +1 -0
  280. data/spec/fixtures/svgcheck/repair/viewBox-height.svg.err +0 -0
  281. data/spec/fixtures/svgcheck/repair/viewBox-height.svg.file +4 -0
  282. data/spec/fixtures/svgcheck/repair/viewBox-height.svg.out +3 -0
  283. data/spec/fixtures/svgcheck/repair/viewBox-none.svg.code +1 -0
  284. data/spec/fixtures/svgcheck/repair/viewBox-none.svg.err +0 -0
  285. data/spec/fixtures/svgcheck/repair/viewBox-none.svg.file +4 -0
  286. data/spec/fixtures/svgcheck/repair/viewBox-none.svg.out +3 -0
  287. data/spec/fixtures/svgcheck/repair/viewBox-width.svg.code +1 -0
  288. data/spec/fixtures/svgcheck/repair/viewBox-width.svg.err +0 -0
  289. data/spec/fixtures/svgcheck/repair/viewBox-width.svg.file +4 -0
  290. data/spec/fixtures/svgcheck/repair/viewBox-width.svg.out +3 -0
  291. data/spec/fixtures/viewbox_required/inputs/missing_viewbox.svg +10 -0
  292. data/spec/fixtures/viewbox_required/repair/missing_viewbox.svg +10 -0
  293. data/spec/spec_helper.rb +16 -0
  294. data/spec/svg_conform/batch_report_spec.rb +99 -0
  295. data/spec/svg_conform/commands/check_command_spec.rb +90 -0
  296. data/spec/svg_conform/commands/profiles_command_spec.rb +20 -0
  297. data/spec/svg_conform/commands/svgcheck_compare_command_spec.rb +13 -0
  298. data/spec/svg_conform/commands/svgcheck_compatibility_command_spec.rb +13 -0
  299. data/spec/svg_conform/commands/svgcheck_generate_command_spec.rb +14 -0
  300. data/spec/svg_conform/profiles/base_profile_spec.rb +42 -0
  301. data/spec/svg_conform/profiles/lucid_fix_profile_spec.rb +46 -0
  302. data/spec/svg_conform/profiles/lucid_profile_spec.rb +84 -0
  303. data/spec/svg_conform/profiles/metanorma_profile_spec.rb +62 -0
  304. data/spec/svg_conform/profiles/no_external_css_profile_spec.rb +66 -0
  305. data/spec/svg_conform/profiles/svg_1_2_rfc_profile_spec.rb +200 -0
  306. data/spec/svg_conform/profiles/svg_1_2_rfc_with_rdf_profile_spec.rb +81 -0
  307. data/spec/svg_conform/remediations/color_remediation_spec.rb +95 -0
  308. data/spec/svg_conform/remediations/font_embedding_remediation_spec.rb +20 -0
  309. data/spec/svg_conform/remediations/font_remediation_spec.rb +95 -0
  310. data/spec/svg_conform/remediations/image_embedding_remediation_spec.rb +20 -0
  311. data/spec/svg_conform/remediations/invalid_id_references_remediation_spec.rb +97 -0
  312. data/spec/svg_conform/remediations/namespace_attribute_remediation_spec.rb +97 -0
  313. data/spec/svg_conform/remediations/namespace_remediation_spec.rb +95 -0
  314. data/spec/svg_conform/remediations/no_external_css_remediation_spec.rb +97 -0
  315. data/spec/svg_conform/remediations/style_promotion_remediation_spec.rb +97 -0
  316. data/spec/svg_conform/remediations/viewbox_remediation_spec.rb +95 -0
  317. data/spec/svg_conform/requirements/allowed_elements_requirement_spec.rb +118 -0
  318. data/spec/svg_conform/requirements/color_restrictions_requirement_spec.rb +168 -0
  319. data/spec/svg_conform/requirements/font_family_requirement_spec.rb +188 -0
  320. data/spec/svg_conform/requirements/forbidden_content_requirement_spec.rb +195 -0
  321. data/spec/svg_conform/requirements/id_reference_requirement_spec.rb +78 -0
  322. data/spec/svg_conform/requirements/invalid_id_references_requirement_spec.rb +78 -0
  323. data/spec/svg_conform/requirements/link_validation_requirement_spec.rb +78 -0
  324. data/spec/svg_conform/requirements/namespace_attributes_requirement_spec.rb +86 -0
  325. data/spec/svg_conform/requirements/namespace_requirement_spec.rb +184 -0
  326. data/spec/svg_conform/requirements/no_external_css_requirement_spec.rb +78 -0
  327. data/spec/svg_conform/requirements/no_external_fonts_requirement_spec.rb +20 -0
  328. data/spec/svg_conform/requirements/no_external_images_requirement_spec.rb +20 -0
  329. data/spec/svg_conform/requirements/style_promotion_requirement_spec.rb +78 -0
  330. data/spec/svg_conform/requirements/style_requirement_spec.rb +76 -0
  331. data/spec/svg_conform/requirements/viewbox_required_requirement_spec.rb +165 -0
  332. data/spec/svg_conform_spec.rb +32 -0
  333. data/spec/svgcheck_compatibility_spec.rb +355 -0
  334. data/svg_conform.gemspec +35 -0
  335. metadata +436 -0
@@ -0,0 +1,1028 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg:svg fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME0" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" width="string value" height="string value" preserveAspectRatio="string value" viewBox="0 0 100.0 100.0" version="1.0" baseProfile="none" snapshotTime="none" xmlns:svg="http://www.w3.org/2000/svg">
3
+ <svg:desc id="NCNAME1" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
4
+ <svg:title id="NCNAME2" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
5
+ <svg:path id="NCNAME3" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" d="string value" pathLength="string value">
6
+ <svg:desc xml:id="NCNAME4" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
7
+ <svg:title xml:id="NCNAME5" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
8
+ </svg:path>
9
+ <svg:rect id="NCNAME6" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
10
+ <svg:desc id="NCNAME7" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
11
+ <svg:title id="NCNAME8" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
12
+ </svg:rect>
13
+ <svg:circle id="NCNAME9" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" cx="string value" cy="string value" r="string value">
14
+ <svg:desc xml:id="NCNAME10" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
15
+ <svg:title xml:id="NCNAME11" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
16
+ </svg:circle>
17
+ <svg:line id="NCNAME12" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" x1="string value" y1="string value" x2="string value" y2="string value">
18
+ <svg:desc id="NCNAME13" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
19
+ <svg:title id="NCNAME14" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
20
+ </svg:line>
21
+ <svg:ellipse id="NCNAME15" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" rx="string value" ry="string value" cx="string value" cy="string value">
22
+ <svg:desc xml:id="NCNAME16" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
23
+ <svg:title xml:id="NCNAME17" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
24
+ </svg:ellipse>
25
+ <svg:polyline id="NCNAME18" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" points="string value">
26
+ <svg:desc id="NCNAME19" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
27
+ <svg:title id="NCNAME20" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
28
+ </svg:polyline>
29
+ <svg:polygon id="NCNAME21" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" points="string value">
30
+ <svg:desc xml:id="NCNAME22" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
31
+ <svg:title xml:id="NCNAME23" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
32
+ </svg:polygon>
33
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME24" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
34
+ <svg:desc id="NCNAME25" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
35
+ <svg:title id="NCNAME26" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
36
+ </svg:solidColor>
37
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME27" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
38
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME28" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
39
+ <svg:tbreak id="NCNAME29" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" />
40
+ <svg:desc xml:id="NCNAME30" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
41
+ <svg:title xml:id="NCNAME31" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
42
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME32" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
43
+ <svg:desc>Dummy Text goes here</svg:desc>
44
+ <svg:title>Dummy Text goes here</svg:title>
45
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a id="NCNAME33" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_replace" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:tspan>
46
+ <svg:desc id="NCNAME34" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
47
+ <svg:title id="NCNAME35" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
48
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME36" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
49
+ <svg:desc xml:id="NCNAME37" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
50
+ <svg:title xml:id="NCNAME38" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
51
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME39" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
52
+ <svg:desc>Dummy Text goes here</svg:desc>
53
+ <svg:title>Dummy Text goes here</svg:title>
54
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a xml:id="NCNAME40" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_self" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:tspan>Dummy Text goes here<svg:a id="NCNAME41" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_parent" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc id="NCNAME42" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc><svg:title id="NCNAME43" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title><svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME44" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here</svg:a></svg:textArea>
55
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME45" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
56
+ <svg:desc xml:id="NCNAME46" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
57
+ <svg:title xml:id="NCNAME47" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
58
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME48" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
59
+ <svg:desc id="NCNAME49" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
60
+ <svg:title id="NCNAME50" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
61
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME51" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
62
+ <svg:desc>Dummy Text goes here</svg:desc>
63
+ <svg:title>Dummy Text goes here</svg:title>
64
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a xml:id="NCNAME52" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_top" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:tspan>Dummy Text goes here<svg:a id="NCNAME53" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_blank" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc xml:id="NCNAME54" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc><svg:title xml:id="NCNAME55" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:title><svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME56" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here</svg:a></svg:text>
65
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME57" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
66
+ <svg:desc id="NCNAME58" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
67
+ <svg:title id="NCNAME59" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
68
+ <svg:path xml:id="NCNAME60" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" d="string value" pathLength="string value">
69
+ <svg:desc xml:id="NCNAME61" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
70
+ <svg:title xml:id="NCNAME62" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
71
+ </svg:path>
72
+ <svg:rect xml:id="NCNAME63" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
73
+ <svg:desc id="NCNAME64" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
74
+ <svg:title id="NCNAME65" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
75
+ </svg:rect>
76
+ <svg:circle xml:id="NCNAME66" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" cx="string value" cy="string value" r="string value">
77
+ <svg:desc xml:id="NCNAME67" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
78
+ <svg:title xml:id="NCNAME68" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
79
+ </svg:circle>
80
+ <svg:line xml:id="NCNAME69" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" x1="string value" y1="string value" x2="string value" y2="string value">
81
+ <svg:desc id="NCNAME70" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
82
+ <svg:title id="NCNAME71" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
83
+ </svg:line>
84
+ <svg:ellipse xml:id="NCNAME72" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" rx="string value" ry="string value" cx="string value" cy="string value">
85
+ <svg:desc xml:id="NCNAME73" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
86
+ <svg:title xml:id="NCNAME74" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
87
+ </svg:ellipse>
88
+ <svg:polyline xml:id="NCNAME75" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" points="string value">
89
+ <svg:desc id="NCNAME76" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
90
+ <svg:title id="NCNAME77" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
91
+ </svg:polyline>
92
+ <svg:polygon xml:id="NCNAME78" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" points="string value">
93
+ <svg:desc xml:id="NCNAME79" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
94
+ <svg:title xml:id="NCNAME80" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
95
+ </svg:polygon>
96
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME81" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
97
+ <svg:desc id="NCNAME82" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
98
+ <svg:title id="NCNAME83" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
99
+ </svg:solidColor>
100
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME84" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
101
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME85" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
102
+ <svg:tbreak />
103
+ <svg:desc>Dummy Text goes here</svg:desc>
104
+ <svg:title>Dummy Text goes here</svg:title>
105
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>
106
+ <svg:desc xml:id="NCNAME86" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
107
+ <svg:title xml:id="NCNAME87" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
108
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME88" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
109
+ <svg:desc>Dummy Text goes here</svg:desc>
110
+ <svg:title>Dummy Text goes here</svg:title>
111
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a xml:id="NCNAME89" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="NAME" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:textArea>
112
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#000000" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME90" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
113
+ <svg:desc id="NCNAME91" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
114
+ <svg:title id="NCNAME92" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
115
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME93" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
116
+ <svg:desc>Dummy Text goes here</svg:desc>
117
+ <svg:title>Dummy Text goes here</svg:title>
118
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a id="NCNAME94" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#ffffff" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_replace" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:text>
119
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME95" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
120
+ <svg:desc xml:id="NCNAME96" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
121
+ <svg:title xml:id="NCNAME97" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="black" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
122
+ <svg:path id="NCNAME98" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" d="string value" pathLength="string value">
123
+ <svg:desc>Dummy Text goes here</svg:desc>
124
+ <svg:title>Dummy Text goes here</svg:title>
125
+ </svg:path>
126
+ <svg:rect id="NCNAME99" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
127
+ <svg:desc>Dummy Text goes here</svg:desc>
128
+ <svg:title>Dummy Text goes here</svg:title>
129
+ </svg:rect>
130
+ <svg:circle id="NCNAME100" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" cx="string value" cy="string value" r="string value">
131
+ <svg:desc>Dummy Text goes here</svg:desc>
132
+ <svg:title>Dummy Text goes here</svg:title>
133
+ </svg:circle>
134
+ <svg:line id="NCNAME101" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" x1="string value" y1="string value" x2="string value" y2="string value">
135
+ <svg:desc>Dummy Text goes here</svg:desc>
136
+ <svg:title>Dummy Text goes here</svg:title>
137
+ </svg:line>
138
+ <svg:ellipse id="NCNAME102" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" rx="string value" ry="string value" cx="string value" cy="string value">
139
+ <svg:desc>Dummy Text goes here</svg:desc>
140
+ <svg:title>Dummy Text goes here</svg:title>
141
+ </svg:ellipse>
142
+ <svg:polyline id="NCNAME103" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" points="string value">
143
+ <svg:desc>Dummy Text goes here</svg:desc>
144
+ <svg:title>Dummy Text goes here</svg:title>
145
+ </svg:polyline>
146
+ <svg:polygon id="NCNAME104" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" points="string value">
147
+ <svg:desc>Dummy Text goes here</svg:desc>
148
+ <svg:title>Dummy Text goes here</svg:title>
149
+ </svg:polygon>
150
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME105" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
151
+ <svg:desc>Dummy Text goes here</svg:desc>
152
+ <svg:title>Dummy Text goes here</svg:title>
153
+ </svg:solidColor>
154
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME106" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
155
+ <svg:tspan />
156
+ <svg:desc>Dummy Text goes here</svg:desc>
157
+ <svg:title>Dummy Text goes here</svg:title>
158
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
159
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME107" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
160
+ <svg:desc>Dummy Text goes here</svg:desc>
161
+ <svg:title>Dummy Text goes here</svg:title>
162
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
163
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME108" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
164
+ <svg:desc>Dummy Text goes here</svg:desc>
165
+ <svg:title>Dummy Text goes here</svg:title>
166
+ <svg:path />
167
+ <svg:rect />
168
+ <svg:circle />
169
+ <svg:line />
170
+ <svg:ellipse />
171
+ <svg:polyline />
172
+ <svg:polygon />
173
+ <svg:solidColor />
174
+ <svg:textArea />
175
+ <svg:text />
176
+ <svg:g />
177
+ <svg:defs />
178
+ <svg:use />
179
+ <svg:a />
180
+ </svg:g>
181
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME109" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
182
+ <svg:desc>Dummy Text goes here</svg:desc>
183
+ <svg:title>Dummy Text goes here</svg:title>
184
+ <svg:path />
185
+ <svg:rect />
186
+ <svg:circle />
187
+ <svg:line />
188
+ <svg:ellipse />
189
+ <svg:polyline />
190
+ <svg:polygon />
191
+ <svg:solidColor />
192
+ <svg:textArea />
193
+ <svg:text />
194
+ <svg:g />
195
+ <svg:defs />
196
+ <svg:use />
197
+ <svg:a />
198
+ </svg:defs>
199
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" id="NCNAME110" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
200
+ <svg:desc>Dummy Text goes here</svg:desc>
201
+ <svg:title>Dummy Text goes here</svg:title>
202
+ </svg:use>
203
+ <svg:a id="NCNAME111" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="auto" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="normal" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_replace" xmlns:xlink="http://www.w3.org/1999/xlink">
204
+ <svg:desc>Dummy Text goes here</svg:desc>
205
+ <svg:title>Dummy Text goes here</svg:title>
206
+ <svg:path />
207
+ <svg:rect />
208
+ <svg:circle />
209
+ <svg:line />
210
+ <svg:ellipse />
211
+ <svg:polyline />
212
+ <svg:polygon />
213
+ <svg:solidColor />
214
+ <svg:textArea />
215
+ <svg:text />
216
+ <svg:g />
217
+ <svg:defs />
218
+ <svg:use />
219
+ </svg:a>
220
+ </svg:g>
221
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="nonzero" stroke="#ffffff" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME112" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
222
+ <svg:desc id="NCNAME113" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
223
+ <svg:title id="NCNAME114" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
224
+ <svg:path xml:id="NCNAME115" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" d="string value" pathLength="string value">
225
+ <svg:desc>Dummy Text goes here</svg:desc>
226
+ <svg:title>Dummy Text goes here</svg:title>
227
+ </svg:path>
228
+ <svg:rect xml:id="NCNAME116" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
229
+ <svg:desc>Dummy Text goes here</svg:desc>
230
+ <svg:title>Dummy Text goes here</svg:title>
231
+ </svg:rect>
232
+ <svg:circle xml:id="NCNAME117" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" cx="string value" cy="string value" r="string value">
233
+ <svg:desc>Dummy Text goes here</svg:desc>
234
+ <svg:title>Dummy Text goes here</svg:title>
235
+ </svg:circle>
236
+ <svg:line xml:id="NCNAME118" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" x1="string value" y1="string value" x2="string value" y2="string value">
237
+ <svg:desc>Dummy Text goes here</svg:desc>
238
+ <svg:title>Dummy Text goes here</svg:title>
239
+ </svg:line>
240
+ <svg:ellipse xml:id="NCNAME119" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" rx="string value" ry="string value" cx="string value" cy="string value">
241
+ <svg:desc>Dummy Text goes here</svg:desc>
242
+ <svg:title>Dummy Text goes here</svg:title>
243
+ </svg:ellipse>
244
+ <svg:polyline xml:id="NCNAME120" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="black" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" points="string value">
245
+ <svg:desc>Dummy Text goes here</svg:desc>
246
+ <svg:title>Dummy Text goes here</svg:title>
247
+ </svg:polyline>
248
+ <svg:polygon xml:id="NCNAME121" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" points="string value">
249
+ <svg:desc>Dummy Text goes here</svg:desc>
250
+ <svg:title>Dummy Text goes here</svg:title>
251
+ </svg:polygon>
252
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME122" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
253
+ <svg:desc>Dummy Text goes here</svg:desc>
254
+ <svg:title>Dummy Text goes here</svg:title>
255
+ </svg:solidColor>
256
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME123" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
257
+ <svg:tspan />
258
+ <svg:desc>Dummy Text goes here</svg:desc>
259
+ <svg:title>Dummy Text goes here</svg:title>
260
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
261
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME124" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
262
+ <svg:desc>Dummy Text goes here</svg:desc>
263
+ <svg:title>Dummy Text goes here</svg:title>
264
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
265
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME125" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
266
+ <svg:desc>Dummy Text goes here</svg:desc>
267
+ <svg:title>Dummy Text goes here</svg:title>
268
+ <svg:path />
269
+ <svg:rect />
270
+ <svg:circle />
271
+ <svg:line />
272
+ <svg:ellipse />
273
+ <svg:polyline />
274
+ <svg:polygon />
275
+ <svg:solidColor />
276
+ <svg:textArea />
277
+ <svg:text />
278
+ <svg:g />
279
+ <svg:defs />
280
+ <svg:use />
281
+ <svg:a />
282
+ </svg:g>
283
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME126" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
284
+ <svg:desc>Dummy Text goes here</svg:desc>
285
+ <svg:title>Dummy Text goes here</svg:title>
286
+ <svg:path />
287
+ <svg:rect />
288
+ <svg:circle />
289
+ <svg:line />
290
+ <svg:ellipse />
291
+ <svg:polyline />
292
+ <svg:polygon />
293
+ <svg:solidColor />
294
+ <svg:textArea />
295
+ <svg:text />
296
+ <svg:g />
297
+ <svg:defs />
298
+ <svg:use />
299
+ <svg:a />
300
+ </svg:defs>
301
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" xml:id="NCNAME127" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
302
+ <svg:desc>Dummy Text goes here</svg:desc>
303
+ <svg:title>Dummy Text goes here</svg:title>
304
+ </svg:use>
305
+ <svg:a xml:id="NCNAME128" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="before" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="small-caps" font-weight="bold" text-anchor="middle" text-align="center" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_self" xmlns:xlink="http://www.w3.org/1999/xlink">
306
+ <svg:desc>Dummy Text goes here</svg:desc>
307
+ <svg:title>Dummy Text goes here</svg:title>
308
+ <svg:path />
309
+ <svg:rect />
310
+ <svg:circle />
311
+ <svg:line />
312
+ <svg:ellipse />
313
+ <svg:polyline />
314
+ <svg:polygon />
315
+ <svg:solidColor />
316
+ <svg:textArea />
317
+ <svg:text />
318
+ <svg:g />
319
+ <svg:defs />
320
+ <svg:use />
321
+ </svg:a>
322
+ </svg:defs>
323
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME129" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
324
+ <svg:desc xml:id="NCNAME130" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
325
+ <svg:title xml:id="NCNAME131" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
326
+ </svg:use>
327
+ <svg:a id="NCNAME132" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_parent" xmlns:xlink="http://www.w3.org/1999/xlink">
328
+ <svg:desc id="NCNAME133" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
329
+ <svg:title id="NCNAME134" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
330
+ <svg:path id="NCNAME135" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" d="string value" pathLength="string value">
331
+ <svg:desc>Dummy Text goes here</svg:desc>
332
+ <svg:title>Dummy Text goes here</svg:title>
333
+ </svg:path>
334
+ <svg:rect id="NCNAME136" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
335
+ <svg:desc>Dummy Text goes here</svg:desc>
336
+ <svg:title>Dummy Text goes here</svg:title>
337
+ </svg:rect>
338
+ <svg:circle id="NCNAME137" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" cx="string value" cy="string value" r="string value">
339
+ <svg:desc>Dummy Text goes here</svg:desc>
340
+ <svg:title>Dummy Text goes here</svg:title>
341
+ </svg:circle>
342
+ <svg:line id="NCNAME138" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" x1="string value" y1="string value" x2="string value" y2="string value">
343
+ <svg:desc>Dummy Text goes here</svg:desc>
344
+ <svg:title>Dummy Text goes here</svg:title>
345
+ </svg:line>
346
+ <svg:ellipse id="NCNAME139" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" rx="string value" ry="string value" cx="string value" cy="string value">
347
+ <svg:desc>Dummy Text goes here</svg:desc>
348
+ <svg:title>Dummy Text goes here</svg:title>
349
+ </svg:ellipse>
350
+ <svg:polyline id="NCNAME140" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" points="string value">
351
+ <svg:desc>Dummy Text goes here</svg:desc>
352
+ <svg:title>Dummy Text goes here</svg:title>
353
+ </svg:polyline>
354
+ <svg:polygon id="NCNAME141" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" points="string value">
355
+ <svg:desc>Dummy Text goes here</svg:desc>
356
+ <svg:title>Dummy Text goes here</svg:title>
357
+ </svg:polygon>
358
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME142" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
359
+ <svg:desc>Dummy Text goes here</svg:desc>
360
+ <svg:title>Dummy Text goes here</svg:title>
361
+ </svg:solidColor>
362
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME143" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
363
+ <svg:tspan />
364
+ <svg:desc>Dummy Text goes here</svg:desc>
365
+ <svg:title>Dummy Text goes here</svg:title>
366
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
367
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME144" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
368
+ <svg:desc>Dummy Text goes here</svg:desc>
369
+ <svg:title>Dummy Text goes here</svg:title>
370
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
371
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME145" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
372
+ <svg:desc>Dummy Text goes here</svg:desc>
373
+ <svg:title>Dummy Text goes here</svg:title>
374
+ <svg:path />
375
+ <svg:rect />
376
+ <svg:circle />
377
+ <svg:line />
378
+ <svg:ellipse />
379
+ <svg:polyline />
380
+ <svg:polygon />
381
+ <svg:solidColor />
382
+ <svg:textArea />
383
+ <svg:text />
384
+ <svg:g />
385
+ <svg:defs />
386
+ <svg:use />
387
+ <svg:a />
388
+ </svg:g>
389
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME146" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
390
+ <svg:desc>Dummy Text goes here</svg:desc>
391
+ <svg:title>Dummy Text goes here</svg:title>
392
+ <svg:path />
393
+ <svg:rect />
394
+ <svg:circle />
395
+ <svg:line />
396
+ <svg:ellipse />
397
+ <svg:polyline />
398
+ <svg:polygon />
399
+ <svg:solidColor />
400
+ <svg:textArea />
401
+ <svg:text />
402
+ <svg:g />
403
+ <svg:defs />
404
+ <svg:use />
405
+ <svg:a />
406
+ </svg:defs>
407
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="inherit" stroke="inherit" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME147" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value">
408
+ <svg:desc>Dummy Text goes here</svg:desc>
409
+ <svg:title>Dummy Text goes here</svg:title>
410
+ </svg:use>
411
+ </svg:a>
412
+ </svg:g>
413
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME148" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
414
+ <svg:desc xml:id="NCNAME149" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
415
+ <svg:title xml:id="NCNAME150" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
416
+ <svg:path xml:id="NCNAME151" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" d="string value" pathLength="string value">
417
+ <svg:desc id="NCNAME152" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
418
+ <svg:title id="NCNAME153" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
419
+ </svg:path>
420
+ <svg:rect xml:id="NCNAME154" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
421
+ <svg:desc xml:id="NCNAME155" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
422
+ <svg:title xml:id="NCNAME156" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
423
+ </svg:rect>
424
+ <svg:circle xml:id="NCNAME157" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" cx="string value" cy="string value" r="string value">
425
+ <svg:desc id="NCNAME158" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
426
+ <svg:title id="NCNAME159" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
427
+ </svg:circle>
428
+ <svg:line xml:id="NCNAME160" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" x1="string value" y1="string value" x2="string value" y2="string value">
429
+ <svg:desc xml:id="NCNAME161" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
430
+ <svg:title xml:id="NCNAME162" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
431
+ </svg:line>
432
+ <svg:ellipse xml:id="NCNAME163" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" rx="string value" ry="string value" cx="string value" cy="string value">
433
+ <svg:desc id="NCNAME164" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
434
+ <svg:title id="NCNAME165" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
435
+ </svg:ellipse>
436
+ <svg:polyline xml:id="NCNAME166" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" points="string value">
437
+ <svg:desc xml:id="NCNAME167" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
438
+ <svg:title xml:id="NCNAME168" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
439
+ </svg:polyline>
440
+ <svg:polygon xml:id="NCNAME169" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" points="string value">
441
+ <svg:desc id="NCNAME170" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
442
+ <svg:title id="NCNAME171" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
443
+ </svg:polygon>
444
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME172" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
445
+ <svg:desc xml:id="NCNAME173" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
446
+ <svg:title xml:id="NCNAME174" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
447
+ </svg:solidColor>
448
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME175" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
449
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="optimizeQuality" vector-effect="inherit" direction="inherit" unicode-bidi="bidi-override" solid-color="#ffffff" solid-opacity="inherit" display-align="center" line-increment="string value" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="inherit" font-weight="bolder" text-anchor="end" text-align="end" id="NCNAME176" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
450
+ <svg:tbreak />
451
+ <svg:desc>Dummy Text goes here</svg:desc>
452
+ <svg:title>Dummy Text goes here</svg:title>
453
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>
454
+ <svg:desc id="NCNAME177" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
455
+ <svg:title id="NCNAME178" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
456
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME179" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
457
+ <svg:desc>Dummy Text goes here</svg:desc>
458
+ <svg:title>Dummy Text goes here</svg:title>
459
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a xml:id="NCNAME180" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_self" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:textArea>
460
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="white" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME181" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
461
+ <svg:desc xml:id="NCNAME182" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
462
+ <svg:title xml:id="NCNAME183" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
463
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME184" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
464
+ <svg:desc>Dummy Text goes here</svg:desc>
465
+ <svg:title>Dummy Text goes here</svg:title>
466
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a id="NCNAME185" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_parent" xmlns:xlink="http://www.w3.org/1999/xlink"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:text>
467
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="#ffffff" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME186" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
468
+ <svg:desc id="NCNAME187" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
469
+ <svg:title id="NCNAME188" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
470
+ <svg:path id="NCNAME189" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" d="string value" pathLength="string value">
471
+ <svg:desc>Dummy Text goes here</svg:desc>
472
+ <svg:title>Dummy Text goes here</svg:title>
473
+ </svg:path>
474
+ <svg:rect id="NCNAME190" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
475
+ <svg:desc>Dummy Text goes here</svg:desc>
476
+ <svg:title>Dummy Text goes here</svg:title>
477
+ </svg:rect>
478
+ <svg:circle id="NCNAME191" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#ffffff" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" cx="string value" cy="string value" r="string value">
479
+ <svg:desc>Dummy Text goes here</svg:desc>
480
+ <svg:title>Dummy Text goes here</svg:title>
481
+ </svg:circle>
482
+ <svg:line id="NCNAME192" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" x1="string value" y1="string value" x2="string value" y2="string value">
483
+ <svg:desc>Dummy Text goes here</svg:desc>
484
+ <svg:title>Dummy Text goes here</svg:title>
485
+ </svg:line>
486
+ <svg:ellipse id="NCNAME193" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" rx="string value" ry="string value" cx="string value" cy="string value">
487
+ <svg:desc>Dummy Text goes here</svg:desc>
488
+ <svg:title>Dummy Text goes here</svg:title>
489
+ </svg:ellipse>
490
+ <svg:polyline id="NCNAME194" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#ffffff" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" points="string value">
491
+ <svg:desc>Dummy Text goes here</svg:desc>
492
+ <svg:title>Dummy Text goes here</svg:title>
493
+ </svg:polyline>
494
+ <svg:polygon id="NCNAME195" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" points="string value">
495
+ <svg:desc>Dummy Text goes here</svg:desc>
496
+ <svg:title>Dummy Text goes here</svg:title>
497
+ </svg:polygon>
498
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME196" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
499
+ <svg:desc>Dummy Text goes here</svg:desc>
500
+ <svg:title>Dummy Text goes here</svg:title>
501
+ </svg:solidColor>
502
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#000000" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#ffffff" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME197" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
503
+ <svg:tspan />
504
+ <svg:desc>Dummy Text goes here</svg:desc>
505
+ <svg:title>Dummy Text goes here</svg:title>
506
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
507
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME198" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
508
+ <svg:desc>Dummy Text goes here</svg:desc>
509
+ <svg:title>Dummy Text goes here</svg:title>
510
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
511
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME199" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
512
+ <svg:desc>Dummy Text goes here</svg:desc>
513
+ <svg:title>Dummy Text goes here</svg:title>
514
+ <svg:path />
515
+ <svg:rect />
516
+ <svg:circle />
517
+ <svg:line />
518
+ <svg:ellipse />
519
+ <svg:polyline />
520
+ <svg:polygon />
521
+ <svg:solidColor />
522
+ <svg:textArea />
523
+ <svg:text />
524
+ <svg:g />
525
+ <svg:defs />
526
+ <svg:use />
527
+ <svg:a />
528
+ </svg:g>
529
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME200" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
530
+ <svg:desc>Dummy Text goes here</svg:desc>
531
+ <svg:title>Dummy Text goes here</svg:title>
532
+ <svg:path />
533
+ <svg:rect />
534
+ <svg:circle />
535
+ <svg:line />
536
+ <svg:ellipse />
537
+ <svg:polyline />
538
+ <svg:polygon />
539
+ <svg:solidColor />
540
+ <svg:textArea />
541
+ <svg:text />
542
+ <svg:g />
543
+ <svg:defs />
544
+ <svg:use />
545
+ <svg:a />
546
+ </svg:defs>
547
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="#FFFFFF" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" id="NCNAME201" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
548
+ <svg:desc>Dummy Text goes here</svg:desc>
549
+ <svg:title>Dummy Text goes here</svg:title>
550
+ </svg:use>
551
+ <svg:a xml:id="NCNAME202" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_top" xmlns:xlink="http://www.w3.org/1999/xlink">
552
+ <svg:desc>Dummy Text goes here</svg:desc>
553
+ <svg:title>Dummy Text goes here</svg:title>
554
+ <svg:path />
555
+ <svg:rect />
556
+ <svg:circle />
557
+ <svg:line />
558
+ <svg:ellipse />
559
+ <svg:polyline />
560
+ <svg:polygon />
561
+ <svg:solidColor />
562
+ <svg:textArea />
563
+ <svg:text />
564
+ <svg:g />
565
+ <svg:defs />
566
+ <svg:use />
567
+ </svg:a>
568
+ </svg:g>
569
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME203" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
570
+ <svg:desc xml:id="NCNAME204" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
571
+ <svg:title xml:id="NCNAME205" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline-table" visibility="inherit" image-rendering="inherit" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="inherit" viewport-fill="#FFFFFF" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
572
+ <svg:path xml:id="NCNAME206" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" d="string value" pathLength="string value">
573
+ <svg:desc>Dummy Text goes here</svg:desc>
574
+ <svg:title>Dummy Text goes here</svg:title>
575
+ </svg:path>
576
+ <svg:rect xml:id="NCNAME207" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="nonzero" stroke="#ffffff" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="black" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
577
+ <svg:desc>Dummy Text goes here</svg:desc>
578
+ <svg:title>Dummy Text goes here</svg:title>
579
+ </svg:rect>
580
+ <svg:circle xml:id="NCNAME208" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" cx="string value" cy="string value" r="string value">
581
+ <svg:desc>Dummy Text goes here</svg:desc>
582
+ <svg:title>Dummy Text goes here</svg:title>
583
+ </svg:circle>
584
+ <svg:line xml:id="NCNAME209" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" x1="string value" y1="string value" x2="string value" y2="string value">
585
+ <svg:desc>Dummy Text goes here</svg:desc>
586
+ <svg:title>Dummy Text goes here</svg:title>
587
+ </svg:line>
588
+ <svg:ellipse xml:id="NCNAME210" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" rx="string value" ry="string value" cx="string value" cy="string value">
589
+ <svg:desc>Dummy Text goes here</svg:desc>
590
+ <svg:title>Dummy Text goes here</svg:title>
591
+ </svg:ellipse>
592
+ <svg:polyline xml:id="NCNAME211" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" points="string value">
593
+ <svg:desc>Dummy Text goes here</svg:desc>
594
+ <svg:title>Dummy Text goes here</svg:title>
595
+ </svg:polyline>
596
+ <svg:polygon xml:id="NCNAME212" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" points="string value">
597
+ <svg:desc>Dummy Text goes here</svg:desc>
598
+ <svg:title>Dummy Text goes here</svg:title>
599
+ </svg:polygon>
600
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="nonzero" stroke="#ffffff" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="black" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME213" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
601
+ <svg:desc>Dummy Text goes here</svg:desc>
602
+ <svg:title>Dummy Text goes here</svg:title>
603
+ </svg:solidColor>
604
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME214" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
605
+ <svg:tspan />
606
+ <svg:desc>Dummy Text goes here</svg:desc>
607
+ <svg:title>Dummy Text goes here</svg:title>
608
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
609
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME215" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
610
+ <svg:desc>Dummy Text goes here</svg:desc>
611
+ <svg:title>Dummy Text goes here</svg:title>
612
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
613
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME216" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
614
+ <svg:desc>Dummy Text goes here</svg:desc>
615
+ <svg:title>Dummy Text goes here</svg:title>
616
+ <svg:path />
617
+ <svg:rect />
618
+ <svg:circle />
619
+ <svg:line />
620
+ <svg:ellipse />
621
+ <svg:polyline />
622
+ <svg:polygon />
623
+ <svg:solidColor />
624
+ <svg:textArea />
625
+ <svg:text />
626
+ <svg:g />
627
+ <svg:defs />
628
+ <svg:use />
629
+ <svg:a />
630
+ </svg:g>
631
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME217" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
632
+ <svg:desc>Dummy Text goes here</svg:desc>
633
+ <svg:title>Dummy Text goes here</svg:title>
634
+ <svg:path />
635
+ <svg:rect />
636
+ <svg:circle />
637
+ <svg:line />
638
+ <svg:ellipse />
639
+ <svg:polyline />
640
+ <svg:polygon />
641
+ <svg:solidColor />
642
+ <svg:textArea />
643
+ <svg:text />
644
+ <svg:g />
645
+ <svg:defs />
646
+ <svg:use />
647
+ <svg:a />
648
+ </svg:defs>
649
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="white" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" xml:id="NCNAME218" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
650
+ <svg:desc>Dummy Text goes here</svg:desc>
651
+ <svg:title>Dummy Text goes here</svg:title>
652
+ </svg:use>
653
+ <svg:a id="NCNAME219" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="auto" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="normal" solid-color="inherit" solid-opacity="inherit" display-align="inherit" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="small-caps" font-weight="inherit" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_blank" xmlns:xlink="http://www.w3.org/1999/xlink">
654
+ <svg:desc>Dummy Text goes here</svg:desc>
655
+ <svg:title>Dummy Text goes here</svg:title>
656
+ <svg:path />
657
+ <svg:rect />
658
+ <svg:circle />
659
+ <svg:line />
660
+ <svg:ellipse />
661
+ <svg:polyline />
662
+ <svg:polygon />
663
+ <svg:solidColor />
664
+ <svg:textArea />
665
+ <svg:text />
666
+ <svg:g />
667
+ <svg:defs />
668
+ <svg:use />
669
+ </svg:a>
670
+ </svg:defs>
671
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" id="NCNAME220" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
672
+ <svg:desc id="NCNAME221" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
673
+ <svg:title id="NCNAME222" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-row-group" visibility="visible" image-rendering="auto" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
674
+ </svg:use>
675
+ <svg:a xml:id="NCNAME223" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="optimizeSpeed" vector-effect="inherit" direction="inherit" unicode-bidi="embed" solid-color="#000000" solid-opacity="string value" display-align="auto" line-increment="string value" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="inherit" font-weight="normal" text-anchor="middle" text-align="center" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="NAME" xmlns:xlink="http://www.w3.org/1999/xlink">
676
+ <svg:desc xml:id="NCNAME224" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
677
+ <svg:title xml:id="NCNAME225" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-header-group" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="auto" text-rendering="auto" buffered-rendering="dynamic" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
678
+ <svg:path id="NCNAME226" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" d="string value" pathLength="string value">
679
+ <svg:desc>Dummy Text goes here</svg:desc>
680
+ <svg:title>Dummy Text goes here</svg:title>
681
+ </svg:path>
682
+ <svg:rect id="NCNAME227" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
683
+ <svg:desc>Dummy Text goes here</svg:desc>
684
+ <svg:title>Dummy Text goes here</svg:title>
685
+ </svg:rect>
686
+ <svg:circle id="NCNAME228" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" cx="string value" cy="string value" r="string value">
687
+ <svg:desc>Dummy Text goes here</svg:desc>
688
+ <svg:title>Dummy Text goes here</svg:title>
689
+ </svg:circle>
690
+ <svg:line id="NCNAME229" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" x1="string value" y1="string value" x2="string value" y2="string value">
691
+ <svg:desc>Dummy Text goes here</svg:desc>
692
+ <svg:title>Dummy Text goes here</svg:title>
693
+ </svg:line>
694
+ <svg:ellipse id="NCNAME230" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" rx="string value" ry="string value" cx="string value" cy="string value">
695
+ <svg:desc>Dummy Text goes here</svg:desc>
696
+ <svg:title>Dummy Text goes here</svg:title>
697
+ </svg:ellipse>
698
+ <svg:polyline id="NCNAME231" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" points="string value">
699
+ <svg:desc>Dummy Text goes here</svg:desc>
700
+ <svg:title>Dummy Text goes here</svg:title>
701
+ </svg:polyline>
702
+ <svg:polygon id="NCNAME232" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" points="string value">
703
+ <svg:desc>Dummy Text goes here</svg:desc>
704
+ <svg:title>Dummy Text goes here</svg:title>
705
+ </svg:polygon>
706
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME233" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
707
+ <svg:desc>Dummy Text goes here</svg:desc>
708
+ <svg:title>Dummy Text goes here</svg:title>
709
+ </svg:solidColor>
710
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME234" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
711
+ <svg:tspan />
712
+ <svg:desc>Dummy Text goes here</svg:desc>
713
+ <svg:title>Dummy Text goes here</svg:title>
714
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
715
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME235" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
716
+ <svg:desc>Dummy Text goes here</svg:desc>
717
+ <svg:title>Dummy Text goes here</svg:title>
718
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
719
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME236" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
720
+ <svg:desc>Dummy Text goes here</svg:desc>
721
+ <svg:title>Dummy Text goes here</svg:title>
722
+ <svg:path />
723
+ <svg:rect />
724
+ <svg:circle />
725
+ <svg:line />
726
+ <svg:ellipse />
727
+ <svg:polyline />
728
+ <svg:polygon />
729
+ <svg:solidColor />
730
+ <svg:textArea />
731
+ <svg:text />
732
+ <svg:g />
733
+ <svg:defs />
734
+ <svg:use />
735
+ <svg:a />
736
+ </svg:g>
737
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="#FFFFFF" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="#ffffff" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="inherit" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME237" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
738
+ <svg:desc>Dummy Text goes here</svg:desc>
739
+ <svg:title>Dummy Text goes here</svg:title>
740
+ <svg:path />
741
+ <svg:rect />
742
+ <svg:circle />
743
+ <svg:line />
744
+ <svg:ellipse />
745
+ <svg:polyline />
746
+ <svg:polygon />
747
+ <svg:solidColor />
748
+ <svg:textArea />
749
+ <svg:text />
750
+ <svg:g />
751
+ <svg:defs />
752
+ <svg:use />
753
+ <svg:a />
754
+ </svg:defs>
755
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" xml:id="NCNAME238" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value">
756
+ <svg:desc>Dummy Text goes here</svg:desc>
757
+ <svg:title>Dummy Text goes here</svg:title>
758
+ </svg:use>
759
+ </svg:a>
760
+ </svg:defs>
761
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="white" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" id="NCNAME239" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value" xmlns:xlink="http://www.w3.org/1999/xlink">
762
+ <svg:desc id="NCNAME240" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
763
+ <svg:title id="NCNAME241" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-footer-group" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
764
+ </svg:use>
765
+ <svg:a id="NCNAME242" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="none" direction="ltr" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="before" line-increment="auto" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="normal" font-weight="bold" text-anchor="end" text-align="end" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_replace" xmlns:xlink="http://www.w3.org/1999/xlink">
766
+ <svg:desc xml:id="NCNAME243" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
767
+ <svg:title xml:id="NCNAME244" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-row" visibility="inherit" image-rendering="inherit" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
768
+ <svg:path xml:id="NCNAME245" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" d="string value" pathLength="string value">
769
+ <svg:desc id="NCNAME246" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
770
+ <svg:title id="NCNAME247" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-column-group" visibility="visible" image-rendering="auto" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
771
+ </svg:path>
772
+ <svg:rect xml:id="NCNAME248" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
773
+ <svg:desc xml:id="NCNAME249" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
774
+ <svg:title xml:id="NCNAME250" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-column" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
775
+ </svg:rect>
776
+ <svg:circle xml:id="NCNAME251" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" cx="string value" cy="string value" r="string value">
777
+ <svg:desc id="NCNAME252" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
778
+ <svg:title id="NCNAME253" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table-cell" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="auto" text-rendering="auto" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
779
+ </svg:circle>
780
+ <svg:line xml:id="NCNAME254" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" x1="string value" y1="string value" x2="string value" y2="string value">
781
+ <svg:desc xml:id="NCNAME255" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
782
+ <svg:title xml:id="NCNAME256" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="table-caption" visibility="inherit" image-rendering="inherit" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
783
+ </svg:line>
784
+ <svg:ellipse xml:id="NCNAME257" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" rx="string value" ry="string value" cx="string value" cy="string value">
785
+ <svg:desc id="NCNAME258" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
786
+ <svg:title id="NCNAME259" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="none" visibility="visible" image-rendering="auto" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
787
+ </svg:ellipse>
788
+ <svg:polyline xml:id="NCNAME260" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" points="string value">
789
+ <svg:desc xml:id="NCNAME261" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
790
+ <svg:title xml:id="NCNAME262" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inherit" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="dynamic" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
791
+ </svg:polyline>
792
+ <svg:polygon xml:id="NCNAME263" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" points="string value">
793
+ <svg:desc id="NCNAME264" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
794
+ <svg:title id="NCNAME265" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="inline" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
795
+ </svg:polygon>
796
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME266" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
797
+ <svg:desc xml:id="NCNAME267" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="white" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
798
+ <svg:title xml:id="NCNAME268" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="block" visibility="inherit" image-rendering="inherit" shape-rendering="auto" text-rendering="auto" buffered-rendering="inherit" viewport-fill="#000000" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
799
+ </svg:solidColor>
800
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME269" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
801
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="none" direction="ltr" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="after" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="normal" font-weight="lighter" text-anchor="inherit" text-align="inherit" xml:id="NCNAME270" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
802
+ <svg:tbreak />
803
+ <svg:desc>Dummy Text goes here</svg:desc>
804
+ <svg:title>Dummy Text goes here</svg:title>
805
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>
806
+ <svg:desc id="NCNAME271" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
807
+ <svg:title id="NCNAME272" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="list-item" visibility="visible" image-rendering="auto" shape-rendering="optimizeSpeed" text-rendering="optimizeSpeed" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
808
+ <svg:tspan fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME273" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" x="string value" y="string value">
809
+ <svg:desc>Dummy Text goes here</svg:desc>
810
+ <svg:title>Dummy Text goes here</svg:title>
811
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a xml:id="NCNAME274" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="inherit" stroke="white" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="#FFFFFF" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_top"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:textArea>
812
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="#000000" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME275" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
813
+ <svg:desc xml:id="NCNAME276" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
814
+ <svg:title xml:id="NCNAME277" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="run-in" visibility="hidden" image-rendering="optimizeSpeed" shape-rendering="crispEdges" text-rendering="optimizeLegibility" buffered-rendering="dynamic" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
815
+ <svg:tspan fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="inherit" stroke="black" stroke-dasharray="inherit" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="auto" vector-effect="none" direction="ltr" unicode-bidi="normal" solid-color="#000000" solid-opacity="inherit" display-align="center" line-increment="auto" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="normal" font-weight="bolder" text-anchor="start" text-align="start" id="NCNAME278" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" x="string value" y="string value">
816
+ <svg:desc>Dummy Text goes here</svg:desc>
817
+ <svg:title>Dummy Text goes here</svg:title>
818
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:tspan>Dummy Text goes here<svg:a id="NCNAME279" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#ffffff" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="black" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_blank"><svg:desc>Dummy Text goes here</svg:desc><svg:title>Dummy Text goes here</svg:title><svg:tspan />Dummy Text goes here</svg:a></svg:text>
819
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME280" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
820
+ <svg:desc id="NCNAME281" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
821
+ <svg:title id="NCNAME282" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="compact" visibility="collapse" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" buffered-rendering="static" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
822
+ <svg:path id="NCNAME283" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" d="string value" pathLength="string value">
823
+ <svg:desc>Dummy Text goes here</svg:desc>
824
+ <svg:title>Dummy Text goes here</svg:title>
825
+ </svg:path>
826
+ <svg:rect id="NCNAME284" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
827
+ <svg:desc>Dummy Text goes here</svg:desc>
828
+ <svg:title>Dummy Text goes here</svg:title>
829
+ </svg:rect>
830
+ <svg:circle id="NCNAME285" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" cx="string value" cy="string value" r="string value">
831
+ <svg:desc>Dummy Text goes here</svg:desc>
832
+ <svg:title>Dummy Text goes here</svg:title>
833
+ </svg:circle>
834
+ <svg:line id="NCNAME286" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" x1="string value" y1="string value" x2="string value" y2="string value">
835
+ <svg:desc>Dummy Text goes here</svg:desc>
836
+ <svg:title>Dummy Text goes here</svg:title>
837
+ </svg:line>
838
+ <svg:ellipse id="NCNAME287" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" rx="string value" ry="string value" cx="string value" cy="string value">
839
+ <svg:desc>Dummy Text goes here</svg:desc>
840
+ <svg:title>Dummy Text goes here</svg:title>
841
+ </svg:ellipse>
842
+ <svg:polyline id="NCNAME288" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" points="string value">
843
+ <svg:desc>Dummy Text goes here</svg:desc>
844
+ <svg:title>Dummy Text goes here</svg:title>
845
+ </svg:polyline>
846
+ <svg:polygon id="NCNAME289" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" points="string value">
847
+ <svg:desc>Dummy Text goes here</svg:desc>
848
+ <svg:title>Dummy Text goes here</svg:title>
849
+ </svg:polygon>
850
+ <svg:solidColor fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME290" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
851
+ <svg:desc>Dummy Text goes here</svg:desc>
852
+ <svg:title>Dummy Text goes here</svg:title>
853
+ </svg:solidColor>
854
+ <svg:textArea fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="#FFFFFF" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#ffffff" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="inherit" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="black" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME291" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" width="string value" height="string value">
855
+ <svg:tspan />
856
+ <svg:desc>Dummy Text goes here</svg:desc>
857
+ <svg:title>Dummy Text goes here</svg:title>
858
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
859
+ <svg:text fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="white" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="#000000" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#FFFFFF" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#ffffff" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME292" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" x="string value" y="string value" rotate="string value">
860
+ <svg:desc>Dummy Text goes here</svg:desc>
861
+ <svg:title>Dummy Text goes here</svg:title>
862
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
863
+ <svg:g fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="inherit" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="black" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="white" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#000000" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME293" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value">
864
+ <svg:desc>Dummy Text goes here</svg:desc>
865
+ <svg:title>Dummy Text goes here</svg:title>
866
+ <svg:path />
867
+ <svg:rect />
868
+ <svg:circle />
869
+ <svg:line />
870
+ <svg:ellipse />
871
+ <svg:polyline />
872
+ <svg:polygon />
873
+ <svg:solidColor />
874
+ <svg:textArea />
875
+ <svg:text />
876
+ <svg:g />
877
+ <svg:defs />
878
+ <svg:use />
879
+ <svg:a />
880
+ </svg:g>
881
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="inherit" stroke="#ffffff" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="black" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME294" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
882
+ <svg:desc>Dummy Text goes here</svg:desc>
883
+ <svg:title>Dummy Text goes here</svg:title>
884
+ <svg:path />
885
+ <svg:rect />
886
+ <svg:circle />
887
+ <svg:line />
888
+ <svg:ellipse />
889
+ <svg:polyline />
890
+ <svg:polygon />
891
+ <svg:solidColor />
892
+ <svg:textArea />
893
+ <svg:text />
894
+ <svg:g />
895
+ <svg:defs />
896
+ <svg:use />
897
+ <svg:a />
898
+ </svg:defs>
899
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="inherit" stroke="#FFFFFF" stroke-dasharray="inherit" stroke-dashoffset="string value" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="optimizeSpeed" vector-effect="none" direction="ltr" unicode-bidi="embed" solid-color="inherit" solid-opacity="string value" display-align="inherit" line-increment="auto" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="italic" font-variant="normal" font-weight="inherit" text-anchor="middle" text-align="center" xml:id="NCNAME295" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value">
900
+ <svg:desc>Dummy Text goes here</svg:desc>
901
+ <svg:title>Dummy Text goes here</svg:title>
902
+ </svg:use>
903
+ <svg:a xml:id="NCNAME296" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="nonzero" stroke="#000000" stroke-dasharray="none" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="center" line-increment="inherit" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="small-caps" font-weight="bolder" text-anchor="inherit" text-align="inherit" transform="none" xlink:show="replace" xlink:actuate="onRequest" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" target="_self">
904
+ <svg:desc>Dummy Text goes here</svg:desc>
905
+ <svg:title>Dummy Text goes here</svg:title>
906
+ <svg:path />
907
+ <svg:rect />
908
+ <svg:circle />
909
+ <svg:line />
910
+ <svg:ellipse />
911
+ <svg:polyline />
912
+ <svg:polygon />
913
+ <svg:solidColor />
914
+ <svg:textArea />
915
+ <svg:text />
916
+ <svg:g />
917
+ <svg:defs />
918
+ <svg:use />
919
+ </svg:a>
920
+ </svg:g>
921
+ <svg:defs fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME297" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default">
922
+ <svg:desc xml:id="NCNAME298" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="#ffffff" viewport-fill-opacity="string value">Dummy Text goes here</svg:desc>
923
+ <svg:title xml:id="NCNAME299" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" display="inline" visibility="inherit" image-rendering="inherit" shape-rendering="inherit" text-rendering="inherit" buffered-rendering="inherit" viewport-fill="inherit" viewport-fill-opacity="string value">Dummy Text goes here</svg:title>
924
+ <svg:path xml:id="NCNAME300" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" d="string value" pathLength="string value">
925
+ <svg:desc>Dummy Text goes here</svg:desc>
926
+ <svg:title>Dummy Text goes here</svg:title>
927
+ </svg:path>
928
+ <svg:rect xml:id="NCNAME301" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" x="string value" y="string value" width="string value" height="string value" rx="string value" ry="string value">
929
+ <svg:desc>Dummy Text goes here</svg:desc>
930
+ <svg:title>Dummy Text goes here</svg:title>
931
+ </svg:rect>
932
+ <svg:circle xml:id="NCNAME302" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" cx="string value" cy="string value" r="string value">
933
+ <svg:desc>Dummy Text goes here</svg:desc>
934
+ <svg:title>Dummy Text goes here</svg:title>
935
+ </svg:circle>
936
+ <svg:line xml:id="NCNAME303" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="black" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" x1="string value" y1="string value" x2="string value" y2="string value">
937
+ <svg:desc>Dummy Text goes here</svg:desc>
938
+ <svg:title>Dummy Text goes here</svg:title>
939
+ </svg:line>
940
+ <svg:ellipse xml:id="NCNAME304" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" rx="string value" ry="string value" cx="string value" cy="string value">
941
+ <svg:desc>Dummy Text goes here</svg:desc>
942
+ <svg:title>Dummy Text goes here</svg:title>
943
+ </svg:ellipse>
944
+ <svg:polyline xml:id="NCNAME305" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" points="string value">
945
+ <svg:desc>Dummy Text goes here</svg:desc>
946
+ <svg:title>Dummy Text goes here</svg:title>
947
+ </svg:polyline>
948
+ <svg:polygon xml:id="NCNAME306" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" fill-opacity="string value" stroke-opacity="string value" fill="black" fill-rule="evenodd" stroke="white" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#000000" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#FFFFFF" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#ffffff" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" points="string value">
949
+ <svg:desc>Dummy Text goes here</svg:desc>
950
+ <svg:title>Dummy Text goes here</svg:title>
951
+ </svg:polygon>
952
+ <svg:solidColor fill-opacity="string value" stroke-opacity="string value" fill="inherit" fill-rule="evenodd" stroke="black" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="white" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#000000" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#FFFFFF" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME307" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
953
+ <svg:desc>Dummy Text goes here</svg:desc>
954
+ <svg:title>Dummy Text goes here</svg:title>
955
+ </svg:solidColor>
956
+ <svg:textArea fill-opacity="string value" stroke-opacity="string value" fill="#ffffff" fill-rule="evenodd" stroke="inherit" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="black" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="white" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="#000000" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME308" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" width="auto" height="auto">
957
+ <svg:tspan />
958
+ <svg:desc>Dummy Text goes here</svg:desc>
959
+ <svg:title>Dummy Text goes here</svg:title>
960
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:textArea>
961
+ <svg:text fill-opacity="string value" stroke-opacity="string value" fill="#FFFFFF" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="inherit" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="black" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="white" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME309" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" x="string value" y="string value" rotate="string value">
962
+ <svg:desc>Dummy Text goes here</svg:desc>
963
+ <svg:title>Dummy Text goes here</svg:title>
964
+ <svg:tspan />Dummy Text goes here<svg:a /></svg:text>
965
+ <svg:g fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME310" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none">
966
+ <svg:desc>Dummy Text goes here</svg:desc>
967
+ <svg:title>Dummy Text goes here</svg:title>
968
+ <svg:path />
969
+ <svg:rect />
970
+ <svg:circle />
971
+ <svg:line />
972
+ <svg:ellipse />
973
+ <svg:polyline />
974
+ <svg:polygon />
975
+ <svg:solidColor />
976
+ <svg:textArea />
977
+ <svg:text />
978
+ <svg:g />
979
+ <svg:defs />
980
+ <svg:use />
981
+ <svg:a />
982
+ </svg:g>
983
+ <svg:defs fill-opacity="string value" stroke-opacity="string value" fill="white" fill-rule="evenodd" stroke="#000000" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#FFFFFF" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="#ffffff" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="inherit" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME311" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve">
984
+ <svg:desc>Dummy Text goes here</svg:desc>
985
+ <svg:title>Dummy Text goes here</svg:title>
986
+ <svg:path />
987
+ <svg:rect />
988
+ <svg:circle />
989
+ <svg:line />
990
+ <svg:ellipse />
991
+ <svg:polyline />
992
+ <svg:polygon />
993
+ <svg:solidColor />
994
+ <svg:textArea />
995
+ <svg:text />
996
+ <svg:g />
997
+ <svg:defs />
998
+ <svg:use />
999
+ <svg:a />
1000
+ </svg:defs>
1001
+ <svg:use fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="nonzero" stroke="black" stroke-dasharray="none" stroke-dashoffset="inherit" stroke-linecap="square" stroke-linejoin="bevel" stroke-miterlimit="inherit" stroke-width="inherit" color="white" color-rendering="optimizeQuality" vector-effect="non-scaling-stroke" direction="rtl" unicode-bidi="bidi-override" solid-color="#000000" solid-opacity="inherit" display-align="auto" line-increment="inherit" stop-color="#FFFFFF" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="oblique" font-variant="small-caps" font-weight="normal" text-anchor="end" text-align="end" id="NCNAME312" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" transform="string value" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" x="string value" y="string value">
1002
+ <svg:desc>Dummy Text goes here</svg:desc>
1003
+ <svg:title>Dummy Text goes here</svg:title>
1004
+ </svg:use>
1005
+ <svg:a id="NCNAME313" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" fill-opacity="inherit" stroke-opacity="inherit" fill="none" fill-rule="evenodd" stroke="#ffffff" stroke-dasharray="string value" stroke-dashoffset="inherit" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="inherit" stroke-width="inherit" color="inherit" color-rendering="auto" vector-effect="inherit" direction="inherit" unicode-bidi="normal" solid-color="black" solid-opacity="inherit" display-align="after" line-increment="string value" stop-color="white" stop-opacity="inherit" font-family="inherit" font-size="inherit" font-style="normal" font-variant="inherit" font-weight="lighter" text-anchor="start" text-align="start" transform="string value" xlink:show="new" xlink:actuate="onRequest" xlink:type="simple" xlink:role="http://example.org/label" xlink:arcrole="http://example.org/label" xlink:title="" xlink:href="http://example.org/label" target="_parent">
1006
+ <svg:desc>Dummy Text goes here</svg:desc>
1007
+ <svg:title>Dummy Text goes here</svg:title>
1008
+ <svg:path />
1009
+ <svg:rect />
1010
+ <svg:circle />
1011
+ <svg:line />
1012
+ <svg:ellipse />
1013
+ <svg:polyline />
1014
+ <svg:polygon />
1015
+ <svg:solidColor />
1016
+ <svg:textArea />
1017
+ <svg:text />
1018
+ <svg:g />
1019
+ <svg:defs />
1020
+ <svg:use />
1021
+ </svg:a>
1022
+ </svg:defs>
1023
+ <svg:use fill-opacity="string value" stroke-opacity="string value" fill="#000000" fill-rule="evenodd" stroke="#FFFFFF" stroke-dasharray="string value" stroke-dashoffset="string value" stroke-linecap="inherit" stroke-linejoin="inherit" stroke-miterlimit="string value" stroke-width="string value" color="#ffffff" color-rendering="inherit" vector-effect="inherit" direction="inherit" unicode-bidi="inherit" solid-color="inherit" solid-opacity="string value" display-align="before" line-increment="string value" stop-color="black" stop-opacity="string value" font-family="sans-serif" font-size="string value" font-style="inherit" font-variant="inherit" font-weight="bold" text-anchor="inherit" text-align="inherit" xml:id="NCNAME314" xml:base="string value" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="preserve" transform="none" xlink:show="embed" xlink:actuate="onLoad" xlink:type="simple" xlink:role="string value" xlink:arcrole="string value" xlink:title="" xlink:href="string value" x="string value" y="string value">
1024
+ <svg:desc id="NCNAME315" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:desc>
1025
+ <svg:title id="NCNAME316" xml:base="http://example.org/label" xml:lang="en" class="NMTOKENS" role="string value" rel="string value" rev="string value" typeof="string value" content="string value" datatype="string value" resource="string value" about="string value" property="string value" xml:space="default" display="table" visibility="visible" image-rendering="auto" shape-rendering="auto" text-rendering="auto" buffered-rendering="auto" viewport-fill="none" viewport-fill-opacity="inherit">Dummy Text goes here</svg:title>
1026
+ </svg:use>
1027
+ </svg:a>
1028
+ </svg:svg>