Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to read schema document https://www.eolang.org/xsd/XMIR-0.48.2.xsd #3636

Closed
volodya-lombrozo opened this issue Dec 11, 2024 · 17 comments

Comments

@volodya-lombrozo
Copy link
Member

Recently one of the pipelines in jeo-maven-plugin failed with the following error:

-1:-1: schema_reference.4: Failed to read schema document 'https://www.eolang.org/xsd/XMIR-0.46.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

build.log

Moreover, it failed only on ubuntu system. On macos everything is fine.

@volodya-lombrozo
Copy link
Member Author

@yegor256 Could you take a look, please? This issue blocks any progress in jeo-maven-plugin.

@volodya-lombrozo
Copy link
Member Author

Where it happened:

    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:122)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:93)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:84)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:74)
    at org.eolang.jeo.representation.VerifiedEo.asXml (VerifiedEo.java:71)

@yegor256
Copy link
Member

@volodya-lombrozo the URL is valid. The problem most probably is related to some instability of network connection. The best we can do is to introduce a retrying mechanism to StrictXML, but I'm not sure how exactly...

@volodya-lombrozo
Copy link
Member Author

@yegor256 I believe we shouldn't rely on an internet connection here. It creates an enormous number of bugs and flaky tests. It's better to keep everything local. In other words, now we can't develop without the internet. Btw, it is often the case.

As you can see, I faced with this problem immediately.

@volodya-lombrozo
Copy link
Member Author

@yegor256
Copy link
Member

@volodya-lombrozo actually, not a bad idea. We can introduce new class StrictXMIR, which will use one of pre-downloaded XSD documents and avoid outbound connections.

@yegor256 yegor256 transferred this issue from objectionary/lints Dec 11, 2024
@volodya-lombrozo
Copy link
Member Author

Blocks objectionary/jeo-maven-plugin#942

yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
@yegor256 yegor256 mentioned this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 12, 2024
yegor256 added a commit that referenced this issue Dec 13, 2024
yegor256 added a commit that referenced this issue Dec 13, 2024
yegor256 added a commit that referenced this issue Dec 13, 2024
yegor256 added a commit that referenced this issue Dec 13, 2024
@volodya-lombrozo
Copy link
Member Author

@yegor256 I got the same error for EO 0.48.2: https://github.com/objectionary/jeo-maven-plugin/actions/runs/12336579339/job/34429261003?pr=942

(IOException);schema_reference.4: Failed to read schema document 'https://www.eolang.org/xsd/XMIR-0.48.2.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (IOException)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:124)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:93)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:84)
    at com.jcabi.xml.StrictXML.<init> (StrictXML.java:74)
    at org.eolang.jeo.representation.VerifiedEo.asXml (VerifiedEo.java:71)
    at org.eolang.jeo.representation.MeasuredEo.asXml (MeasuredEo.java:58)
    at org.eolang.jeo.representation.BytecodeRepresentation.toEO (BytecodeRepresentation.java:117)
    at org.eolang.jeo.Disassembling.transform (Disassembling.java:86)
    at org.eolang.jeo.Caching.tryTransform (Caching.java:93)
    at org.eolang.jeo.Caching.transform (Caching.java:63)
    at org.eolang.jeo.Logging.transform (Logging.java:83)
    at org.eolang.jeo.Disassembler.disassemble (Disassembler.java:113)
    at org.eolang.jeo.ParallelTranslator.translate (ParallelTranslator.java:70)
    at java.util.stream.ReferencePipeline$3$1.accept (ReferencePipeline.java:195)
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining (ArrayList.java:1655)
    at java.util.stream.AbstractPipeline.copyInto (AbstractPipeline.java:484)
    at java.util.stream.ForEachOps$ForEachTask.compute (ForEachOps.java:290)
    at java.util.concurrent.CountedCompleter.exec (CountedCompleter.java:746)
    at java.util.concurrent.ForkJoinTask.doExec (ForkJoinTask.java:290)
    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec (ForkJoinPool.java:1020)
    at java.util.concurrent.ForkJoinPool.scan (ForkJoinPool.java:1656)
    at java.util.concurrent.ForkJoinPool.runWorker (ForkJoinPool.java:1594)
    at java.util.concurrent.ForkJoinWorkerThread.run (ForkJoinWorkerThread.java:183)

build.log

@yegor256
Copy link
Member

@volodya-lombrozo looks like you are still using StrictXML. Try to switch to StrictXmir.

@volodya-lombrozo volodya-lombrozo changed the title Failed to read schema document https://www.eolang.org/xsd/XMIR-0.46.0.xsd Failed to read schema document https://www.eolang.org/xsd/XMIR-0.48.2.xsd Dec 16, 2024
@volodya-lombrozo
Copy link
Member Author

@yegor256 The 0.48.2 doesn't contain StrictiXmir. Most probably we need to release a new version of eo. What do you think?

@yegor256
Copy link
Member

yegor256 commented Dec 16, 2024

@rultor release, tag is 0.49.0

@rultor
Copy link
Contributor

rultor commented Dec 16, 2024

@rultor release, tag is 0.49.0

@yegor256 OK, I will release it now. Please check the progress here.

@rultor
Copy link
Contributor

rultor commented Dec 16, 2024

@rultor release, tag is 0.49.0

@yegor256 Done! FYI, the full log is here (took me 13min).

@yegor256
Copy link
Member

@volodya-lombrozo try 0.49.0 please

@volodya-lombrozo
Copy link
Member Author

@yegor256 I'm getting this with StrictXmir:

Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
Full log is right here
12:37:05.734 [main] WARN com.jcabi.xml.StrictXML -- 347 XML validation error(s):
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  cvc-elt.1.a: Cannot find the declaration of element 'program'.
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
  schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)
<?xml version="1.0" encoding="UTF-8"?>
<program xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         dob="2023-03-19T00:00:00"
         ms="0"
         name="j$MethodByte"
         revision="1234567"
         time="2024-12-16T09:37:05.680323Z"
         version="1.2.3"
         xsi:noNamespaceSchemaLocation="file:///target/xsd/XMIR-0.49.0.xsd">
   <listing>// class version 55.0 (55)
// access flags 0x21
public class org/eolang/jeo/MethodByte {

  // compiled from: MethodByte.java

  // access flags 0x1
  public &lt;init&gt;()V
   L0
    LINENUMBER 3 L0
    ALOAD 0
    INVOKESPECIAL java/lang/Object.&lt;init&gt; ()V
    RETURN
    MAXSTACK = 1
    MAXLOCALS = 1

  // access flags 0x9
  public static main([Ljava/lang/String;)V
   L0
    LINENUMBER 5 L0
    GETSTATIC java/lang/System.out : Ljava/io/PrintStream;
    INVOKESTATIC org/eolang/jeo/MethodByte.method ()B
    INVOKEVIRTUAL java/io/PrintStream.println (I)V
   L1
    LINENUMBER 6 L1
    GETSTATIC java/lang/System.out : Ljava/io/PrintStream;
    LDC "passed"
    INVOKEVIRTUAL java/io/PrintStream.println (Ljava/lang/String;)V
   L2
    LINENUMBER 7 L2
    RETURN
    MAXSTACK = 2
    MAXLOCALS = 1

  // access flags 0x8
  static method()B
   L0
    LINENUMBER 9 L0
    BIPUSH 52
    IRETURN
    MAXSTACK = 1
    MAXLOCALS = 0
}
</listing>
   <license>The MIT License (MIT)

Copyright (c) 2016-2024 Objectionary.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</license>
   <metas>
      <meta>
         <head>package</head>
         <tail>j$org.j$eolang.j$jeo</tail>
         <part>j$org.j$eolang.j$jeo</part>
      </meta>
   </metas>
   <objects>
      <o base="jeo.class" name="j$MethodByte">
         <o base="jeo.int" name="version"><!-- 55 -->
            <o base="org.eolang.bytes">00-00-00-00-00-00-00-37</o>
         </o>
         <o base="jeo.int" name="access"><!-- 33 -->
            <o base="org.eolang.bytes">00-00-00-00-00-00-00-21</o>
         </o>
         <o base="org.eolang.string" name="supername"><!-- "java/lang/Object" -->
            <o base="org.eolang.bytes">6A-61-76-61-2F-6C-61-6E-67-2F-4F-62-6A-65-63-74</o>
         </o>
         <o base="jeo.seq.of0" name="interfaces-340531605"/>
         <o base="jeo.method" name="j$object@init@-%28%29V">
            <o base="jeo.int"><!-- 1 -->
               <o base="org.eolang.bytes">00-00-00-00-00-00-00-01</o>
            </o>
            <o base="org.eolang.string"><!-- "()V" -->
               <o base="org.eolang.bytes">28-29-56</o>
            </o>
            <o base="org.eolang.string"><!-- "" -->
               <o base="org.eolang.bytes">--</o>
            </o>
            <o base="jeo.seq.of0"
               name="f4ef5715-e74e-44f6-bcbc-4877c62832fe-814316187"/>
            <o base="jeo.maxs">
               <o base="jeo.int"><!-- 1 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-01</o>
               </o>
               <o base="jeo.int"><!-- 1 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-01</o>
               </o>
            </o>
            <o base="jeo.params"/>
            <o base="jeo.seq.of0" name="annotations-355371180"/>
            <o base="jeo.seq.of3" name="body-557518937">
               <o base="jeo.opcode.aload"><!-- #25:aload(0) -->
                  <o base="jeo.int"><!-- 25 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-19</o>
                  </o>
                  <o base="jeo.int"><!-- 0 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-00</o>
                  </o>
               </o>
               <o base="jeo.opcode.invokespecial"><!-- #183:invokespecial(java/lang/Object, &lt;init&gt;, ()V, false) -->
                  <o base="jeo.int"><!-- 183 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B7</o>
                  </o>
                  <o base="org.eolang.string"><!-- "java/lang/Object" -->
                     <o base="org.eolang.bytes">6A-61-76-61-2F-6C-61-6E-67-2F-4F-62-6A-65-63-74</o>
                  </o>
                  <o base="org.eolang.string"><!-- "&lt;init&gt;" -->
                     <o base="org.eolang.bytes">3C-69-6E-69-74-3E</o>
                  </o>
                  <o base="org.eolang.string"><!-- "()V" -->
                     <o base="org.eolang.bytes">28-29-56</o>
                  </o>
                  <o base="jeo.bool"><!-- false -->
                     <o base="org.eolang.bytes">00-</o>
                  </o>
               </o>
               <o base="jeo.opcode.return"><!-- #177:return() -->
                  <o base="jeo.int"><!-- 177 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B1</o>
                  </o>
               </o>
            </o>
            <o base="jeo.seq.of0" name="trycatchblocks-object@init@-1257227488"/>
            <o base="jeo.seq.of0" name="local-variable-table-1008900449"/>
         </o>
         <o base="jeo.method" name="j$main-%28%5BLjava%2Flang%2FString%3B%29V">
            <o base="jeo.int"><!-- 9 -->
               <o base="org.eolang.bytes">00-00-00-00-00-00-00-09</o>
            </o>
            <o base="org.eolang.string"><!-- "([Ljava/lang/String;)V" -->
               <o base="org.eolang.bytes">28-5B-4C-6A-61-76-61-2F-6C-61-6E-67-2F-53-74-72-69-6E-67-3B-29-56</o>
            </o>
            <o base="org.eolang.string"><!-- "" -->
               <o base="org.eolang.bytes">--</o>
            </o>
            <o base="jeo.seq.of0"
               name="d9ff8f3c-007e-4ae0-b8ac-45875ff0cdca-288039011"/>
            <o base="jeo.maxs">
               <o base="jeo.int"><!-- 2 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-02</o>
               </o>
               <o base="jeo.int"><!-- 1 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-01</o>
               </o>
            </o>
            <o base="jeo.params">
               <o base="jeo.param" name="param-%5BLjava%2Flang%2FString%3B-arg0-0-0">
                  <o base="jeo.seq.of0" name="param-annotations-0-1538135745"/>
               </o>
            </o>
            <o base="jeo.seq.of0" name="annotations-1045093181"/>
            <o base="jeo.seq.of7" name="body-832833703">
               <o base="jeo.opcode.getstatic"><!-- #178:getstatic(java/lang/System, out, Ljava/io/PrintStream;) -->
                  <o base="jeo.int"><!-- 178 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B2</o>
                  </o>
                  <o base="org.eolang.string"><!-- "java/lang/System" -->
                     <o base="org.eolang.bytes">6A-61-76-61-2F-6C-61-6E-67-2F-53-79-73-74-65-6D</o>
                  </o>
                  <o base="org.eolang.string"><!-- "out" -->
                     <o base="org.eolang.bytes">6F-75-74</o>
                  </o>
                  <o base="org.eolang.string"><!-- "Ljava/io/PrintStream;" -->
                     <o base="org.eolang.bytes">4C-6A-61-76-61-2F-69-6F-2F-50-72-69-6E-74-53-74-72-65-61-6D-3B</o>
                  </o>
               </o>
               <o base="jeo.opcode.invokestatic"><!-- #184:invokestatic(org/eolang/jeo/MethodByte, method, ()B, false) -->
                  <o base="jeo.int"><!-- 184 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B8</o>
                  </o>
                  <o base="org.eolang.string"><!-- "org/eolang/jeo/MethodByte" -->
                     <o base="org.eolang.bytes">6F-72-67-2F-65-6F-6C-61-6E-67-2F-6A-65-6F-2F-4D-65-74-68-6F-64-42-79-74-65</o>
                  </o>
                  <o base="org.eolang.string"><!-- "method" -->
                     <o base="org.eolang.bytes">6D-65-74-68-6F-64</o>
                  </o>
                  <o base="org.eolang.string"><!-- "()B" -->
                     <o base="org.eolang.bytes">28-29-42</o>
                  </o>
                  <o base="jeo.bool"><!-- false -->
                     <o base="org.eolang.bytes">00-</o>
                  </o>
               </o>
               <o base="jeo.opcode.invokevirtual"><!-- #182:invokevirtual(java/io/PrintStream, println, (I)V, false) -->
                  <o base="jeo.int"><!-- 182 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B6</o>
                  </o>
                  <o base="org.eolang.string"><!-- "java/io/PrintStream" -->
                     <o base="org.eolang.bytes">6A-61-76-61-2F-69-6F-2F-50-72-69-6E-74-53-74-72-65-61-6D</o>
                  </o>
                  <o base="org.eolang.string"><!-- "println" -->
                     <o base="org.eolang.bytes">70-72-69-6E-74-6C-6E</o>
                  </o>
                  <o base="org.eolang.string"><!-- "(I)V" -->
                     <o base="org.eolang.bytes">28-49-29-56</o>
                  </o>
                  <o base="jeo.bool"><!-- false -->
                     <o base="org.eolang.bytes">00-</o>
                  </o>
               </o>
               <o base="jeo.opcode.getstatic"><!-- #178:getstatic(java/lang/System, out, Ljava/io/PrintStream;) -->
                  <o base="jeo.int"><!-- 178 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B2</o>
                  </o>
                  <o base="org.eolang.string"><!-- "java/lang/System" -->
                     <o base="org.eolang.bytes">6A-61-76-61-2F-6C-61-6E-67-2F-53-79-73-74-65-6D</o>
                  </o>
                  <o base="org.eolang.string"><!-- "out" -->
                     <o base="org.eolang.bytes">6F-75-74</o>
                  </o>
                  <o base="org.eolang.string"><!-- "Ljava/io/PrintStream;" -->
                     <o base="org.eolang.bytes">4C-6A-61-76-61-2F-69-6F-2F-50-72-69-6E-74-53-74-72-65-61-6D-3B</o>
                  </o>
               </o>
               <o base="jeo.opcode.ldc"><!-- #18:ldc(passed) -->
                  <o base="jeo.int"><!-- 18 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-12</o>
                  </o>
                  <o base="org.eolang.string"><!-- "passed" -->
                     <o base="org.eolang.bytes">70-61-73-73-65-64</o>
                  </o>
               </o>
               <o base="jeo.opcode.invokevirtual"><!-- #182:invokevirtual(java/io/PrintStream, println, (Ljava/lang/String;)V, false) -->
                  <o base="jeo.int"><!-- 182 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B6</o>
                  </o>
                  <o base="org.eolang.string"><!-- "java/io/PrintStream" -->
                     <o base="org.eolang.bytes">6A-61-76-61-2F-69-6F-2F-50-72-69-6E-74-53-74-72-65-61-6D</o>
                  </o>
                  <o base="org.eolang.string"><!-- "println" -->
                     <o base="org.eolang.bytes">70-72-69-6E-74-6C-6E</o>
                  </o>
                  <o base="org.eolang.string"><!-- "(Ljava/lang/String;)V" -->
                     <o base="org.eolang.bytes">28-4C-6A-61-76-61-2F-6C-61-6E-67-2F-53-74-72-69-6E-67-3B-29-56</o>
                  </o>
                  <o base="jeo.bool"><!-- false -->
                     <o base="org.eolang.bytes">00-</o>
                  </o>
               </o>
               <o base="jeo.opcode.return"><!-- #177:return() -->
                  <o base="jeo.int"><!-- 177 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-B1</o>
                  </o>
               </o>
            </o>
            <o base="jeo.seq.of0" name="trycatchblocks-main-907635130"/>
            <o base="jeo.seq.of0" name="local-variable-table-1036459446"/>
         </o>
         <o base="jeo.method" name="j$method-%28%29B">
            <o base="jeo.int"><!-- 8 -->
               <o base="org.eolang.bytes">00-00-00-00-00-00-00-08</o>
            </o>
            <o base="org.eolang.string"><!-- "()B" -->
               <o base="org.eolang.bytes">28-29-42</o>
            </o>
            <o base="org.eolang.string"><!-- "" -->
               <o base="org.eolang.bytes">--</o>
            </o>
            <o base="jeo.seq.of0"
               name="a512a3d5-33f3-46a5-bc8d-6cdb50354d5e-330984523"/>
            <o base="jeo.maxs">
               <o base="jeo.int"><!-- 1 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-01</o>
               </o>
               <o base="jeo.int"><!-- 0 -->
                  <o base="org.eolang.bytes">00-00-00-00-00-00-00-00</o>
               </o>
            </o>
            <o base="jeo.params"/>
            <o base="jeo.seq.of0" name="annotations-589102220"/>
            <o base="jeo.seq.of2" name="body-80952895">
               <o base="jeo.opcode.bipush"><!-- #16:bipush(52) -->
                  <o base="jeo.int"><!-- 16 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-10</o>
                  </o>
                  <o base="jeo.int"><!-- 52 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-34</o>
                  </o>
               </o>
               <o base="jeo.opcode.ireturn"><!-- #172:ireturn() -->
                  <o base="jeo.int"><!-- 172 -->
                     <o base="org.eolang.bytes">00-00-00-00-00-00-00-AC</o>
                  </o>
               </o>
            </o>
            <o base="jeo.seq.of0" name="trycatchblocks-method-2066593084"/>
            <o base="jeo.seq.of0" name="local-variable-table-1120840312"/>
         </o>
         <o base="jeo.seq.of0" name="annotations-1383440932"/>
         <o base="jeo.seq.of0" name="attributes-173017521"/>
      </o>
   </objects>
</program>


java.lang.IllegalArgumentException: 347 error(s) in XML document: schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);cvc-elt.1.a: Cannot find the declaration of element 'program'.;schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException);schema_reference.4: Failed to read schema document 'file:///target/xsd/XMIR-0.49.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. (FileNotFoundException)

	at com.jcabi.xml.StrictXML.<init>(StrictXML.java:124)
	at com.jcabi.xml.StrictXML.<init>(StrictXML.java:93)
	at com.jcabi.xml.StrictXML.<init>(StrictXML.java:84)
	at com.jcabi.xml.StrictXML.<init>(StrictXML.java:74)
	at org.eolang.parser.StrictXmir.<init>(StrictXmir.java:84)
	at org.eolang.parser.StrictXmir.<init>(StrictXmir.java:75)
	at org.eolang.jeo.representation.VerifiedEo.asXml(VerifiedEo.java:72)
	at org.eolang.jeo.representation.MeasuredEo.asXml(MeasuredEo.java:58)
	at org.eolang.jeo.representation.BytecodeRepresentation.toEO(BytecodeRepresentation.java:117)
	at org.eolang.jeo.representation.BytecodeRepresentation.toEO(BytecodeRepresentation.java:104)
	at org.eolang.jeo.representation.BytecodeRepresentationTest.parsesBytecode(BytecodeRepresentationTest.java:48)
	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)

If it's important, I can open a separate issue for this problem, however the origin is the same.

@yegor256
Copy link
Member

@volodya-lombrozo better close this one and open a new one, since the scope is changed: we have a new module, but it doesn't work as expected.

@volodya-lombrozo
Copy link
Member Author

Continuation is here: #3677

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants