import java.util.*;
import java.util.zip.*;
import java.util.List;
import java.util.regex.*;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import java.util.concurrent.locks.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.table.*;
import java.io.*;
import java.net.*;
import java.lang.reflect.*;
import java.lang.ref.*;
import java.lang.management.*;
import java.security.*;
import java.security.spec.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.imageio.*;
import java.math.*;
class main {
static void test_agiBlue_parseQueryScript() {
assertEqualsVerbose(unstruct(" [ALQLTriple(triple=T3(a=\"word types\", b=\"is plural of\", c=\"$x\")), ALQLTriple(triple=T3(a=\"$y\", b=\"is a\", c=\"$x\")), ALQLReturn(var=\"$y\")] "),
agiBlue_parseQueryScript("\r\n word types / is plural of / $x\r\n $y / is a / $x\r\n return $y\r\n "));
assertEqualsVerbose(unstruct(" [ALQLLockStatement(triple=T3(a=\"word types\", b=\"is plural of\", c=\"*\"))] "),
agiBlue_parseQueryScript("\r\n lock { word types / is plural of / * }\r\n "));
assertEqualsVerbose(unstruct(" [ALQLPage(page=\"delete slice $x\", matchMethod=\"flexMatchDollarVarsIC_first\")] "),
agiBlue_parseQueryScript("\r\n page { delete slice $x }\r\n "));
assertEqualsVerbose(unstruct(" [ALQLPage(page=\"bla\", matchMethod=\"eqic\")] "),
agiBlue_parseQueryScript("\r\n page { bla }\r\n "));
assertEqualsVerbose(unstruct(" [\r\n ALQLSlice(slice=\"hello\", contents=[\r\n ALQLPage(page=\"bla\", matchMethod=\"eqic\"),\r\n ALQLPage(page=\"blubb\", matchMethod=\"eqic\")\r\n ])] ] "),
agiBlue_parseQueryScript("\r\n slice \"hello\" {\r\n page { bla }\r\n page { blubb }\r\n }\r\n "));
// tuple return
assertEqualsVerbose(unstruct(" [ALQLReturnTuple(vars=[\"$x\", \"$y\"])] "),
agiBlue_parseQueryScript("\r\n return $x, $y\r\n "));
}
static A assertEqualsVerbose(Object x, A y) {
assertEqualsVerbose((String) null, x, y);
return y;
}
static A assertEqualsVerbose(String msg, Object x, A y) {
if (!eq(x, y)) {
throw fail((msg != null ? msg + ": " : "") + /*sfu*/(y) + " != " + /*sfu*/(x));
} else
print("OK: " + /*sfu*/(x));
return y;
}
static Object unstruct(String text) {
return unstructure(text);
}
static List agiBlue_parseQueryScript(String script) {
return map("agiBlue_parseQueryLine",tlftj_honoringBrackets(script));
}
static boolean eq(Object a, Object b) {
return a == b || (a == null ? b == null : b != null && a.equals(b));
}
static RuntimeException fail() { throw new RuntimeException("fail"); }
static RuntimeException fail(Throwable e) { throw asRuntimeException(e); }
static RuntimeException fail(Object msg) { throw new RuntimeException(String.valueOf(msg)); }
static RuntimeException fail(String msg) { throw new RuntimeException(msg == null ? "" : msg); }
static RuntimeException fail(String msg, Throwable innerException) { throw new RuntimeException(msg, innerException); }
static volatile StringBuffer local_log = new StringBuffer(); // not redirected
static volatile Appendable print_log = local_log; // might be redirected, e.g. to main bot
// in bytes - will cut to half that
static volatile int print_log_max = 1024*1024;
static volatile int local_log_max = 100*1024;
static boolean print_silent = false; // total mute if set
static Object print_byThread_lock = new Object();
static volatile ThreadLocal