Can't Parse XHTML with XPATH

I can't seem to parse a simple XHTML 1.1 document with XPATH. In the code below, the string xmlDoesntWork is taken directly from http://www.w3.org/TR/2001/REC-xhtml11-20010531/conformance.html. However, XPATH can't find the <title> element unless I remove the DOCTYPE line & the xmlns attribute from the <html> element (the xmlWorks string). XPATH returns null for the <title> element in the first string, but correctly retrieves the title in the second string. I tried adding a namespace context argument, but that didn't make any difference.
Can anyone see what I'm doing wrong?
import java.io.StringReader;
import javax.xml.namespace.NamespaceContext;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.Node;
import org.xml.sax.InputSource;
public class Test
public static void main(String[] unused)throws Exception
   final String path = "/html/head/title";
   final String xmlDoesntWork =
      "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
      "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">" +
      "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" >" +
      "<head>" +
      "<title>Virtual Library</title>" +
      "</head>" +
      "<body>" +
      "<p>Moved to <a href=\"http://vlib.org/\">vlib.org</a>.</p>" +
      "</body>" +
      "</html>";
   String title = getText(xmlDoesntWork, path, null);
   System.out.println("Title: " + title);  
   final String xmlWorks =
      "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
      "<html>" +
      "<head>" +
      "<title>Virtual Library</title>" +
      "</head>" +
      "<body>" +
      "<p>Moved to <a href=\"http://vlib.org/\">vlib.org</a>.</p>" +
      "</body>" +
      "</html>";
   title = getText(xmlWorks, path, null);
   System.out.println("Title: " + title);  
private static String getText(String xml, String path, NamespaceContext context)
   throws Exception
   StringReader reader = new StringReader(xml);          // Get input source
   InputSource  source = new InputSource(reader);
   XPath xpath = XPathFactory.newInstance().newXPath();
   if (context != null)                                  // If there's a namespace context
      xpath.setNamespaceContext(context);                // Inform XPATH
   XPathExpression expression = xpath.compile(path);     
   Node node = (Node)expression.evaluate(source, XPathConstants.NODE);
   return node == null ? null : node.getTextContent();
}

I'm perplexed. I made the change you suggested (code below), and still get the same error. Did I miss something?
import java.io.StringReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import javax.xml.namespace.NamespaceContext;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.Node;
import org.xml.sax.InputSource;
public class Test implements NamespaceContext
private static final HashMap<String,String> URI_MAP    ;
private static final HashMap<String,String> PREFIX_MAP ;
private static final String XHTML_PREFIX = "xhtml"                                     ;
private static final String XHTML_URI    = "http://www.w3.org/1999/xhtml"              ;
private static final String XSI_PREFIX   = "xsi"                                       ;
private static final String XSI_URI      = "http://www.w3.org/2001/XMLSchema-instance" ;
static
   URI_MAP = new HashMap<String,String>();
   URI_MAP.put(XSI_PREFIX  , XSI_URI  );
   URI_MAP.put(XHTML_PREFIX, XHTML_URI);
   PREFIX_MAP = new HashMap<String,String>();
   PREFIX_MAP.put(XSI_URI  , XSI_PREFIX  );
   PREFIX_MAP.put(XHTML_URI, XHTML_PREFIX);
public static void main(String[] unused)throws Exception
   new Test().run();
public void run()throws Exception
   final String path = "/xhtml:html/xhtml:head/xhtml:title";
   final String xmlDoesntWork =
      "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
      "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">" +
      "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" >" +
      "<head>" +
      "<title>Virtual Library</title>" +
      "</head>" +
      "<body>" +
      "<p>Moved to <a href=\"http://vlib.org/\">vlib.org</a>.</p>" +
      "</body>" +
      "</html>";
   String title = getText(xmlDoesntWork, path, this);
   System.out.println("Title: " + title);  
   final String xmlWorks =
      "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
      "<html>" +
      "<head>" +
      "<title>Virtual Library</title>" +
      "</head>" +
      "<body>" +
      "<p>Moved to <a href=\"http://vlib.org/\">vlib.org</a>.</p>" +
      "</body>" +
      "</html>";
   title = getText(xmlWorks, path, this);
   System.out.println("Title: " + title);  
private static String getText(String xml, String path, NamespaceContext context)
   throws Exception
   StringReader reader = new StringReader(xml);          // Get input source
   InputSource  source = new InputSource(reader);
   XPath xpath = XPathFactory.newInstance().newXPath();
   if (context != null)                                  // If there's a namespace context
      xpath.setNamespaceContext(context);                // Inform XPATH
   XPathExpression expression = xpath.compile(path);     
   Node node = (Node)expression.evaluate(source, XPathConstants.NODE);
   return node == null ? null : node.getTextContent();
* Determines the URI associated with a namespace prefix.
* @param prefix The prefix.
* @return The  URI.
public String getNamespaceURI(String prefix)
   String URI = URI_MAP.get(prefix);
   return URI;
* Determines the prefix associated with a namespace URI.
* @param URI The URI.
* @return The prefix.
public String getPrefix(String URI)
   String prefix = PREFIX_MAP.get(URI);
   return prefix;
* Retrieves prefixes associated with a namespace URI.
* @param URI The URI.
* @return An iterator to the collection of prefixes.
public Iterator getPrefixes(String URI)
   ArrayList<String> list = new ArrayList<String>();
   list.add(getPrefix(URI));
   return list.iterator();
}

Similar Messages

  • Parse xml document with xpath

    I would like to parse an xml document using xpath, see:
    http://www.onjava.com/pub/a/onjava/2005/01/12/xpath.html
    however, in the documentation (in the link above), it states that I need J2SE 5.0.
    Currently, I have:
    $ java -version
    java version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    Does that mean that I really have to install J2SE 5.0 in order to use J2SE 5.0's XPath support? Does anybody know anything about getting started with XPath, and whether I can just use my existing version of Java? I've never used XPath.
    For more documentation, one can view:
    http://www.w3.org/TR/xpath20/
    Thank you.

    I have copied the code for the xpath tutorial on
    http://www.onjava.com/pub/a/onjava/2005/01/12/xpath.html
    exactly as it is on the tutorial, and imported the correct jars (I think).
    But still my code is giving lots of errors!
    Granted its my first shot but anyway here's the code and the errors...
    package test;
    import org.jdom.xpath.*;
    import java.io.*;
    import javax.xml.xpath.*;
    public class XPath {
         public static void main (String [] args){
              XPathFactory factory = XPathFactory.newInstance();
              XPath xPath=factory.newXPath();
              XPathExpression  xPathExpression=xPath.compile("/catalog/journal/article[@date='January-2004']/title");
              File xmlDocument = new File("/home/myrmen/workspace/Testing/test/catalog.xml");     
              //FileInputStream fis = new FileInputStream(xmldocument); 
              InputSource inputSource = new InputSource(new FileInputStream(xmlDocument));
              String title = xPathExpression.evaluate(inputSource);
              String publisher = xPath.evaluate("/catalog/journal/@publisher", inputSource);
              String expression="/catalog/journal/article";
              NodeSet nodes = (NodeSet) xPath.evaluate(expression, inputSource, XPathConstants.NODESET);
              NodeList nodeList=(NodeList)nodes;
              SAXBuilder saxBuilder = new SAXBuilder("org.apache.xerces.parsers.SAXParser");
              org.jdom.Document jdomDocument = saxBuilder.build(xmlDocument);
              org.jdom.Attribute levelNode = (org.jdom.Attribute)(XPath.selectSingleNode(jdomDocument,"/catalog//journal[@title='JavaTechnology']" + "//article[@date='January-2004']/@level"));
              levelNode.setValue("Intermediate");
              org.jdom.Element titleNode = (org.jdom.Element) XPath.selectSingleNode( jdomDocument,"/catalog//journal//article[@date='January-2004']/title");
              titleNode.setText("Service Oriented Architecture Frameworks");
              java.util.List nodeList = XPath.selectNodes(jdomDocument,"/catalog//journal[@title='Java Technology']//article");
              Iterator iter=nodeList.iterator();
              while(iter.hasNext()) {
                   org.jdom.Element element = (org.jdom.Element) iter.next();
                   element.setAttribute("section", "Java Technology");
              XPath xpath = XPath.newInstance("/catalog//journal:journal//article/@journal:level");
              xpath.addNamespace("journal", "http://www.w3.org/2001/XMLSchema-Instance");
              levelNode = (org.jdom.Attribute) xpath.selectSingleNode(jdomDocument);
              levelNode.setValue("Advanced");
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         Type mismatch: cannot convert from XPath to XPath
         The method compile(String) is undefined for the type XPath
         InputSource cannot be resolved to a type
         InputSource cannot be resolved to a type
         NodeSet cannot be resolved to a type
         NodeSet cannot be resolved to a type
         NodeList cannot be resolved to a type
         NodeList cannot be resolved to a type
         SAXBuilder cannot be resolved to a type
         SAXBuilder cannot be resolved to a type
         The method selectSingleNode(Document, String) is undefined for the type XPath
         The method selectSingleNode(Document, String) is undefined for the type XPath
         Duplicate local variable nodeList
         The method selectNodes(Document, String) is undefined for the type XPath
         Iterator cannot be resolved to a type
         The method newInstance(String) is undefined for the type XPath
         The method addNamespace(String, String) is undefined for the type XPath
         The method selectSingleNode(Document) is undefined for the type XPath
         at test.XPath.main(XPath.java:12)

  • Parsing XML string with XPath

    Hi,-
    I am trying to parse an XML string with xpath as follows but I am getting null for getresult.
    I am getting java.xml.xpath.xpathexpressionexception at line where
    getresult = xpathexpression.evaluate(isource); is executed.
    What should I do after
    xpathexpression = xPath.compile("a/b");in the below snippet?
    Thanks
    String xmlstring ="..."; // a valid XML string;
    Xpath xpath = XPathFactory.newInstance().newPath();
    xpathexpression = xPath.compile("a/b");
    // I guess the following line is not correct
    InputSource isource = new inputSource(new ByteArrayInputStream(xmlstring.getBytes())); right
    getresult = xpathexpression.evaluate(isource);My xml string is like:
    <a>
      <b>
         <result> valid some more tags here
         </result>
      </b>
      <c> 10
      </c>
    </a>Edited by: geoman on Dec 8, 2008 2:30 PM

    I've never used the version of evaluate that takes an InputSource. The difficulty with using it is that it does not save the DOM object. Each expression you evaluate will have to create the DOM object, use it once and then throw it away. I've yet to write a program that only needs one answer from an XML document. Usually, I use XPath to locate somewhere in a document and then read "nearby" content, add new content nearby, delete content, or move content. I'd suggest you may want to parse the XML stream and save the DOM Document.
    Second, all of the XPath expressions search from a "context node". I have not had good luck searching from the Document object, so I always get the root element first. I think the expression should work if you use the root as the context node. You will need one of the versions of evaluate that uses an Object as the parameter.

  • Flash can not parse this document.  What's up with this?

    I've never seen this one before.  I'm using CS5
    On windows 7
    I'm developing a component.  I have it in the Components panel.
    But I update it alot, and copy the shim to the prototype file quite often.
    Every now and then I get the error that the file cannot be opened.
    In the output panel is says Flash can not parse this document.
    I have lost access to one of my files.
    If I save as CS4 it always loads.
    So now I'm saving in both formats.
    I don't understand what is happening.
    Is this a bug?  I've checked for updates.
    I have the latest build for CS5 Flash Prof

    Did you use any special character like & ^ $ etc... in any of the components field? Flash CS4 was more lenient with special character compare to Flash CS5. One way to fix CS5 files is to change .fla extension to .zip. Unzip the file, go through the DOMDocument.xml file or xml file inside LIBRARY folder and remove the special character. After that double click the fla file you see inside the zip folder and Resave this file in Flash.
    Quynh
    Flash Pro, QE

  • Can't parse WSDL when useProxy=true

    Hello everyone.
    I'm using Flex since 1.5 and now try to migrate Flex2.0.
    Most of our application need to access data via WebService,
    and we use <mx:WebService> tag to access them.
    In our Flex1.5 environment, we also use Proxy service of Flex
    (with specifying useProxy=true), and it works fine.
    But in Flex2.0, our mxml application can't parse the same
    WSDL when useProxy=true!
    On the other hand, our application can parse correctly when
    not using proxy service. (useProxy=false and set crossdomain.xml on
    the root of datasource Web server.)
    I'was so confusing that I captured HTTP traffic between
    client application and server( both FlexDataService and Data source
    Web Server), with ServiceCapture.
    When useProxy=true, at first, client application sent request
    to Flex Data Service to get not only calling the SOAP operations
    but also calling WSDL itself. After that, Flex Data Service
    returned the response message as WSDL data, and I found the WSDL
    data was broken.
    When useProxy=false, of cource, the WSDL was passed
    datasource Web Server correctly and application could parse it
    without problem.
    These parse error depends on the WebService.
    I wonder this is some bug of Flex Data Service or not.......

    Hello, everyone.
    After that, I tried to change the encoding of WSDL, which was
    broken when useProxy=true, from UTF-16 to UTF-8.
    And I could get correct WSDL data from Flex Data Service's
    proxy.....
    It seems when the encoding of WSDL is UTF-16, the parse is
    failed, but I'm not sure this problem is happened commonly and this
    is some of the bug of Flex Data Services.

  • Can't parse configuration  jsf-ri-runtime.xml

    When I try to do the Example about JSF in (How To Use JSF with JDeveloper 10g) and run it I found this problem
    SEVERE: Can't parse configuration file:classloader:/com/sun/faces/jsf-ri-runtime.xml
    and I have jDeveloper ver 9.0.5.2
    and java ver 1.4.2.04
    Plz Help
    Alaa

    I installed the 9.052 build of JDeveloper and it solved the problem. Per forum thread: Re: JSF Configuration error in JDeveloper10g

  • Can't parse configuration file

    hi i'm trying to deploy an application on oc4j 10.1.3.1.0. i use Eclipse IDE and ant for deploy.
    i have this:
    [java] java.rmi.RemoteException: bindWebApp() failed!; nested exception is:
    [java] oracle.oc4j.admin.internal.DeployerException: Can't parse configuration file:code-source:/C:/JDeveloper/j2ee/home/applib/adf-faces-impl.jar!/META-INF/faces-config.xml
    [java] at com.evermind.server.administration.DefaultApplicationServerAdministrator.bindWebApp(DefaultApplicationServerAdministrator.java:420)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:585)
    [java] at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    [java] at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    [java] at java.lang.Thread.run(Thread.java:595)
    [java] Caused by: oracle.oc4j.admin.internal.DeployerException: Can't parse configuration file:code-source:/C:/JDeveloper/j2ee/home/applib/adf-faces-impl.jar!/META-INF/faces-config.xml
    [java] at com.sun.faces.config.ConfigureListener.parse(ConfigureListener.java:1224)
    [java] at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:321)
    [java] at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1130)
    [java] at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:738)
    [java] at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    [java] at com.evermind.server.Application.getHttpApplication(Application.java:545)
    [java] at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
    [java] at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1909)
    [java] at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1606)
    [java] at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    [java] at com.evermind.server.administration.DefaultApplicationServerAdministrator.bindWebApp(DefaultApplicationServerAdministrator.java:418)
    [java] ... 7 more
    [java] Error: bindWebApp() failed!; nested exception is:
    [java] oracle.oc4j.admin.internal.DeployerException: Can't parse configuration file:code-source:/C:/JDeveloper/j2ee/home/applib/adf-faces-impl.jar!/META-INF/faces-config.xml

    I had similar problems with jsf-impl.jar.
    Sun do provide the xsd schemas locally inside the jar files so internet connection
    should not be required if parser is configured right.
    In my case I removed commons-digester-1.6.jar from my application and replaced it
    with commons-digester.jar supplied by JDeveloper builtin library named Commons Digester 1.5.
    Digester was configuring the (oracle) xerces parser.

  • Parsing xml with dom4j - cannot find jar file

    Hi,
    I'm using Jdeveloper 10g and tomcat 5.5.9. I have a servlet which calls a java class (ParseXML.java) that trys to parse an xml string using dom4j. A snippet of ParseXML.java...
    import org.dom4j.Document;
    import org.dom4j.DocumentException;
    import org.dom4j.io.SAXReader;
    public class ParseXML  {
    public ParseXML(String xml) {
              this.XML_STRING = xml;
         public String parse() {
              SAXReader reader = new SAXReader();
              Document document = null;
              try  {
                   document = reader.read(XML_STRING);
                   } catch (DocumentException de)  {
                   return de.getMessage();
              } catch (Exception e) {
                   return e.getMessage();
                   return "The xml root value is: " + document.getRootElement().getName();
    } I've downloaded the dom4j 1.6.1 jar and put it on the project class path (specified in the jdev project proerties), and my code also compiles ok. But when i try to instantiate ParseXML from my servlet i get a runtime exception:
    javax.servlet.ServletException: Servlet execution threw an exception
    root cause
    java.lang.NoClassDefFoundError: org/dom4j/DocumentException
         arcims.GetMapServlet.doPost(GetMap.java:45)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802I'm not sure if this is a class path issue or something else; i've checked and rechecked the classpath and nothing seems amiss.
    Suggestions, anyone?

    Question: Is it really necessary to use a
    StringReader if my xml document is not saved to disk?
    I get XML_STRING from a web service, convert it into
    a xml document so i can manipulate/parse it, but then
    i don't save the document, i just discard it. How
    does my system's default character set affect string
    manipulations that i do within my java app?Your system's default charset doesn't have anything to do with string manipulations, if by that you mean substrings and concatenations of strings. It is used when you convert strings to bytes and bytes to strings. If your string contains a character that can't be handled by your default charset, then converting that string to bytes will put ? in place of that character. Converting those bytes back to a string will leave the ? as is. Thus your string has been changed.
    Also converting the string to bytes can have bad results, because the first thing the XML parser does is to convert the bytes back to a string, using the charset declared in the XML. If this charset is different from your system's default, then your XML may be corrupted by this process if it contains characters that are encoded differently in the two charsets. The typical example of this is European accented letters like �, which are encoded differently in ISO-8859-1 or Windows-1252 (most people's default charsets) and UTF-8 (the default XML charset).
    Besides, converting the string to bytes just so it can be immediately converted back to a string is rather wasteful.

  • Why I'm getting the jxls Error : Can't parse an expression rm.exec

    Hi,
    I used the RowSet in JXLS and it's working perfectly, but I'm getting Error when I use the SQL Reporting in JXLS
    Error : java.lang.RuntimeException: Can't parse an expression rm.exec('select name from Designer' )
    My Java File :
    package net.sf.jxls.report;
    import net.sf.jxls.exception.ParsePropertyException;
    import net.sf.jxls.transformer.XLSTransformer;
    import net.sf.jxls.report.ReportManager;
    import net.sf.jxls.report.ReportManagerImpl;
    import java.sql.*;
    import java.util.Map;
    import java.util.HashMap;
    public class QReport {
    private static String templateFileName = "examples/Report/QReport.xls";
    private static String destFileName = "examples/Report/QReport_Out.xls";
    public static void main(String[] args) throws Exception, ClassNotFoundException, SQLException {
    if (args.length >= 2) {
    templateFileName = args[0];
    destFileName = args[1];
    try {
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
         Connection con = DriverManager.getConnection("jdbc:odbc:NewDB");
         Map beans = new HashMap();
         ReportManager reportmanager = new ReportManagerImpl(con, beans);
         beans.put("rm", reportmanager);
         XLSTransformer transformer = new XLSTransformer();
         transformer.transformXLS(templateFileName, beans, destFileName);
    }catch(Exception e){
         System.out.println("Error : "+e);
    The Excel file as follows
    <jx:forEach items="${rm.exec('select name from Designer' )}" var="design">
    ${design.name}
    </jx:forEach>
    Thanks in advance.

    Hi,
    I don't know JXLS and this for sure is the wrong forum to ask this question (I suggest to discuss problems with the source code originator at Sourceforge), however
    ${rm.exec('select name from Designer' )}"
    can't work because by definition, Expression language doesn't take arguments. There is only one option to pass an argument to Expression Language and this is when the method you access in fact is a wrapped hashmap. So my assumption is that the exception occurs because of the wrong use of EL.
    If you looked at the sample on SourceForge you could see that I am right
    http://jxls.sourceforge.net/samples/tagsample.html
    Frank

  • Parsing XML with Namespace

    Hi,
    Can somebody help me with the following:-
    I have an XMLType in pl/sql as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <rapdrpProcessCIN:GetCINRes xmlns:rapdrpProcessCIN="http://rapdrp.com/processcin/transactional/model/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://rapdrp.com/processcin/transactional/model/1.0/"
    xmlns:N1="http://rapdrp.com/common/bodcomponents/transactional/model/1.0/"
    xmlns:N2="http://rapdrp.com/gis/cin/business/model/1.0/">
    <rapdrpProcessCIN:ApplicationArea>
    <N1:Sender>
    <N1:Id>PRT01</N1:Id>
    </N1:Sender>
    <N1:Receiver>
    <N1:CompanyName>MGVCL</N1:CompanyName>
    <N1:CompanyId>string</N1:CompanyId>
    </N1:Receiver>
    <N1:Reference>
    <N1:BODCreationDateTime>1697-02-01T00:00:00Z</N1:BODCreationDateTime>
    <N1:BusinessProcessId>BP014</N1:BusinessProcessId>
    <N1:MessageId>string</N1:MessageId>
    <N1:TransactionId>string</N1:TransactionId>
    <N1:Username>string</N1:Username>
    <N1:Token>string</N1:Token>
    </N1:Reference>
    </rapdrpProcessCIN:ApplicationArea>
    <rapdrpProcessCIN:DataArea>
    <rapdrpProcessCIN:CIN>
    <N2:CIN>string</N2:CIN>
    </rapdrpProcessCIN:CIN>
    <rapdrpProcessCIN:ConsumerNumber>string</rapdrpProcessCIN:ConsumerNumber>
    <rapdrpProcessCIN:SRNumber>string</rapdrpProcessCIN:SRNumber>
    </rapdrpProcessCIN:DataArea>
    </rapdrpProcessCIN:GetCINRes>Note the xmlns attribute of the <message> tag is "" which is unusual, but not something I can't modify.
    I wish to extract the text string of the BusinessProcessId tag. I have attempted the following:
    DECLARE
    v_result varchar2(32765);
    v_xml XMLType;
    BEGIN
    v_xml := XMLType('....above XML....');
    v_result := xmltype.extract(v_xml, '/rapdrpProcessCIN:GetCINRes/rapdrpProcessCIN:ApplicationArea/Reference/BusinessProcessId/text()','xmlns:rapdrpProcessCIN="http://rapdrp.com/processcin/transactional/model/1.0/"').getStringVal();
    dbms_output.put_line('v_result:'||v_result);
    END;
    .... and I'm receiving the following result:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at line 6
    What am I doing wrong?
    Any help appreciated.
    Regards,
    Himani

    Hello,
    Can u please help me in resolving this issue.
    I need to parse an XML in which some tags does not contain data or there is no such tag present in an XML.
    Whenever i parse such a XML i receive error-ORA-30625: method dispatch on NULL SELF Argument is disallowed.
    As per my requirement - I may get values in all tags at one time and next time i may receive values of some fields only.
    I have tried this:
    DECLARE
    v_result varchar2(32765);
    v_xml XMLType;
    BEGIN
    v_xml := XMLType('<PurchaseOrder xmlns="http://rapdrp.com/processcin/transactional/model/1.0/">
    <Reference>SBELL-2002100912333601PDT</Reference>
    <Actions>
    <Action>
    <User>SVOLLMAN</User>
    </Action>
    </Actions>
    <Reject/>
    <Requestor>Sarah J. Bell</Requestor>
    <User>SBELL</User>
    <CostCenter>S30</CostCenter>
    <ShippingInstructions>
    <name></name>
    <address>400 Oracle Parkway
    Redwood Shores
    CA
    94065
    USA</address>
    <telephone>650 506 7400</telephone>
    </ShippingInstructions>
    <SpecialInstructions>Air Mail</SpecialInstructions>
    <LineItems>
    <LineItem ItemNumber="1">
    <Description>A Night to Remember</Description>
    <Part Id="715515009058" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="2">
    <Description>The Unbearable Lightness Of Being</Description>
    <Part Id="37429140222" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="3">
    <Description>Sisters</Description>
    <Part Id="715515011020" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    </LineItems>
    </PurchaseOrder>');
    v_result := xmltype.extract(v_xml,'/PurchaseOrder/ShippingInstructions/name/text()','xmlns="http://rapdrp.com/processcin/transactional/model/1.0/"').getStringVal();
    dbms_output.put_line('v_result:'||v_result);
    END;
    In this the value in <name></name> tag is NULL.
    Please let me know if i can parse this XML.
    Regards,
    Himani

  • XML/XPath question--how to select a range of elements with XPath?

    Hi there,
    I have an XML DOM in memory. I need to do hold it and issue only parts of it to my client app in "pages". Each page would be a self-contained XML doc, but would be a subset of the original doc. So for instance the first page is top-level elements 1-5. 2nd page would be 6-10 etc. Is this solution best solved with XPath? If not, what's the best way? If so, I have the following question:
    Is there a way to use XPath to select a range of nodes based on position within the document? I know I can do an XPath query that will return a single Node based on position. So for example if I wanted the first node in some XML Book Catalog I could do XPathAPI.selectSingleNode(doc, "/Catalog/Book[position()=1]"); I could wrap the previous call in a loop, replacing the numeric literal each time, but that seems horribly inefficient.
    Any ideas? Thanks much in advance!
    Toby Buckley

    Your question is about marking a range of cells. 99% of the code posted has nothing to do with this. If you want to create a simple table for test purposes then just do:
    JTable table = new JTable(10, 5);
    JScrollPane scrollPane = new JScrollPane( table );
    getContentPane().add( scrollPane );
    In three line of code you have a simple demo program.
    When I leave the mouse button again, these bunch/range of cells shall stay "marked". table.setCellSelectionEnabled( true );
    and I'd like to obtain, say, a vector of a vector containing just those data marked beforeUse the getSelectedRows() and getSelectedColumns() methods for this information. I would suggest you create a Point object to reflect the row/column position and then add the point to an ArrayList.

  • Poor parse time with OLAP query

    Hello!
    I have built ROLAP cube and now trying to analyse performance.
    Most of problems are coming from SQL statements which are prepared automaticaly by BI beans (Disco or Excel). These statements have a very big parse time because they use IN predicates with a lot of values. When I tried to prepare an execution plan for these statement Oracle thinks 20 or 30 second and then gives correct plan (using query rewrite), but it shows that plan preparation took only 0.04 or 0.1 second.
    If I decrese the number of INs in this statement then plan is preapred in 1 second.
    Question: Are there any parameters which can reduce parse time for such statements?
    For example my statement has following:
    WHERE
    (((ALIAS_R124) = :B1 )
    AND ((ALIAS_R110) = :B2 )
    AND ((ALIAS_R135) IN ((-8485.000000) , (-8486.000000) , (-8487.000000) , (-8488.000000) , (-8489.000000) , (-8490.000000) , (-8491.000000) , (-8492.000000) , (-8493.000000) , (-8494.000000) , (-8495.000000) , (-8496.000000) ) )
    AND ((ALIAS_R119) IN ((-8509568.000000) , (-8509863.000000) , (-8509643.000000) , (-8509538.000000) , (-8509476.000000) , (-8509449.000000) , (-8509446.000000) , (-8509334.000000) , (-8509318.000000) , (-8508828.000000) , (-8508822.000000) , (-8508622.000000) , (-8508306.000000) , (-8507896.000000) , (-8507749.000000) , (-8508881.000000) , (-8507583.000000) , (-8509641.000000) , (-8509537.000000) , (-8509463.000000) , (-8509371.000000) , (-8509113.000000) , (-8509035.000000) , (-8508534.000000) , (-8508531.000000) ,
    (-8508314.000000) , (-8507510.000000) , (-8509778.000000) , (-8509919.000000) , (-8509826.000000) , (-8509432.000000) , (-8509328.000000) , (-8508638.000000) , (-8508337.000000) , (-8508297.000000) , (-8508163.000000) , (-8508147.000000) , (-8507369.000000) , (-8508878.000000) , (-8507503.000000) , (-8507383.000000) , (-8507337.000000) , (-8507281.000000) , (-8509956.000000) , (-8509825.000000) , (-8509541.000000) , (-8509014.000000) , (-8508422.000000) , (-8507699.000000) , (-8509744.000000) ,
    (-8509477.000000) , (-8507799.000000) , (-8507256.000000) , (-8509502.000000) , (-8509052.000000) , (-8508768.000000) , (-8507594.000000) , (-8509997.000000) , (-8508818.000000) , (-8508736.000000) , (-8508386.000000) , (-8507534.000000) , (-8509110.000000) , (-8508955.000000) , (-8508797.000000) , (-8507804.000000) , (-8507618.000000) , (-8507402.000000) , (-8509983.000000) , (-8509965.000000) , (-8509680.000000) , (-8509354.000000) , (-8509184.000000) , (-8508677.000000) , (-8508659.000000) ,
    (-8508265.000000) , (-8508027.000000) , (-8507453.000000) , (-8507388.000000) , (-8509565.000000) , (-8509097.000000) , (-8508891.000000) , (-8508529.000000) , (-8507670.000000) , (-8507427.000000) , (-8508892.000000) , (-8508375.000000) , (-8507415.000000) , (-8509521.000000) , (-8508993.000000) , (-8508769.000000) , (-8508527.000000) , (-8508316.000000) , (-8507513.000000) , (-8507456.000000) , (-8509977.000000) , (-8509593.000000) , (-8509570.000000) , (-8509479.000000) , (-8509418.000000) ,
    (-8509275.000000) , (-8509129.000000) , (-8509121.000000) , (-8509098.000000) , (-8509004.000000) , (-8508981.000000) , (-8508886.000000) , (-8508858.000000) , (-8508806.000000) , (-8508784.000000) , (-8508720.000000) , (-8508656.000000) , (-8508570.000000) , (-8508428.000000) , (-8508417.000000) , (-8508352.000000) , (-8508279.000000) , (-8508181.000000) , (-8508043.000000) , (-8507888.000000) , (-8507765.000000) , (-8507560.000000) , (-8507547.000000) , (-8507323.000000) , (-8508848.000000) ,
    (-8509940.000000) , (-8509642.000000) , (-8509555.000000) , (-8509535.000000) , (-8509513.000000) , (-8509443.000000) , (-8509284.000000) , (-8509242.000000) , (-8509226.000000) , (-8509192.000000) , (-8509191.000000) , (-8509039.000000) , (-8509007.000000) , (-8508861.000000) , (-8508730.000000) , (-8508385.000000) , (-8508333.000000) , (-8508317.000000) , (-8508315.000000) , (-8508112.000000) , (-8508034.000000) , (-8507991.000000) , (-8507967.000000) , (-8507741.000000) , (-8507444.000000) ,
    (-8507403.000000) , (-8507319.000000) , (-8507261.000000) , (-8507245.000000) , (-8510001.000000) , (-8509637.000000) , (-8509127.000000) , (-8509115.000000) , (-8508343.000000) , (-8507944.000000) , (-8507317.000000) , (-8510002.000000) , (-8509933.000000) , (-8509922.000000) , (-8509906.000000) , (-8509694.000000) , (-8509652.000000) , (-8509594.000000) , (-8509349.000000) , (-8509301.000000) , (-8509080.000000) , (-8508859.000000) , (-8508717.000000) , (-8508536.000000) , (-8508433.000000) ,
    (-8508266.000000) , (-8508250.000000) , (-8508223.000000) , (-8508080.000000) , (-8507908.000000) , (-8507754.000000) , (-8507370.000000) , (-8507335.000000) , (-8507318.000000) , (-8507284.000000) , (-8509764.000000) , (-8509647.000000) , (-8509330.000000) , (-8509054.000000) , (-8508209.000000) , (-8507852.000000) , (-8507586.000000) , (-8509649.000000) , (-8509500.000000) , (-8509487.000000) , (-8509264.000000) , (-8508856.000000) , (-8508775.000000) , (-8508413.000000) , (-8508391.000000) ,
    (-8508236.000000) , (-8507948.000000) , (-8507921.000000) , (-8507861.000000) , (-8507793.000000) , (-8507581.000000) , (-8507362.000000) , (-8509391.000000) , (-8508801.000000) , (-8509874.000000) , (-8509823.000000) , (-8508539.000000) , (-8508528.000000) , (-8508515.000000) , (-8508158.000000) , (-8508003.000000) , (-8507533.000000) , (-8509559.000000) , (-8509507.000000) , (-8509314.000000) , (-8509306.000000) , (-8509222.000000) , (-8509107.000000) , (-8508979.000000) , (-8508817.000000) ,
    (-8508754.000000) , (-8508655.000000) , (-8508607.000000) , (-8508221.000000) , (-8508207.000000) , (-8507912.000000) , (-8507306.000000) , (-8507265.000000) , (-8507727.000000) , (-8509945.000000) , (-8509525.000000) , (-8509139.000000) , (-8507981.000000) , (-8507411.000000) , (-8509847.000000) , (-8509382.000000) , (-8508888.000000) , (-8508022.000000) , (-8509595.000000) , (-8508292.000000) , (-8508268.000000) , (-8508257.000000) , (-8507720.000000) , (-8509597.000000) , (-8509958.000000) ,
    (-8509685.000000) , (-8509614.000000) , (-8509571.000000) , (-8509470.000000) , (-8509143.000000) , (-8508976.000000) , (-8508845.000000) , (-8508641.000000) , (-8508551.000000) , (-8508434.000000) , (-8508418.000000) , (-8508381.000000) , (-8508377.000000) , (-8508376.000000) , (-8508364.000000) , (-8508188.000000) , (-8507869.000000) , (-8507855.000000) , (-8507681.000000) , (-8507638.000000) , (-8507377.000000) , (-8507336.000000) , (-8509353.000000) , (-8509038.000000) , (-8508393.000000) ,
    (-8507657.000000) , (-8509400.000000) , (-8509310.000000) , (-8509253.000000) , (-8509031.000000) , (-8508581.000000) , (-8508468.000000) , (-8508445.000000) , (-8508408.000000) , (-8507646.000000) , (-8507535.000000) , (-8507260.000000) , (-8507238.000000) , (-8508815.000000) , (-8508369.000000) , (-8508293.000000) , (-8508589.000000) , (-8508578.000000) , (-8507573.000000) , (-8509845.000000) , (-8509773.000000) , (-8509605.000000) , (-8509530.000000) , (-8509519.000000) , (-8509291.000000) ,
    (-8509220.000000) , (-8508934.000000) , (-8508637.000000) , (-8508613.000000) , (-8508611.000000) , (-8508356.000000) , (-8508349.000000) , (-8508225.000000) , (-8508137.000000) , (-8508102.000000) , (-8508082.000000) , (-8507897.000000) , (-8507486.000000) , (-8507364.000000) , (-8507736.000000) , (-8509286.000000) , (-8509257.000000) , (-8508959.000000) , (-8507707.000000) , (-8507592.000000) , (-8509190.000000) , (-8508938.000000) , (-8508873.000000) , (-8507429.000000) , (-8509975.000000) ,
    (-8509398.000000) , (-8509036.000000) , (-8508004.000000) , (-8507768.000000) , (-8508183.000000) , (-8509456.000000) , (-8508054.000000) , (-8507490.000000) , (-8509590.000000) , (-8509464.000000) , (-8509441.000000) , (-8508847.000000) , (-8507797.000000) , (-8509604.000000) , (-8509399.000000) , (-8508204.000000) , (-8507823.000000) , (-8509963.000000) , (-8509861.000000) , (-8509836.000000) , (-8509323.000000) , (-8509067.000000) , (-8508734.000000) , (-8508476.000000) , (-8508195.000000) ,
    (-8507255.000000) , (-8510005.000000) , (-8509799.000000) , (-8509362.000000) , (-8509158.000000) , (-8508486.000000) , (-8507802.000000) , (-8507231.000000) , (-8507828.000000) , (-8507630.000000) , (-8509760.000000) , (-8508067.000000) , (-8508017.000000) , (-8509053.000000) , (-8508235.000000) , (-8508108.000000) , (-8507606.000000) , (-8507536.000000) , (-8507350.000000) , (-8509350.000000) , (-8509203.000000) , (-8509175.000000) , (-8507683.000000) , (-8507301.000000) , (-8509821.000000) ,
    (-8509332.000000) , (-8508665.000000) , (-8508635.000000) , (-8509061.000000) , (-8507241.000000) , (-8509178.000000) , (-8508930.000000) , (-8508786.000000) , (-8507900.000000) , (-8507424.000000) , (-8509246.000000) , (-8508667.000000) , (-8509237.000000) , (-8508841.000000) , (-8508731.000000) , (-8508249.000000) , (-8508872.000000) , (-8508791.000000) , (-8509962.000000) , (-8509285.000000) , (-8508482.000000) , (-8508330.000000) , (-8507577.000000) , (-8508909.000000) , (-8508850.000000) ,
    (-8507873.000000) , (-8507627.000000) , (-8509161.000000) , (-8508863.000000) , (-8508243.000000) , (-8507731.000000) , (-8509583.000000) , (-8508833.000000) , (-8508770.000000) , (-8508726.000000) , (-8509948.000000) , (-8509090.000000) , (-8509037.000000) , (-8508960.000000) , (-8507546.000000) , (-8509753.000000) , (-8508461.000000) , (-8507397.000000) , (-8509809.000000) , (-8509573.000000) , (-8509024.000000) , (-8508712.000000) , (-8508978.000000) , (-8508766.000000) , (-8507694.000000) ,
    (-8507757.000000) , (-8509598.000000) , (-8509424.000000) , (-8509234.000000) , (-8509201.000000) , (-8507934.000000) , (-8507831.000000) , (-8507704.000000) , (-8507506.000000) , (-8507228.000000) , (-8509754.000000) , (-8508798.000000) , (-8508725.000000) , (-8509717.000000) , (-8509577.000000) , (-8509109.000000) , (-8508526.000000) , (-8507950.000000) , (-8507762.000000) , (-8507680.000000) , (-8507579.000000) , (-8509865.000000) , (-8509854.000000) , (-8509619.000000) , (-8508322.000000) ,
    (-8508241.000000) , (-8507969.000000) , (-8507947.000000) , (-8507803.000000) , (-8507709.000000) , (-8507584.000000) , (-8507327.000000) , (-8507246.000000) , (-8508253.000000) , (-8509897.000000) , (-8508670.000000) , (-8508084.000000) , (-8509994.000000) , (-8509692.000000) , (-8509687.000000) , (-8509549.000000) , (-8509435.000000) , (-8509015.000000) , (-8508980.000000) , (-8508939.000000) , (-8508857.000000) , (-8508747.000000) , (-8508695.000000) , (-8508543.000000) , (-8508219.000000) ,
    (-8508152.000000) , (-8508036.000000) , (-8508031.000000) , (-8507772.000000) , (-8507390.000000) , (-8509811.000000) , (-8508617.000000) , (-8508454.000000) , (-8508441.000000) , (-8508353.000000) , (-8508230.000000) , (-8508208.000000) , (-8507801.000000) , (-8507290.000000) , (-8507276.000000) , (-8509581.000000) , (-8509171.000000) , (-8508335.000000) , (-8508179.000000) , (-8507845.000000) , (-8507597.000000) , (-8507522.000000) , (-8507478.000000) , (-8507338.000000) , (-8508996.000000) ,
    (-8509954.000000) , (-8509774.000000) , (-8508922.000000) , (-8508682.000000) , (-8508407.000000) , (-8508109.000000) , (-8507558.000000) , (-8507251.000000) , (-8509606.000000) , (-8509021.000000) , (-8508762.000000) , (-8508371.000000) , (-8507347.000000) , (-8509387.000000) , (-8509307.000000) , (-8508310.000000) , (-8508129.000000) , (-8507622.000000) , (-8507562.000000) , (-8507496.000000) , (-8509095.000000) , (-8508479.000000) , (-8508444.000000) , (-8507965.000000) , (-8507603.000000) ,
    (-8507418.000000) , (-8507263.000000) , (-8509377.000000) , (-8509249.000000) , (-8508648.000000) , (-8508342.000000) , (-8507814.000000) , (-8508701.000000) , (-8508587.000000) , (-8508379.000000) , (-8508671.000000) , (-8507566.000000) , (-8509964.000000) , (-8509240.000000) , (-8509120.000000) , (-8508877.000000) , (-8508603.000000) , (-8508278.000000) , (-8508258.000000) , (-8507868.000000) , (-8507557.000000) , (-8507515.000000) , (-8508373.000000) , (-8507354.000000) , (-8510009.000000) ,
    (-8509714.000000) , (-8509651.000000) , (-8509156.000000) , (-8508336.000000) , (-8508263.000000) , (-8508011.000000) , (-8507929.000000) , (-8507685.000000) , (-8507428.000000) , (-8507300.000000) , (-8507291.000000) , (-8509767.000000) , (-8509013.000000) , (-8508964.000000) , (-8508773.000000) , (-8508662.000000) , (-8508093.000000) , (-8507771.000000) , (-8507472.000000) , (-8507421.000000) , (-8507285.000000) , (-8509830.000000) , (-8509681.000000) , (-8509675.000000) , (-8507941.000000) ,
    (-8507659.000000) , (-8507623.000000) , (-8509971.000000) , (-8507529.000000) , (-8509560.000000) , (-8509343.000000) , (-8507849.000000) , (-8507718.000000) , (-8509792.000000) , (-8509402.000000) , (-8509260.000000) , (-8508455.000000) , (-8507784.000000) , (-8507279.000000) , (-8509980.000000) , (-8509789.000000) , (-8509737.000000) , (-8509710.000000) , (-8509408.000000) , (-8509089.000000) , (-8508259.000000) , (-8508146.000000) , (-8507931.000000) , (-8507916.000000) , (-8507743.000000) ,
    (-8507307.000000) , (-8507439.000000) , (-8509816.000000) , (-8509540.000000) , (-8509488.000000) , (-8509204.000000) , (-8508544.000000) , (-8508121.000000) , (-8508039.000000) , (-8507920.000000) , (-8507277.000000) , (-8510020.000000) , (-8510007.000000) , (-8509544.000000) , (-8509176.000000) , (-8509138.000000) , (-8508973.000000) , (-8508062.000000) , (-8507906.000000) , (-8507775.000000) , (-8507617.000000) , (-8507365.000000) , (-8507267.000000) , (-8509999.000000) , (-8509982.000000) ,
    (-8509875.000000) , (-8509768.000000) , (-8509186.000000) , (-8508100.000000) , (-8508089.000000) , (-8507576.000000) , (-8507483.000000) , (-8509734.000000) , (-8509506.000000) , (-8508902.000000) , (-8508774.000000) , (-8509050.000000) , (-8507987.000000) , (-8509818.000000) , (-8509672.000000) , (-8509422.000000) , (-8509199.000000) , (-8508269.000000) , (-8507901.000000) , (-8507862.000000) , (-8507341.000000) , (-8507249.000000) , (-8509699.000000) , (-8509312.000000) , (-8509259.000000) ,
    (-8508737.000000) , (-8508442.000000) , (-8508362.000000) , (-8508361.000000) , (-8508328.000000) , (-8508174.000000) , (-8508064.000000) , (-8507405.000000) , (-8508135.000000) , (-8509946.000000) , (-8509921.000000) , (-8509755.000000) , (-8509532.000000) , (-8508997.000000) , (-8508904.000000) , (-8508606.000000) , (-8508475.000000) , (-8508450.000000) , (-8508165.000000) , (-8508096.000000) , (-8508009.000000) , (-8507442.000000) , (-8507339.000000) , (-8509394.000000) , (-8507824.000000) ,
    (-8509814.000000) , (-8509472.000000) , (-8509420.000000) , (-8509251.000000) , (-8509250.000000) , (-8509166.000000) , (-8508992.000000) , (-8508920.000000) , (-8508893.000000) , (-8508535.000000) , (-8508489.000000) , (-8508452.000000) , (-8508185.000000) , (-8507964.000000) , (-8507874.000000) , (-8507756.000000) , (-8507734.000000) , (-8507719.000000) , (-8507495.000000) , (-8509552.000000) , (-8507846.000000) , (-8510003.000000) , (-8509929.000000) , (-8509886.000000) , (-8509871.000000) ,
    (-8509658.000000) , (-8509629.000000) , (-8509302.000000) , (-8509279.000000) , (-8509267.000000) , (-8508706.000000) , (-8508405.000000) , (-8508218.000000) , (-8507953.000000) , (-8507788.000000) , (-8507561.000000) , (-8509218.000000) , (-8509074.000000) , (-8508991.000000) , (-8508890.000000) , (-8507903.000000) , (-8507568.000000) , (-8508929.000000) , (-8509759.000000) , (-8509758.000000) , (-8509368.000000) , (-8509065.000000) , (-8508394.000000) , (-8507994.000000) , (-8507530.000000) ,
    (-8509786.000000) , (-8509518.000000) , (-8509484.000000) , (-8509342.000000) , (-8509208.000000) , (-8509177.000000) , (-8509010.000000) , (-8508478.000000) , (-8508248.000000) , (-8508117.000000) , (-8507311.000000) , (-8509961.000000) , (-8509930.000000) , (-8509894.000000) , (-8509841.000000) , (-8509762.000000) , (-8509724.000000) , (-8509601.000000) , (-8509582.000000) , (-8509489.000000) , (-8509356.000000) , (-8509125.000000) , (-8509083.000000) , (-8509059.000000) , (-8509058.000000) ,
    (-8509048.000000) , (-8508867.000000) , (-8508788.000000) , (-8508749.000000) , (-8508742.000000) , (-8508741.000000) , (-8508626.000000) , (-8508615.000000) , (-8508573.000000) , (-8508558.000000) , (-8508521.000000) , (-8508437.000000) , (-8508414.000000) , (-8508325.000000) , (-8508285.000000) , (-8508277.000000) , (-8507993.000000) , (-8507972.000000) , (-8507952.000000) , (-8507875.000000) , (-8507791.000000) , (-8507738.000000) , (-8507624.000000) , (-8507619.000000) , (-8507602.000000) ,
    (-8507599.000000) , (-8507539.000000) , (-8507413.000000) , (-8507412.000000) , (-8507283.000000) , (-8507234.000000) , (-8507229.000000) , (-8509873.000000) , (-8509864.000000) , (-8509211.000000) , (-8508919.000000) , (-8508546.000000) , (-8508541.000000) , (-8507977.000000) , (-8507954.000000) , (-8507877.000000) , (-8507629.000000) , (-8507563.000000) , (-8507420.000000) , (-8507305.000000) , (-8507269.000000) , (-8509747.000000) , (-8509723.000000) , (-8509707.000000) , (-8508757.000000) ,
    (-8508453.000000) , (-8508366.000000) , (-8507796.000000) , (-8508492.000000) , (-8507979.000000) , (-8507847.000000) , (-8509902.000000) , (-8509805.000000) , (-8509671.000000) , (-8509415.000000) , (-8509243.000000) , (-8509228.000000) , (-8509225.000000) , (-8509221.000000) , (-8509167.000000) , (-8509140.000000) , (-8509033.000000) , (-8509022.000000) , (-8508951.000000) , (-8508874.000000) , (-8508864.000000) , (-8508844.000000) , (-8508777.000000) , (-8508733.000000) , (-8508627.000000) ,
    (-8508616.000000) , (-8508567.000000) , (-8508548.000000) , (-8508404.000000) , (-8508397.000000) , (-8508184.000000) , (-8508175.000000) , (-8508119.000000) , (-8508103.000000) , (-8507790.000000) , (-8507696.000000) , (-8507678.000000) , (-8507507.000000) , (-8507441.000000) , (-8507410.000000) , (-8507250.000000) , (-8507220.000000) , (-8509878.000000) , (-8509787.000000) , (-8509669.000000) , (-8508796.000000) , (-8508698.000000) , (-8508565.000000) , (-8507628.000000) , (-8507432.000000) ,
    (-8509648.000000) , (-8509322.000000) , (-8508540.000000) , (-8508388.000000) , (-8509974.000000) , (-8509409.000000) , (-8509157.000000) , (-8508522.000000) , (-8508400.000000) , (-8508332.000000) , (-8510021.000000) , (-8509991.000000) , (-8509866.000000) , (-8508148.000000) , (-8507625.000000) , (-8509625.000000) , (-8509600.000000) , (-8509303.000000) , (-8509217.000000) , (-8509136.000000) , (-8507295.000000) , (-8509907.000000) , (-8509475.000000) , (-8509461.000000) , (-8508834.000000) ,
    (-8508288.000000) , (-8508237.000000) , (-8508190.000000) , (-8507922.000000) , (-8507866.000000) , (-8507620.000000) , (-8507511.000000) , (-8507242.000000) , (-8509869.000000) , (-8509396.000000) , (-8509393.000000) , (-8507755.000000) , (-8509810.000000) , (-8509077.000000) , (-8508913.000000) , (-8508838.000000) , (-8508156.000000) , (-8507512.000000) , (-8507297.000000) , (-8509909.000000) , (-8509460.000000) , (-8509118.000000) , (-8508923.000000) , (-8508895.000000) , (-8508819.000000) ,
    (-8508308.000000) , (-8507957.000000) , (-8507462.000000) , (-8507302.000000) , (-8509911.000000) , (-8509890.000000) , (-8509325.000000) , (-8509027.000000) , (-8508046.000000) , (-8507737.000000) , (-8507695.000000) , (-8507542.000000) , (-8509379.000000) , (-8509117.000000) , (-8508821.000000) , (-8507473.000000) , (-8509376.000000) , (-8509339.000000) , (-8507373.000000) , (-8509603.000000) , (-8507898.000000) , (-8509892.000000) , (-8509635.000000) , (-8509445.000000) , (-8509299.000000) ,
    (-8508419.000000) , (-8508124.000000) , (-8507870.000000) , (-8507575.000000) , (-8507440.000000) , (-8507278.000000) , (-8509939.000000) , (-8509389.000000) , (-8509351.000000) , (-8509084.000000) , (-8508756.000000) , (-8508745.000000) , (-8508205.000000) , (-8509807.000000) , (-8509765.000000) , (-8509654.000000) , (-8509309.000000) , (-8509274.000000) , (-8508037.000000) , (-8507982.000000) , (-8507764.000000) , (-8509721.000000) , (-8509317.000000) , (-8508642.000000) , (-8508464.000000) ,
    (-8507810.000000) , (-8507578.000000) , (-8510017.000000) , (-8509898.000000) , (-8508764.000000) , (-8508010.000000) , (-8507611.000000) , (-8507273.000000) , (-8510006.000000) , (-8509244.000000) , (-8509016.000000) , (-8508153.000000) , (-8508114.000000) , (-8508095.000000) , (-8508047.000000) , (-8507998.000000) , (-8507983.000000) , (-8507454.000000) , (-8507353.000000) , (-8509624.000000) , (-8509423.000000) , (-8509146.000000) , (-8509102.000000) , (-8508643.000000) , (-8508392.000000) ,
    (-8507715.000000) , (-8507425.000000) , (-8509689.000000) , (-8509133.000000) , (-8508977.000000) , (-8507894.000000) , (-8507809.000000) , (-8507766.000000) , (-8507334.000000) , (-8507949.000000) , (-8509564.000000) , (-8509032.000000) , (-8508516.000000) , (-8508198.000000) , (-8507690.000000) , (-8507452.000000) , (-8507226.000000) , (-8509531.000000) , (-8508177.000000) , (-8508012.000000) , (-8507368.000000) , (-8509352.000000) , (-8509196.000000) , (-8508853.000000) , (-8507966.000000) )
    OR
    (ALIAS_R119) IN ((-8509276.000000) , (-8508942.000000) , (-8508763.000000) , (-8508030.000000) , (-8507758.000000) , (-8509270.000000) , (-8509212.000000) , (-8508267.000000) , (-8509798.000000) , (-8508985.000000) , (-8507351.000000) , (-8509639.000000) , (-8509580.000000) , (-8509360.000000) , (-8509277.000000) , (-8508900.000000) , (-8508196.000000) , (-8508136.000000) , (-8507930.000000) , (-8509155.000000) , (-8508767.000000) , (-8509676.000000) , (-8509412.000000) , (-8509300.000000) , (-8509151.000000) ,
    (-8508805.000000) , (-8508614.000000) , (-8508608.000000) , (-8508462.000000) , (-8508160.000000) , (-8508052.000000) , (-8507940.000000) , (-8507859.000000) , (-8507671.000000) , (-8508360.000000) , (-8507838.000000) , (-8509236.000000) , (-8508300.000000) , (-8509842.000000) , (-8508776.000000) , (-8508739.000000) , (-8507275.000000) , (-8509000.000000) , (-8508552.000000) , (-8508354.000000) , (-8508170.000000) , (-8509901.000000) , (-8509879.000000) , (-8508907.000000) , (-8508383.000000) ,
    (-8508019.000000) , (-8507989.000000) , (-8507509.000000) , (-8507352.000000) , (-8508262.000000) , (-8507287.000000) , (-8509988.000000) , (-8509160.000000) , (-8507909.000000) , (-8509019.000000) , (-8509006.000000) , (-8508633.000000) , (-8507760.000000) , (-8507612.000000) , (-8509985.000000) , (-8509280.000000) , (-8508210.000000) , (-8508164.000000) , (-8508145.000000) , (-8507999.000000) , (-8509223.000000) , (-8508680.000000) , (-8508355.000000) , (-8507889.000000) , (-8507752.000000) ,
    (-8507724.000000) , (-8507666.000000) , (-8507497.000000) , (-8509305.000000) , (-8508966.000000) , (-8508883.000000) , (-8509711.000000) , (-8509562.000000) , (-8508954.000000) , (-8508382.000000) , (-8509806.000000) , (-8509383.000000) , (-8508056.000000) , (-8507626.000000) , (-8507225.000000) , (-8509413.000000) , (-8508295.000000) , (-8509923.000000) , (-8508519.000000) , (-8508161.000000) , (-8507488.000000) , (-8509813.000000) , (-8509784.000000) , (-8508523.000000) , (-8507460.000000) ,
    (-8509454.000000) , (-8509292.000000) , (-8509183.000000) , (-8507729.000000) , (-8507702.000000) , (-8509752.000000) , (-8509653.000000) , (-8508632.000000) , (-8508299.000000) , (-8507481.000000) , (-8509987.000000) , (-8509914.000000) , (-8508514.000000) , (-8507745.000000) , (-8509835.000000) , (-8509150.000000) , (-8509018.000000) , (-8509001.000000) , (-8508953.000000) , (-8508602.000000) , (-8508530.000000) , (-8508340.000000) , (-8508032.000000) , (-8507663.000000) , (-8507384.000000) ,
    (-8510000.000000) , (-8509716.000000) , (-8509563.000000) , (-8509523.000000) , (-8509499.000000) , (-8509478.000000) , (-8509348.000000) , (-8509180.000000) , (-8509149.000000) , (-8509063.000000) , (-8508995.000000) , (-8508412.000000) , (-8508403.000000) , (-8508215.000000) , (-8508033.000000) , (-8507876.000000) , (-8507822.000000) , (-8507795.000000) , (-8507433.000000) , (-8507282.000000) , (-8509572.000000) , (-8508664.000000) , (-8509359.000000) , (-8508652.000000) , (-8508347.000000) ,
    (-8507479.000000) , (-8509952.000000) , (-8509944.000000) , (-8509900.000000) , (-8509896.000000) , (-8509857.000000) , (-8509838.000000) , (-8509761.000000) , (-8509736.000000) , (-8509728.000000) , (-8509684.000000) , (-8509522.000000) , (-8509498.000000) , (-8509482.000000) , (-8509451.000000) , (-8509427.000000) , (-8509366.000000) , (-8509315.000000) , (-8509258.000000) , (-8509144.000000) , (-8509119.000000) , (-8508887.000000) , (-8508793.000000) , (-8508666.000000) , (-8508448.000000) ,
    (-8508334.000000) , (-8508290.000000) , (-8508233.000000) , (-8508171.000000) , (-8508094.000000) , (-8508069.000000) , (-8508057.000000) , (-8507971.000000) , (-8507915.000000) , (-8507887.000000) , (-8507759.000000) , (-8507580.000000) , (-8507480.000000) , (-8507264.000000) , (-8509998.000000) , (-8509627.000000) , (-8509585.000000) , (-8509527.000000) , (-8509333.000000) , (-8509093.000000) , (-8508729.000000) , (-8508564.000000) , (-8508496.000000) , (-8507642.000000) , (-8507367.000000) ,
    (-8509981.000000) , (-8509797.000000) , (-8509655.000000) , (-8509442.000000) , (-8509075.000000) , (-8508963.000000) , (-8508727.000000) , (-8508704.000000) , (-8508684.000000) , (-8508231.000000) , (-8507710.000000) , (-8507595.000000) , (-8507470.000000) , (-8507218.000000) , (-8508965.000000) , (-8509777.000000) , (-8509712.000000) , (-8509622.000000) , (-8509550.000000) , (-8509298.000000) , (-8509213.000000) , (-8509041.000000) , (-8509029.000000) , (-8508912.000000) , (-8508908.000000) ,
    (-8508691.000000) , (-8508601.000000) , (-8508438.000000) , (-8508313.000000) , (-8507780.000000) , (-8507776.000000) , (-8507725.000000) , (-8507692.000000) , (-8507677.000000) , (-8507668.000000) , (-8507498.000000) , (-8507451.000000) , (-8507366.000000) , (-8509957.000000) , (-8509837.000000) , (-8509411.000000) , (-8509239.000000) , (-8509179.000000) , (-8509003.000000) , (-8508653.000000) , (-8508144.000000) , (-8508130.000000) , (-8508116.000000) , (-8507621.000000) , (-8507571.000000) ,
    (-8507395.000000) , (-8507330.000000) , (-8507257.000000) , (-8509970.000000) , (-8509966.000000) , (-8509529.000000) , (-8509473.000000) , (-8509202.000000) , (-8509168.000000) , (-8509008.000000) , (-8508924.000000) , (-8508879.000000) , (-8508866.000000) , (-8508852.000000) , (-8508679.000000) , (-8508518.000000) , (-8508473.000000) , (-8508345.000000) , (-8508331.000000) , (-8508063.000000) , (-8508028.000000) , (-8507673.000000) , (-8507601.000000) , (-8507559.000000) , (-8508154.000000) ,
    (-8509403.000000) , (-8509128.000000) , (-8508926.000000) , (-8508705.000000) , (-8508424.000000) , (-8507891.000000) , (-8507363.000000) , (-8509915.000000) , (-8509709.000000) , (-8509241.000000) , (-8508921.000000) , (-8508359.000000) , (-8509995.000000) , (-8509817.000000) , (-8509528.000000) , (-8509514.000000) , (-8509247.000000) , (-8509086.000000) , (-8509081.000000) , (-8509062.000000) , (-8508975.000000) , (-8508910.000000) , (-8508876.000000) , (-8508869.000000) , (-8508862.000000) ,
    (-8508771.000000) , (-8508685.000000) , (-8508585.000000) , (-8508556.000000) , (-8508363.000000) , (-8508051.000000) , (-8507881.000000) , (-8507808.000000) , (-8507807.000000) , (-8507616.000000) , (-8507342.000000) , (-8507326.000000) , (-8509781.000000) , (-8509729.000000) , (-8508915.000000) , (-8508484.000000) , (-8508457.000000) , (-8508406.000000) , (-8508367.000000) , (-8508251.000000) , (-8507608.000000) , (-8507525.000000) , (-8507423.000000) , (-8509345.000000) , (-8508952.000000) ,
    (-8508807.000000) , (-8508298.000000) , (-8509273.000000) , (-8509174.000000) , (-8508829.000000) , (-8508280.000000) , (-8508180.000000) , (-8508048.000000) , (-8507914.000000) , (-8507556.000000) , (-8509973.000000) , (-8509917.000000) , (-8509771.000000) , (-8509607.000000) , (-8509407.000000) , (-8509072.000000) , (-8509057.000000) , (-8508956.000000) , (-8508928.000000) , (-8508785.000000) , (-8508697.000000) , (-8508687.000000) , (-8508323.000000) , (-8508309.000000) , (-8508260.000000) ,
    (-8508133.000000) , (-8508101.000000) , (-8508049.000000) , (-8507917.000000) , (-8507655.000000) , (-8507610.000000) , (-8507524.000000) , (-8507358.000000) , (-8507309.000000) , (-8507259.000000) , (-8509663.000000) , (-8509414.000000) , (-8509401.000000) , (-8508612.000000) , (-8508508.000000) , (-8508435.000000) , (-8508172.000000) , (-8507872.000000) , (-8507835.000000) , (-8507387.000000) , (-8507359.000000) , (-8507357.000000) , (-8509082.000000) , (-8508710.000000) , (-8508014.000000) ,
    (-8507848.000000) , (-8507800.000000) , (-8507538.000000) , (-8509859.000000) , (-8509848.000000) , (-8509355.000000) , (-8509116.000000) , (-8509096.000000) , (-8509071.000000) , (-8509070.000000) , (-8508880.000000) , (-8508463.000000) , (-8507816.000000) , (-8507697.000000) , (-8507474.000000) , (-8507333.000000) , (-8507308.000000) , (-8509170.000000) , (-8509042.000000) , (-8509023.000000) , (-8508989.000000) , (-8507853.000000) , (-8507750.000000) , (-8507632.000000) , (-8507631.000000) ,
    (-8507447.000000) , (-8507356.000000) , (-8509812.000000) , (-8509405.000000) , (-8509147.000000) , (-8509043.000000) , (-8508962.000000) , (-8508804.000000) , (-8508494.000000) , (-8508261.000000) , (-8508111.000000) , (-8508044.000000) , (-8508038.000000) , (-8507974.000000) , (-8507672.000000) , (-8507543.000000) , (-8507501.000000) , (-8507355.000000) , (-8507293.000000) , (-8509943.000000) , (-8509908.000000) , (-8509695.000000) , (-8509365.000000) , (-8509255.000000) , (-8509227.000000) ,
    (-8509002.000000) , (-8508639.000000) , (-8508446.000000) , (-8508431.000000) , (-8508201.000000) , (-8508120.000000) , (-8508070.000000) , (-8507733.000000) , (-8507660.000000) , (-8507519.000000) , (-8507492.000000) , (-8509996.000000) , (-8509978.000000) , (-8509967.000000) , (-8509876.000000) , (-8509742.000000) , (-8509632.000000) , (-8509517.000000) , (-8509455.000000) , (-8509254.000000) , (-8508935.000000) , (-8508794.000000) , (-8508772.000000) , (-8508610.000000) , (-8508533.000000) ,
    (-8508471.000000) , (-8508107.000000) , (-8507990.000000) , (-8507806.000000) , (-8507567.000000) , (-8507430.000000) , (-8509609.000000) , (-8507938.000000) , (-8507890.000000) , (-8507268.000000) , (-8509916.000000) , (-8509751.000000) , (-8509706.000000) , (-8509363.000000) , (-8508971.000000) , (-8508623.000000) , (-8507970.000000) , (-8507928.000000) , (-8507910.000000) , (-8507850.000000) , (-8507842.000000) , (-8507514.000000) , (-8507325.000000) , (-8507233.000000) , (-8510022.000000) ,
    (-8509976.000000) , (-8509913.000000) , (-8509887.000000) , (-8509862.000000) , (-8509703.000000) , (-8509682.000000) , (-8509587.000000) , (-8509545.000000) , (-8509450.000000) , (-8509406.000000) , (-8509215.000000) , (-8509189.000000) , (-8509099.000000) , (-8509066.000000) , (-8509009.000000) , (-8508967.000000) , (-8508945.000000) , (-8508940.000000) , (-8508936.000000) , (-8508860.000000) , (-8508787.000000) , (-8508594.000000) , (-8508580.000000) , (-8507945.000000) , (-8507926.000000) ,
    (-8507840.000000) , (-8507820.000000) , (-8507778.000000) , (-8507676.000000) , (-8507665.000000) , (-8507614.000000) , (-8507613.000000) , (-8507545.000000) , (-8507435.000000) , (-8507324.000000) , (-8507316.000000) , (-8509193.000000) , (-8508724.000000) , (-8509321.000000) , (-8507634.000000) , (-8509287.000000) , (-8508273.000000) , (-8509850.000000) , (-8509722.000000) , (-8509558.000000) , (-8508700.000000) , (-8508436.000000) , (-8508372.000000) , (-8508341.000000) , (-8507633.000000) ,
    (-8507574.000000) , (-8509702.000000) , (-8509094.000000) , (-8508982.000000) , (-8508683.000000) , (-8508620.000000) , (-8508159.000000) , (-8509932.000000) , (-8509775.000000) , (-8509429.000000) , (-8509011.000000) , (-8508761.000000) , (-8508321.000000) , (-8508176.000000) , (-8509936.000000) , (-8509804.000000) , (-8509739.000000) , (-8509554.000000) , (-8509235.000000) , (-8509131.000000) , (-8508782.000000) , (-8508760.000000) , (-8509490.000000) , (-8509430.000000) , (-8509049.000000) ,
    (-8508972.000000) , (-8508025.000000) , (-8508600.000000) , (-8508005.000000) , (-8509020.000000) , (-8508512.000000) , (-8508006.000000) , (-8507927.000000) , (-8507332.000000) , (-8509272.000000) , (-8508896.000000) , (-8507320.000000) , (-8508820.000000) , (-8507669.000000) , (-8507449.000000) , (-8509726.000000) , (-8508583.000000) , (-8507654.000000) , (-8510019.000000) , (-8509662.000000) , (-8509602.000000) , (-8509588.000000) , (-8509526.000000) , (-8509494.000000) , (-8509440.000000) ,
    (-8509370.000000) , (-8509364.000000) , (-8509329.000000) , (-8509282.000000) , (-8509252.000000) , (-8509026.000000) , (-8508905.000000) , (-8508854.000000) , (-8508658.000000) , (-8508646.000000) , (-8508595.000000) , (-8508576.000000) , (-8508557.000000) , (-8508509.000000) , (-8508504.000000) , (-8508420.000000) , (-8508396.000000) , (-8508301.000000) , (-8508226.000000) , (-8508167.000000) , (-8508007.000000) , (-8507925.000000) , (-8507860.000000) , (-8507811.000000) , (-8507767.000000) ,
    (-8507713.000000) , (-8507679.000000) , (-8507615.000000) , (-8507590.000000) , (-8507499.000000) , (-8507380.000000) , (-8507262.000000) , (-8507247.000000) , (-8509808.000000) , (-8509051.000000) , (-8508467.000000) , (-8508338.000000) , (-8508000.000000) , (-8507469.000000) , (-8509953.000000) , (-8508814.000000) , (-8508802.000000) , (-8508211.000000) , (-8509960.000000) , (-8509829.000000) , (-8508738.000000) , (-8507919.000000) , (-8507812.000000) , (-8507520.000000) , (-8508649.000000) ,
    (-8508270.000000) , (-8508060.000000) , (-8507777.000000) , (-8509951.000000) , (-8509950.000000) , (-8509683.000000) , (-8509381.000000) , (-8509331.000000) , (-8509293.000000) , (-8509281.000000) , (-8509278.000000) , (-8509256.000000) , (-8509232.000000) , (-8509229.000000) , (-8509135.000000) , (-8509132.000000) , (-8509123.000000) , (-8509122.000000) , (-8508882.000000) , (-8508830.000000) , (-8508812.000000) , (-8508809.000000) , (-8508792.000000) , (-8508780.000000) , (-8508711.000000) ,
    (-8508703.000000) , (-8508681.000000) , (-8508676.000000) , (-8508634.000000) , (-8508549.000000) , (-8508506.000000) , (-8508307.000000) , (-8508283.000000) , (-8508187.000000) , (-8508178.000000) , (-8508132.000000) , (-8508090.000000) , (-8508085.000000) , (-8507946.000000) , (-8507913.000000) , (-8507882.000000) , (-8507789.000000) , (-8507664.000000) , (-8507593.000000) , (-8507564.000000) , (-8507541.000000) , (-8507527.000000) , (-8507422.000000) , (-8507393.000000) , (-8507329.000000) ,
    (-8507270.000000) , (-8509986.000000) , (-8509934.000000) , (-8509926.000000) , (-8509772.000000) , (-8509678.000000) , (-8509657.000000) , (-8509645.000000) , (-8509469.000000) , (-8509458.000000) , (-8509341.000000) , (-8509311.000000) , (-8509294.000000) , (-8509145.000000) , (-8509112.000000) , (-8509078.000000) , (-8508884.000000) , (-8508816.000000) , (-8508811.000000) , (-8508752.000000) , (-8508746.000000) , (-8508654.000000) , (-8508505.000000) , (-8508443.000000) , (-8508380.000000) ,
    (-8508344.000000) , (-8508287.000000) , (-8508026.000000) , (-8507904.000000) , (-8507899.000000) , (-8507867.000000) , (-8507833.000000) , (-8507761.000000) , (-8507740.000000) , (-8507600.000000) , (-8507569.000000) , (-8507484.000000) , (-8507344.000000) , (-8507310.000000) , (-8509644.000000) , (-8507294.000000) , (-8509984.000000) , (-8509979.000000) , (-8509931.000000) , (-8509883.000000) , (-8509827.000000) , (-8509718.000000) , (-8509705.000000) , (-8509656.000000) , (-8509492.000000) ,
    (-8509327.000000) , (-8509197.000000) , (-8509164.000000) , (-8509108.000000) , (-8508988.000000) , (-8508795.000000) , (-8508759.000000) , (-8508719.000000) , (-8508559.000000) , (-8508305.000000) , (-8508244.000000) , (-8507943.000000) , (-8507923.000000) , (-8507879.000000) , (-8507843.000000) , (-8507837.000000) , (-8507779.000000) , (-8507769.000000) , (-8507728.000000) , (-8507591.000000) , (-8507374.000000) , (-8509992.000000) , (-8509855.000000) , (-8509815.000000) , (-8509785.000000) ,
    (-8509708.000000) , (-8509688.000000) , (-8509668.000000) , (-8509633.000000) , (-8509340.000000) , (-8509245.000000) , (-8509142.000000) , (-8508903.000000) , (-8508824.000000) , (-8508755.000000) , (-8508605.000000) , (-8508477.000000) , (-8508466.000000) , (-8508384.000000) , (-8508304.000000) , (-8508232.000000) , (-8508150.000000) , (-8507726.000000) , (-8507227.000000) , (-8509889.000000) , (-8509634.000000) , (-8509508.000000) , (-8509459.000000) , (-8508799.000000) , (-8508783.000000) ,
    (-8508723.000000) , (-8508624.000000) , (-8508440.000000) , (-8508191.000000) , (-8508149.000000) , (-8507995.000000) , (-8507607.000000) , (-8507254.000000) , (-8509959.000000) , (-8509091.000000) , (-8508865.000000) , (-8508823.000000) , (-8507818.000000) , (-8507700.000000) , (-8509949.000000) , (-8509920.000000) , (-8509802.000000) , (-8509725.000000) , (-8509713.000000) , (-8509673.000000) , (-8509586.000000) , (-8509512.000000) , (-8509395.000000) , (-8509373.000000) , (-8509297.000000) ,
    (-8509055.000000) , (-8508778.000000) , (-8508735.000000) , (-8508660.000000) , (-8508465.000000) , (-8508389.000000) , (-8508348.000000) , (-8508324.000000) , (-8508217.000000) , (-8508076.000000) , (-8508050.000000) , (-8507984.000000) , (-8507902.000000) , (-8507555.000000) , (-8507409.000000) , (-8507391.000000) , (-8507248.000000) , (-8509092.000000) , (-8509047.000000) , (-8508678.000000) , (-8508432.000000) , (-8509884.000000) , (-8509757.000000) , (-8509693.000000) , (-8509509.000000) ,
    (-8509386.000000) , (-8509172.000000) , (-8508485.000000) , (-8508220.000000) , (-8508197.000000) , (-8507932.000000) , (-8507854.000000) , (-8507674.000000) , (-8507531.000000) , (-8509628.000000) , (-8509621.000000) , (-8509561.000000) , (-8508732.000000) , (-8508675.000000) , (-8507836.000000) , (-8507742.000000) , (-8507416.000000) , (-8507401.000000) , (-8510012.000000) , (-8509955.000000) , (-8509650.000000) , (-8509426.000000) , (-8509335.000000) , (-8508825.000000) , (-8508718.000000) ,
    (-8508168.000000) , (-8508077.000000) , (-8508061.000000) , (-8507863.000000) , (-8507667.000000) , (-8507637.000000) , (-8507476.000000) , (-8507450.000000) , (-8507314.000000) , (-8507258.000000) , (-8509497.000000) , (-8509417.000000) , (-8508744.000000) , (-8508493.000000) , (-8508429.000000) , (-8508199.000000) , (-8507892.000000) , (-8507589.000000) , (-8507588.000000) , (-8509853.000000) , (-8509851.000000) , (-8509686.000000) , (-8509534.000000) , (-8509438.000000) , (-8509425.000000) ,
    (-8509313.000000) , (-8509265.000000) , (-8509169.000000) , (-8509124.000000) , (-8508950.000000) , (-8508931.000000) , (-8508657.000000) , (-8508604.000000) , (-8508592.000000) , (-8508566.000000) , (-8508537.000000) , (-8508346.000000) , (-8508272.000000) , (-8508227.000000) , (-8508122.000000) , (-8508075.000000) , (-8507918.000000) , (-8507851.000000) , (-8507813.000000) , (-8507648.000000) , (-8507537.000000) , (-8507382.000000) , (-8507340.000000) , (-8507236.000000) , (-8507230.000000) ,
    (-8509893.000000) , (-8509533.000000) , (-8508216.000000) , (-8507266.000000) , (-8509231.000000) , (-8509068.000000) , (-8508901.000000) , (-8508575.000000) , (-8508182.000000) , (-8507708.000000) , (-8507466.000000) , (-8507404.000000) , (-8509820.000000) , (-8509819.000000) , (-8509610.000000) , (-8509584.000000) , (-8509453.000000) , (-8509361.000000) , (-8509288.000000) , (-8508779.000000) , (-8508743.000000) , (-8508686.000000) , (-8508650.000000) , (-8508194.000000) , (-8508141.000000) ,
    (-8508066.000000) , (-8507996.000000) , (-8507978.000000) , (-8507675.000000) , (-8507360.000000) , (-8507286.000000) , (-8507235.000000) , (-8509347.000000) , (-8509397.000000) , (-8508312.000000) , (-8509905.000000) , (-8509134.000000) , (-8508835.000000) , (-8508460.000000) , (-8507394.000000) , (-8507292.000000) , (-8507274.000000) , (-8507221.000000) , (-8509794.000000) , (-8509769.000000) , (-8509491.000000) , (-8509338.000000) , (-8508994.000000) , (-8508846.000000) , (-8508708.000000) ,
    (-8508591.000000) , (-8508447.000000) , (-8508402.000000) , (-8508395.000000) , (-8508374.000000) , (-8508123.000000) , (-8507885.000000) , (-8507732.000000) , (-8507730.000000) , (-8507455.000000) , (-8507426.000000) , (-8507331.000000) , (-8509436.000000) , (-8509198.000000) , (-8509173.000000) , (-8509111.000000) , (-8509085.000000) , (-8509073.000000) , (-8509069.000000) , (-8509056.000000) , (-8507552.000000) , (-8508889.000000) , (-8507554.000000) , (-8507551.000000) , (-8507345.000000) ,
    (-8509882.000000) , (-8509877.000000) , (-8509465.000000) , (-8509079.000000) , (-8508970.000000) , (-8508937.000000) , (-8508694.000000) , (-8507958.000000) , (-8509790.000000) , (-8508488.000000) , (-8508222.000000) , (-8508192.000000) , (-8507691.000000) , (-8508661.000000) , (-8508439.000000) , (-8509100.000000) , (-8508555.000000) , (-8508294.000000) , (-8507688.000000) , (-8507378.000000) , (-8509447.000000) , (-8509416.000000) , (-8508106.000000) , (-8507878.000000) , (-8507723.000000) )
    OR
    (ALIAS_R119) IN ((-8507482.000000) , (-8508750.000000) , (-8507419.000000) , (-8507321.000000) , (-8508560.000000) , (-8509910.000000) , (-8509667.000000) , (-8509357.000000) , (-8508674.000000) , (-8508155.000000) , (-8507986.000000) , (-8507961.000000) , (-8507895.000000) , (-8508943.000000) , (-8508572.000000) , (-8508474.000000) , (-8508281.000000) , (-8508071.000000) , (-8507924.000000) , (-8509701.000000) , (-8509569.000000) , (-8509468.000000) , (-8508855.000000) , (-8508781.000000) , (-8508596.000000) ,
    (-8508520.000000) , (-8508399.000000) , (-8507687.000000) , (-8509101.000000) , (-8508490.000000) , (-8508387.000000) , (-8508296.000000) , (-8507232.000000) , (-8509990.000000) , (-8508458.000000) , (-8509404.000000) , (-8509261.000000) , (-8508998.000000) , (-8508449.000000) , (-8508127.000000) , (-8509557.000000) , (-8509162.000000) , (-8508840.000000) , (-8508810.000000) , (-8508339.000000) , (-8508206.000000) , (-8508166.000000) , (-8508020.000000) , (-8507649.000000) , (-8507521.000000) ,
    (-8507417.000000) , (-8509803.000000) , (-8509646.000000) , (-8509471.000000) , (-8509295.000000) , (-8509088.000000) , (-8508947.000000) , (-8508851.000000) , (-8508800.000000) , (-8508398.000000) , (-8508370.000000) , (-8508302.000000) , (-8508068.000000) , (-8507939.000000) , (-8507489.000000) , (-8507477.000000) , (-8509496.000000) , (-8509060.000000) , (-8508990.000000) , (-8508663.000000) , (-8508584.000000) , (-8508002.000000) , (-8509745.000000) , (-8509520.000000) , (-8509421.000000) ,
    (-8508545.000000) , (-8508525.000000) , (-8508276.000000) , (-8508238.000000) , (-8508113.000000) , (-8508065.000000) , (-8507997.000000) , (-8507907.000000) , (-8507826.000000) , (-8507639.000000) , (-8509732.000000) , (-8509674.000000) , (-8508871.000000) , (-8508577.000000) , (-8508497.000000) , (-8508264.000000) , (-8507653.000000) , (-8507643.000000) , (-8507550.000000) , (-8507516.000000) , (-8507475.000000) , (-8507468.000000) , (-8507398.000000) , (-8509730.000000) , (-8509899.000000) ,
    (-8509780.000000) , (-8509638.000000) , (-8509618.000000) , (-8509263.000000) , (-8508875.000000) , (-8508138.000000) , (-8508081.000000) , (-8507886.000000) , (-8507596.000000) , (-8507315.000000) , (-8509843.000000) , (-8509700.000000) , (-8508247.000000) , (-8508224.000000) , (-8508186.000000) , (-8507662.000000) , (-8509698.000000) , (-8509419.000000) , (-8508914.000000) , (-8508728.000000) , (-8508597.000000) , (-8508524.000000) , (-8508228.000000) , (-8508193.000000) , (-8508098.000000) ,
    (-8507963.000000) , (-8507689.000000) , (-8507598.000000) , (-8507540.000000) , (-8507443.000000) , (-8509839.000000) , (-8508571.000000) , (-8508472.000000) , (-8507751.000000) , (-8508416.000000) , (-8508202.000000) , (-8508157.000000) , (-8508074.000000) , (-8509833.000000) , (-8509375.000000) , (-8508968.000000) , (-8508957.000000) , (-8508229.000000) , (-8507988.000000) , (-8507782.000000) , (-8507224.000000) , (-8510004.000000) , (-8509483.000000) , (-8509392.000000) , (-8508748.000000) ,
    (-8508702.000000) , (-8508609.000000) , (-8508517.000000) , (-8508511.000000) , (-8508023.000000) , (-8507864.000000) , (-8507585.000000) , (-8507517.000000) , (-8507437.000000) , (-8509856.000000) , (-8509824.000000) , (-8509791.000000) , (-8509733.000000) , (-8509664.000000) , (-8509515.000000) , (-8509433.000000) , (-8509209.000000) , (-8508983.000000) , (-8508688.000000) , (-8508599.000000) , (-8508501.000000) , (-8508291.000000) , (-8507992.000000) , (-8507962.000000) , (-8507605.000000) ,
    (-8507532.000000) , (-8507438.000000) , (-8507396.000000) , (-8507312.000000) , (-8507304.000000) , (-8507240.000000) , (-8510013.000000) , (-8509918.000000) , (-8509881.000000) , (-8509852.000000) , (-8509738.000000) , (-8509719.000000) , (-8509659.000000) , (-8509511.000000) , (-8509219.000000) , (-8508958.000000) , (-8508740.000000) , (-8508421.000000) , (-8508162.000000) , (-8508104.000000) , (-8507783.000000) , (-8507722.000000) , (-8507504.000000) , (-8507467.000000) , (-8507371.000000) ,
    (-8507960.000000) , (-8509320.000000) , (-8509661.000000) , (-8509428.000000) , (-8507747.000000) , (-8509885.000000) , (-8509344.000000) , (-8508916.000000) , (-8508906.000000) , (-8508483.000000) , (-8508319.000000) , (-8507805.000000) , (-8507494.000000) , (-8509793.000000) , (-8509783.000000) , (-8509720.000000) , (-8509574.000000) , (-8509536.000000) , (-8509358.000000) , (-8508125.000000) , (-8508042.000000) , (-8507942.000000) , (-8507656.000000) , (-8507464.000000) , (-8507386.000000) ,
    (-8507379.000000) , (-8509968.000000) , (-8509904.000000) , (-8509822.000000) , (-8509743.000000) , (-8509704.000000) , (-8509510.000000) , (-8509474.000000) , (-8509434.000000) , (-8509388.000000) , (-8509266.000000) , (-8509187.000000) , (-8508693.000000) , (-8508692.000000) , (-8508629.000000) , (-8508378.000000) , (-8508151.000000) , (-8508110.000000) , (-8508035.000000) , (-8507980.000000) , (-8507774.000000) , (-8507748.000000) , (-8507661.000000) , (-8507500.000000) , (-8507381.000000) ,
    (-8507303.000000) , (-8507243.000000) , (-8509840.000000) , (-8509776.000000) , (-8509592.000000) , (-8509457.000000) , (-8508897.000000) , (-8508532.000000) , (-8508487.000000) , (-8508456.000000) , (-8507821.000000) , (-8507658.000000) , (-8507647.000000) , (-8507376.000000) , (-8509617.000000) , (-8509431.000000) , (-8509207.000000) , (-8508713.000000) , (-8508425.000000) , (-8507744.000000) , (-8507448.000000) , (-8509938.000000) , (-8509367.000000) , (-8508630.000000) , (-8508303.000000) ,
    (-8508173.000000) , (-8507346.000000) , (-8509740.000000) , (-8509567.000000) , (-8509690.000000) , (-8507528.000000) , (-8507348.000000) , (-8508758.000000) , (-8507735.000000) , (-8507587.000000) , (-8509834.000000) , (-8507682.000000) , (-8509556.000000) , (-8509486.000000) , (-8509271.000000) , (-8509105.000000) , (-8508470.000000) , (-8508284.000000) , (-8507636.000000) , (-8509903.000000) , (-8509731.000000) , (-8509543.000000) , (-8509503.000000) , (-8509337.000000) , (-8509308.000000) ,
    (-8509290.000000) , (-8509289.000000) , (-8509262.000000) , (-8509182.000000) , (-8509044.000000) , (-8508946.000000) , (-8508894.000000) , (-8508826.000000) , (-8508696.000000) , (-8508271.000000) , (-8508254.000000) , (-8508240.000000) , (-8508134.000000) , (-8508041.000000) , (-8508008.000000) , (-8507703.000000) , (-8507652.000000) , (-8507582.000000) , (-8507458.000000) , (-8507222.000000) , (-8509576.000000) , (-8508836.000000) , (-8508411.000000) , (-8508275.000000) , (-8507968.000000) ,
    (-8507773.000000) , (-8507721.000000) , (-8507457.000000) , (-8509800.000000) , (-8509626.000000) , (-8509524.000000) , (-8509152.000000) , (-8509064.000000) , (-8508948.000000) , (-8508714.000000) , (-8508673.000000) , (-8508668.000000) , (-8508644.000000) , (-8508562.000000) , (-8508242.000000) , (-8508016.000000) , (-8507856.000000) , (-8507798.000000) , (-8507770.000000) , (-8507693.000000) , (-8507609.000000) , (-8507463.000000) , (-8507459.000000) , (-8509384.000000) , (-8509012.000000) ,
    (-8508628.000000) , (-8508500.000000) , (-8508078.000000) , (-8507815.000000) , (-8507712.000000) , (-8507343.000000) , (-8509216.000000) , (-8509969.000000) , (-8509925.000000) , (-8509437.000000) , (-8509087.000000) , (-8508553.000000) , (-8508200.000000) , (-8508073.000000) , (-8507839.000000) , (-8507645.000000) , (-8507349.000000) , (-8509467.000000) , (-8509210.000000) , (-8508941.000000) , (-8508789.000000) , (-8508590.000000) , (-8508289.000000) , (-8508246.000000) , (-8507937.000000) ,
    (-8507819.000000) , (-8509989.000000) , (-8509779.000000) , (-8509666.000000) , (-8509148.000000) , (-8508561.000000) , (-8508502.000000) , (-8508480.000000) , (-8508083.000000) , (-8507871.000000) , (-8507786.000000) , (-8507518.000000) , (-8507491.000000) , (-8509972.000000) , (-8509870.000000) , (-8509750.000000) , (-8509748.000000) , (-8509612.000000) , (-8509547.000000) , (-8509539.000000) , (-8509481.000000) , (-8509390.000000) , (-8509283.000000) , (-8508837.000000) , (-8508690.000000) ,
    (-8508563.000000) , (-8508311.000000) , (-8508055.000000) , (-8507857.000000) , (-8507565.000000) , (-8509928.000000) , (-8509801.000000) , (-8509788.000000) , (-8508499.000000) , (-8507829.000000) , (-8507714.000000) , (-8507698.000000) , (-8507471.000000) , (-8507431.000000) , (-8509756.000000) , (-8509336.000000) , (-8509206.000000) , (-8508015.000000) , (-8507844.000000) , (-8509040.000000) , (-8508018.000000) , (-8507487.000000) , (-8509935.000000) , (-8509912.000000) , (-8509832.000000) ,
    (-8509770.000000) , (-8509735.000000) , (-8509696.000000) , (-8509493.000000) , (-8509444.000000) , (-8509378.000000) , (-8509374.000000) , (-8508832.000000) , (-8508579.000000) , (-8508286.000000) , (-8508143.000000) , (-8507794.000000) , (-8507785.000000) , (-8507644.000000) , (-8507548.000000) , (-8507414.000000) , (-8507298.000000) , (-8507252.000000) , (-8510010.000000) , (-8509546.000000) , (-8509304.000000) , (-8509154.000000) , (-8509153.000000) , (-8508933.000000) , (-8508918.000000) ,
    (-8508868.000000) , (-8508716.000000) , (-8508709.000000) , (-8508588.000000) , (-8508554.000000) , (-8508547.000000) , (-8508409.000000) , (-8508401.000000) , (-8508358.000000) , (-8508357.000000) , (-8508131.000000) , (-8508105.000000) , (-8508092.000000) , (-8508072.000000) , (-8507841.000000) , (-8507827.000000) , (-8507716.000000) , (-8507549.000000) , (-8507434.000000) , (-8507400.000000) , (-8507392.000000) , (-8507389.000000) , (-8509880.000000) , (-8509616.000000) , (-8509516.000000) ,
    (-8509326.000000) , (-8509248.000000) , (-8509466.000000) , (-8508574.000000) , (-8508040.000000) , (-8507883.000000) , (-8507313.000000) , (-8509495.000000) , (-8509452.000000) , (-8509372.000000) , (-8509205.000000) , (-8508790.000000) , (-8508765.000000) , (-8508088.000000) , (-8507787.000000) , (-8510018.000000) , (-8509849.000000) , (-8509795.000000) , (-8509631.000000) , (-8509630.000000) , (-8507746.000000) , (-8509941.000000) , (-8509895.000000) , (-8508911.000000) , (-8508097.000000) ,
    (-8507975.000000) , (-8507375.000000) , (-8507239.000000) , (-8509846.000000) , (-8509844.000000) , (-8509741.000000) , (-8509268.000000) , (-8509141.000000) , (-8508803.000000) , (-8508542.000000) , (-8508503.000000) , (-8508498.000000) , (-8508427.000000) , (-8508426.000000) , (-8508234.000000) , (-8508053.000000) , (-8507880.000000) , (-8507651.000000) , (-8507485.000000) , (-8507271.000000) , (-8509924.000000) , (-8508481.000000) , (-8508252.000000) , (-8508021.000000) , (-8508350.000000) ,
    (-8507219.000000) , (-8509937.000000) , (-8509319.000000) , (-8509233.000000) , (-8507792.000000) , (-8509369.000000) , (-8509316.000000) , (-8508351.000000) , (-8507935.000000) , (-8507544.000000) , (-8507526.000000) , (-8507272.000000) , (-8509831.000000) , (-8509620.000000) , (-8509596.000000) , (-8509566.000000) , (-8509551.000000) , (-8509324.000000) , (-8509296.000000) , (-8509238.000000) , (-8509106.000000) , (-8509045.000000) , (-8508986.000000) , (-8508689.000000) , (-8508647.000000) ,
    (-8508538.000000) , (-8508079.000000) , (-8507905.000000) , (-8507604.000000) , (-8507446.000000) , (-8508459.000000) , (-8507635.000000) , (-8507502.000000) , (-8507385.000000) , (-8509782.000000) , (-8509410.000000) , (-8509046.000000) , (-8508415.000000) , (-8507858.000000) , (-8507641.000000) , (-8509224.000000) , (-8510016.000000) , (-8509947.000000) , (-8509185.000000) , (-8508987.000000) , (-8508927.000000) , (-8508831.000000) , (-8508326.000000) , (-8507711.000000) , (-8507408.000000) ,
    (-8507289.000000) , (-8509691.000000) , (-8508813.000000) , (-8508751.000000) , (-8508636.000000) , (-8508619.000000) , (-8507684.000000) , (-8507372.000000) , (-8509591.000000) , (-8508969.000000) , (-8508839.000000) , (-8510011.000000) , (-8509346.000000) , (-8507706.000000) , (-8508640.000000) , (-8508582.000000) , (-8508029.000000) , (-8509763.000000) , (-8509640.000000) , (-8509188.000000) , (-8508899.000000) , (-8508699.000000) , (-8508569.000000) , (-8508329.000000) , (-8508214.000000) ,
    (-8507825.000000) , (-8510014.000000) , (-8509868.000000) , (-8509623.000000) , (-8509575.000000) , (-8509485.000000) , (-8509462.000000) , (-8509448.000000) , (-8509380.000000) , (-8509028.000000) , (-8508974.000000) , (-8508843.000000) , (-8508618.000000) , (-8508390.000000) , (-8508255.000000) , (-8508203.000000) , (-8508058.000000) , (-8507830.000000) , (-8507701.000000) , (-8507328.000000) , (-8509927.000000) , (-8509888.000000) , (-8509749.000000) , (-8509636.000000) , (-8509578.000000) ,
    (-8509553.000000) , (-8509501.000000) , (-8509126.000000) , (-8509114.000000) , (-8509030.000000) , (-8508984.000000) , (-8508870.000000) , (-8508669.000000) , (-8508189.000000) , (-8507955.000000) , (-8507508.000000) , (-8507299.000000) , (-8507223.000000) , (-8509611.000000) , (-8509589.000000) , (-8509103.000000) , (-8508753.000000) , (-8508721.000000) , (-8508672.000000) , (-8508213.000000) , (-8508118.000000) , (-8507753.000000) , (-8509993.000000) , (-8509860.000000) , (-8509679.000000) ,
    (-8509034.000000) , (-8508849.000000) , (-8508715.000000) , (-8508507.000000) , (-8508239.000000) , (-8508212.000000) , (-8508091.000000) , (-8508059.000000) , (-8508013.000000) , (-8507406.000000) , (-8509697.000000) , (-8509542.000000) , (-8508491.000000) , (-8508320.000000) , (-8509828.000000) , (-8508808.000000) , (-8508423.000000) , (-8508086.000000) , (-8507705.000000) , (-8507493.000000) , (-8509005.000000) , (-8508139.000000) , (-8507973.000000) , (-8507244.000000) , (-8509269.000000) ,
    (-8508842.000000) , (-8509677.000000) , (-8508925.000000) , (-8508827.000000) , (-8508586.000000) , (-8508469.000000) , (-8508126.000000) , (-8508045.000000) , (-8507959.000000) , (-8507933.000000) , (-8509746.000000) , (-8509385.000000) , (-8508625.000000) , (-8508568.000000) , (-8508944.000000) , (-8508550.000000) , (-8507686.000000) , (-8508318.000000) , (-8507893.000000) , (-8508593.000000) , (-8508001.000000) , (-8507817.000000) , (-8507781.000000) , (-8507296.000000) , (-8509159.000000) ,
    (-8507911.000000) , (-8507640.000000) , (-8507523.000000) , (-8507436.000000) , (-8508140.000000) , (-8509796.000000) , (-8509613.000000) , (-8509608.000000) , (-8509104.000000) , (-8509025.000000) , (-8509017.000000) , (-8508949.000000) , (-8508898.000000) , (-8508885.000000) , (-8508598.000000) , (-8508513.000000) , (-8508365.000000) , (-8508327.000000) , (-8508274.000000) , (-8508128.000000) , (-8508024.000000) , (-8507976.000000) , (-8507553.000000) , (-8507465.000000) , (-8507461.000000) ,
    (-8507407.000000) , (-8507399.000000) , (-8508631.000000) , (-8507253.000000) , (-8507739.000000) , (-8509504.000000) , (-8507445.000000) , (-8507237.000000) , (-8510015.000000) , (-8509867.000000) , (-8509766.000000) , (-8508722.000000) , (-8507865.000000) , (-8507280.000000) , (-8509181.000000) , (-8507361.000000) , (-8509615.000000) , (-8508282.000000) , (-8507884.000000) , (-8509548.000000) , (-8508256.000000) , (-8508169.000000) , (-8508651.000000) , (-8508961.000000) , (-8508621.000000) ,
    (-8508410.000000) , (-8509858.000000) , (-8507717.000000) , (-8509872.000000) , (-8509942.000000) , (-8507985.000000) , (-8507763.000000) , (-8507505.000000) , (-8509660.000000) , (-8509214.000000) , (-8509165.000000) , (-8509130.000000) , (-8508932.000000) , (-8508917.000000) , (-8508368.000000) , (-8507650.000000) , (-8509715.000000) , (-8509505.000000) , (-8509076.000000) , (-8508099.000000) , (-8507570.000000) , (-8508245.000000) , (-8509670.000000) , (-8509194.000000) , (-8508645.000000) ,
    (-8508430.000000) , (-8507288.000000) , (-8509599.000000) , (-8507951.000000) , (-8507832.000000) , (-8509439.000000) , (-8509200.000000) , (-8507936.000000) , (-8509665.000000) , (-8508510.000000) , (-8507834.000000) , (-8508142.000000) , (-8508087.000000) , (-8509230.000000) , (-8509137.000000) , (-8508999.000000) , (-8508451.000000) , (-8507572.000000) , (-8507322.000000) , (-8509579.000000) , (-8507956.000000) , (-8510008.000000) , (-8509727.000000) , (-8509480.000000) , (-8509195.000000) ,
    (-8509163.000000) , (-8508495.000000) , (-8508115.000000) ) )
    AND (C28_M_WWHHST_R_CATCCA IS NOT NULL) )
    Regards,
    Kirill Boyko

    it is strange but I found part of solution.
    If I use ORDERED hint parse time is decreased to 2 seconds from 30 seconds.
    Are there any ways to use this hint permanently? e.g. for session? may be hidden parameters?
    Regards,
    Kirill Boyko

  • PAP2T can't parse DIDs?

    I just switched to a SIP provider with whom I have two numbers, and bought a PAP2T to accommodate. One number is my home office biz number, the other is number is my private/personal number. These numbers are sent as DIDs when someone calls.
    I have my biz phone in the "Phone 1" port and my personal phone plugged in the "Phone 2" port.
    Upon portover to my SIP provider, I discovered the device is not sending DIDs for phone 2 to phone 2. Instead, calls for phone 2 are ringing on phone 1. 
    If I call out from phone 1 to my cell, the CID is correct. If I call out from phone 2, the CID is also from phone 1. In other words, the device seems to think both phones are phone 1.
    I called the SIP provider and we ran some test calls, They insisted they're doing what they're supposed to be doing, and its my device that seems to be mentally challenged. 
    I have the Cisco ATA manual, and it does not address the capability of configuring the lines. It seems like its supposed to be automatic. There does not seem to be any settings that can be changed that would address the phenomenon.  
    I spent 45 minutes on-line with a CISCO tech assist guy. He went through my settings remotely and could not find anything wrong.  He finally gave up and said he'd try to figure it out with the lab PAP2T.
    Any ideas...anyone?
    Tnx....Rich

    The PAP2T does not have logic to "parse" an incoming call beyond the ip_address : port number.
    Yes, I was referring to 5060 and 5061 the default sip port numbers.  An incoming call to a PAP2T is directed to an ip address and a specific port number.  If the call is to the userid and sip port number setup on Line 1, the phone on Line 1 will ring.  If the call is to the userid and sip port number setup on Line 2, the phone on Line 2 will ring.  There is an additional optional check that you have previously registered with the voip provider.  You can setup most any port numbers you want for line 1 and line 2.  Your registration requests will include the specified port number.  If you have the same account number and password setup on each line, either Broadvox will maintain multiple registrations or the effective registration will be the last port number to send a register request.  If they maintain multiple registrations they would more than likely ring all registrations for an incoming call.
    Incoming calls use sip signalling.  The incoming call is called a sip invite.  An incoming sip invite is directed to userid @ ip_address: port.  The userid matches whatever you have setup as the userid on the line tab.  The ip address is your ip address.  The port number is the sip port number setup on the Line tab.  The To: line of the sip invite may reference something you have in the AuthID field if you are using that field. 
    Maybe an asterisk PBX can separate incoming calls with the same userid beyond the uderid ip address : port number.  I don't know the answer to that, but a PAP2T or a SPA3012 use userid@ip_address : port.

  • Can't parse argument number

    Hi;
    I have created a 2 tabbed jspx page to provide search facility.
    The page has a query panel with readonly table.
    In the detail stamp of the table I have added a link to go to Edit page for a particular record.
    (setActionListener added, from=#{row.rowKeyStr} & to=#{bindings.<The VO Iterator instance>.currentRowWithKey} )
    Now when I click the Edit link, I get the following error.
    java.util.logging.ErrorManager: 5:
    java.lang.IllegalArgumentException: can't parse argument number
         at java.text.MessageFormat.makeFormat(MessageFormat.java:1339)
         at java.text.MessageFormat.applyPattern(MessageFormat.java:458)
         at java.text.MessageFormat.<init>(MessageFormat.java:350)
         at java.text.MessageFormat.format(MessageFormat.java:811)
         at oracle.jbo.common.JboExceptionHelper.getErrorMsg(JboExceptionHelper.java:311)
         at oracle.jbo.common.JboExceptionHelper.getLocalizedMessage(JboExceptionHelper.java:186)
         at oracle.jbo.common.JboExceptionHelper.getMessage(JboExceptionHelper.java:139)
         at oracle.jbo.JboWarning.getMessage(JboWarning.java:221)
         at java.lang.Throwable.getLocalizedMessage(Throwable.java:267)
         at java.lang.Throwable.toString(Throwable.java:343)
         at java.lang.String.valueOf(String.java:2826)
         at java.io.PrintWriter.println(PrintWriter.java:710)
         at java.lang.Throwable.printStackTrace(Throwable.java:509)
         at oracle.jbo.JboException.printStackTrace(JboException.java:795)
         at oracle.core.ojdl.logging.ODLFormatter.writeStackTrace(ODLFormatter.java:668)
         at oracle.core.ojdl.logging.ODLFormatter.toLogMessage(ODLFormatter.java:404)
    How can I fix this?
    Thanks ,
    Lakindu

    Hi,
    If you try it with a button and a navigation outcome, how does it behave? without any parameters.
    With this setActionListener, I think that you are setting the current row to the iterator of the current page and not to the iterator of the page you want to navigate.
    This seems to be logical since another iterator will be initialised in the other page.
    You need to pass the currentRow Key to the other page and then call the the setCurrentRowWithKey to that page's iterator.
    You can easily do this by adding an Action operation in the pageDefinition of the second page.
    This action will be the iterator's setCurrentRowWithKey or setCurrentRowWithKeyValue.
    Then you have to make this action to be executed every time you enter the page.
    I dont know if you are using any taskFlows so, add an invoke Action on the second pageDef that will point to the action you created previously.
    The only thing left is how to pass the current Row Key, but more information is needed in order to know if you are using any taskFlows and if you can hold the Key to some pageFlowScope variable.
    Hope this will help you.
    Regards,
    Dimitris.

  • Maximum number of characters that can be parsed by javacc parser

    I'm a newbie to Javacc.
    Can any one please let me know if there is any limitations with respect to the number of characters that can be parsed by a Javacc parser?
    I have done with a simple javacc parser. I'm getting some stackoverflow exception when the number of characters exceeeds more than 10000 characters.
    Please help me in resolving this issue.
    Thanks in advance

    snr_anand wrote:
    I have done with a simple javacc parser. I'm getting some stackoverflow exception when the number of characters exceeeds more than 10000 characters.
    Presumably what is really happening is that you have a source file that is now 10,000 (or so in length.) You run your parser on that and it blows up.
    That suggests that your syntax and the combination of the input, rather than javacc, has a problem. The source and the syntax together are producing a never ending recursion.

Maybe you are looking for

  • You do not have sufficient access to your computer to connect to the selected printer

    Environment Print server: Windows 2008 R2 SP1 Clients: Windows XP SP3 + GPP Drivers: HP UPD PCL6 5.3.1.10527 Intermec 7.2.2 Ricoh UPD PS 3.9.0.0 Xerox UPD PS 5.216.12 Zebra 2.6.42.03 GPO Configuration - enables users to add printers/drivers from the

  • Remove the user status in Sales order

    how to remove the user status in sales order header? could you give the function module or BAPI to get this?

  • SQL 2012 R2 - SSRS with the Report Server Web Service URL, can't access

    Hello: I am installing Dynamics CRM 2013.  When I am on RS Configuration manager; I am running into the SSRS (SQL 2012 on Server 2012)SQL issue, can't access the http://servername/:80/ReportsServer or http://servername/:Reports web pages The database

  • MIR7 Invoice Parking

    Hi friends I want to send an external email to the person who has created the PO. when the user parks a particular invoice for a reason using Tcode MIR7. The Functionality: After entering the reason for parking, PO no and other input feilds in Tcode

  • Viewing TIF files in Mac OS X v4

    Hello: I have been sent some files in TIF format but I cannot find a way to view these files in Mac OS X (10.4). I have confirmed that the files are not corrupted, since I can transfer them to a Windows PC and view them there, but OS X does not appea