diff --git a/bin/alk.jar b/bin/alk.jar
index 138ab40d..0eeb16c7 100644
Binary files a/bin/alk.jar and b/bin/alk.jar differ
diff --git a/examples/analysis/tase2022/askith_assert.alk b/examples/analysis/tase2022/askith_assert.alk
new file mode 100644
index 00000000..58fbf79c
--- /dev/null
+++ b/examples/analysis/tase2022/askith_assert.alk
@@ -0,0 +1,34 @@
+/*
+ alki -a askith_assert.alk -s -smt="Z3"
+
+ a |-> $a_0
+ res |-> 0
+ i |-> $i_0
+ Path condition:
+ ((($a_0.size()>0)&&(0<=$i_0))&&($i_0<($a_0.size()-1))) &&
+ !($a_0[$i_0]>$a_0[($i_0+1)])
+
+ a |-> (store (store $a_0 $i_0 $a_0[($i_0+1)]) ($i_0+1) $a_0[$i_0])
+ res |-> 0
+ tmp |-> $a_0[$i_0]
+ i |-> $i_0
+ Path condition:
+ ((($a_0.size()>0)&&(0<=$i_0))&&($i_0<($a_0.size()-1))) &&
+ ($a_0[$i_0]>$a_0[($i_0+1)]) &&
+ validStore($a_0, $i_0, $a_0[($i_0+1)]) &&
+ validStore((store $a_0 $i_0 $a_0[($i_0+1)]), ($i_0+1), $a_0[$i_0])
+*/
+
+@havoc a : array;
+@havoc i : int;
+@assume a.size() > 0 && 0 <= i && i < a.size() - 1;
+if (a[i] > a[i + 1])
+{
+ tmp = a[i];
+ a[i] = a[i + 1];
+ a[i + 1] = tmp;
+ res = i;
+}
+res = 0;
+@assert a[i] <= a[i + 1];
+@assert res > 0 ==> res == i;
\ No newline at end of file
diff --git a/examples/analysis/tase2022/askith_call.alk b/examples/analysis/tase2022/askith_call.alk
new file mode 100644
index 00000000..c7971318
--- /dev/null
+++ b/examples/analysis/tase2022/askith_call.alk
@@ -0,0 +1,36 @@
+/*
+ alki -a askith_call.alk -m -s -smt="Z3"
+
+ Successfully verified: askIth
+
+ a |-> $a_1
+ last |-> $\result_0
+ Path condition:
+ ($a.size()>3) &&
+ ($a_1[2]<=$a_1[3]) &&
+ ($\result_0>0) ==> ($\result_0==2)
+
+*/
+
+askIth(out a, i)
+@requires a : array
+@requires i : int
+@requires a.size() > 0 && 0 <= i && i < a.size() - 1
+@ensures a[i] <= a[i + 1]
+@ensures \result > 0 ==> \result == i
+@ensures \result : int
+{
+ if (a[i] > a[i + 1])
+ {
+ tmp = a[i];
+ a[i] = a[i + 1];
+ a[i + 1] = tmp;
+ return i;
+ }
+ return 0;
+}
+
+@symbolic $a : array;
+a = $a;
+@assume a.size() > 3;
+last = askIth(a, 2);
\ No newline at end of file
diff --git a/examples/analysis/tase2022/askith_verify.alk b/examples/analysis/tase2022/askith_verify.alk
new file mode 100644
index 00000000..720b00b3
--- /dev/null
+++ b/examples/analysis/tase2022/askith_verify.alk
@@ -0,0 +1,23 @@
+/*
+ alki -a askith_verify.alk -s -smt="Z3"
+
+ Successfully verified: askIth
+*/
+
+askIth(out a, i)
+@requires a : array
+@requires i : int
+@requires a.size() > 0 && 0 <= i && i < a.size() - 1
+@ensures a[i] <= a[i + 1]
+@ensures \result > 0 ==> \result == i
+@ensures \result : int
+{
+ if (a[i] > a[i + 1])
+ {
+ tmp = a[i];
+ a[i] = a[i + 1];
+ a[i + 1] = tmp;
+ return i;
+ }
+ return 0;
+}
\ No newline at end of file
diff --git a/examples/analysis/tase2022/bubblesort.alk b/examples/analysis/tase2022/bubblesort.alk
new file mode 100644
index 00000000..9e2adef8
--- /dev/null
+++ b/examples/analysis/tase2022/bubblesort.alk
@@ -0,0 +1,44 @@
+/*
+ alki -a bubblesort.alk -m -i "b |-> [2, 3, 1]"
+ b |-> [1, 2, 3]
+ alki -a bubblesort.alk -m -i "b |-> [1.2, 1.5, 1.4]"
+ b |-> [1.2, 1.4, 1.5]
+ alki -a bubblesort.alk -m -i "b |-> [\"ab\", \"ac\", \"aa\"]"
+ b |-> ["aa", "ab", "ac"]
+*/
+
+swap(out a, i, j)
+@requires 0 <= i && i < a.size()
+@requires 0 <= j && j < a.size()
+{
+ temp = a[i];
+ a[i] = a[j];
+ a[j] = temp;
+}
+
+askIth(out a, i)
+@requires a.size() > 1
+@requires 0 <= i && i < a.size() - 1
+{
+ if (a[i] > a[i + 1]) {
+ swap(a, i, i + 1);
+ return i;
+ }
+ return 0;
+}
+
+bubbleSort(out a)
+@requires a.size() > 0
+{
+ last = a.size() - 1;
+ while (last > 0)
+ {
+ n1 = last;
+ for (i = 0; i < n1; ++i)
+ {
+ last = askIth(a, i);
+ }
+ }
+}
+
+bubbleSort(b);
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg.alk b/examples/analysis/tase2022/fstalg.alk
new file mode 100644
index 00000000..a89560fc
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg.alk
@@ -0,0 +1,16 @@
+/*
+ alki -a fstalg.alk -m -i "a |-> [1, 2, 2, 3, 3, 3]"
+
+ a |-> [1, 2, 2, 3, 3, 3]
+ slp |-> 3
+ i |-> 6
+*/
+
+slp = 1;
+i = 1;
+while (i < a.size())
+{
+ if (a[i] == a[i - slp])
+ slp = slp + 1;
+ i = i + 1;
+}
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg_assert.alk b/examples/analysis/tase2022/fstalg_assert.alk
new file mode 100644
index 00000000..e8b15670
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg_assert.alk
@@ -0,0 +1,35 @@
+/*
+ alki -a fstalg_assert.alk -m -s -smt="Z3"
+
+ a |-> $a_0
+ slp |-> $slp_0
+ i |-> ($i_1+1)
+ Path condition:
+ ($a_0.size()>0) &&
+ forall $i_0 : int :: ((0<=$i_0)&&($i_0<($a_0.size()-1))) ==> ($a_0[$i_0]<=$a_0[($i_0+1)]) &&
+ exists $k_0 : int :: (((($slp_0-1)<=$k_0)&&($k_0<$i_1))&&($a_0[$k_0]==$a_0[(($k_0-$slp_0)+1)])) &&
+ !($a_0[$i_1]==$a_0[($i_1-$slp_0)])
+
+ a |-> $a_0
+ slp |-> ($slp_0+1)
+ i |-> ($i_1+1)
+ Path condition:
+ ($a_0.size()>0) &&
+ forall $i_0 : int :: ((0<=$i_0)&&($i_0<($a_0.size()-1))) ==> ($a_0[$i_0]<=$a_0[($i_0+1)]) &&
+ exists $k_0 : int :: (((($slp_0-1)<=$k_0)&&($k_0<$i_1))&&($a_0[$k_0]==$a_0[(($k_0-$slp_0)+1)])) &&
+ ($a_0[$i_1]==$a_0[($i_1-$slp_0)])
+*/
+
+@havoc a : array;
+slp = 1;
+i = 1;
+@assume a.size() > 0;
+@assume forall i : int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i + 1];
+
+@havoc i : int;
+@havoc slp : int;
+@assume exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1];
+if (a[i] == a[i - slp])
+ slp = slp + 1;
+i = i + 1;
+@assert exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1];
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg_assume.alk b/examples/analysis/tase2022/fstalg_assume.alk
new file mode 100644
index 00000000..c24ed475
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg_assume.alk
@@ -0,0 +1,31 @@
+/*
+ alki -a fstalg_assume.alk -m -s -smt="Z3"
+
+ a |-> $a_0
+ slp |-> 2
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 3
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 2
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 1
+ i |-> 3
+*/
+
+@havoc a : array;
+@assume forall i : int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i + 1];
+@assume a.size() == 3;
+slp = 1;
+i = 1;
+while (i < a.size())
+{
+ if (a[i] == a[i - slp])
+ slp = slp + 1;
+ i = i + 1;
+}
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg_inv.alk b/examples/analysis/tase2022/fstalg_inv.alk
new file mode 100644
index 00000000..a30f9c05
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg_inv.alk
@@ -0,0 +1,30 @@
+/*
+ alki -a fstalg_inv.alk -m -s -smt="Z3"
+
+ a |-> $a_0
+ slp |-> $slp_0
+ i |-> $i_1
+
+ [13:11] Loop invariant was verified!
+ [14:12] Loop invariant was verified!
+ [13:11] Loop invariant was verified!
+ [14:12] Loop invariant was verified!
+
+*/
+
+@havoc a : array;
+slp = 1;
+i = 1;
+@assume a.size() > 0;
+@assume forall i : int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i + 1];
+while (i < a.size())
+@invariant 1 <= slp && i <= a.size();
+@invariant (exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1]);
+// @invariant (forall k:int :: slp <= k && k < i ==> a[k] != a[k - slp]);
+// Z3 TIMEOUT, Dafny TIMEOUT; Why3 with Alt-Ergo WORKS FINE
+@modifies slp, i;
+{
+ if (a[i] == a[i - slp])
+ slp = slp + 1;
+ i = i + 1;
+}
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg_loopassert.alk b/examples/analysis/tase2022/fstalg_loopassert.alk
new file mode 100644
index 00000000..d3d528cc
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg_loopassert.alk
@@ -0,0 +1,33 @@
+/*
+ alki -a fstalg_loopassert.alk -m -s -smt="Z3"
+
+ a |-> $a_0
+ slp |-> 1
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 2
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 3
+ i |-> 3
+
+ a |-> $a_0
+ slp |-> 2
+ i |-> 3
+*/
+
+@havoc a : array;
+slp = 1;
+i = 1;
+@assume a.size() == 3;
+@assume forall i : int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i + 1];
+while (i < a.size())
+@modifies slp, i;
+{
+ if (a[i] == a[i - slp])
+ slp = slp + 1;
+ i = i + 1;
+}
+@loopassert 1 <= slp && i <= a.size() && (exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1]);
\ No newline at end of file
diff --git a/examples/analysis/tase2022/fstalg_req.alk b/examples/analysis/tase2022/fstalg_req.alk
new file mode 100644
index 00000000..33187c15
--- /dev/null
+++ b/examples/analysis/tase2022/fstalg_req.alk
@@ -0,0 +1,16 @@
+/*
+ alki -a fstalg_req.alk -m -s -smt="Z3"
+
+ TIMEOUT: a.size() is not bounded
+*/
+
+@havoc a : array;
+@assume forall i : int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i + 1]
+slp = 1;
+i = 1;
+while (i < a.size())
+{
+ if (a[i] == a[i - slp])
+ slp = slp + 1;
+ i = i + 1;
+}
\ No newline at end of file
diff --git a/input/symb/notes.ts b/input/symb/notes.ts
new file mode 100644
index 00000000..dd991717
--- /dev/null
+++ b/input/symb/notes.ts
@@ -0,0 +1,6 @@
+//
+
+// (Array T Bool)
+
+// x in A -> (select A x) unde A : set
+// x in A -> (exists j int :: 0 <= j && j < A.size() ==> (select A j) == x) unde A : array
\ No newline at end of file
diff --git a/input/symb/test0.alk b/input/symb/test0.alk
index 057a948f..ec17b2c0 100644
--- a/input/symb/test0.alk
+++ b/input/symb/test0.alk
@@ -1,28 +1,6 @@
-findMin(a : array) : int
-@ensures forall j : int :: 0 <= j && j < a.size() ==> \result <= a[j]
-@ensures exists j : int :: 0 <= j && j < a.size() ==> \result == a[j]
-{
- i = 0;
- minim = a[0];
-
- while (i < a.size())
- @invariant i <= a.size();
- @invariant forall j : int :: 0 <= j && j < i ==> minim <= a[j];
- @modifies i, minim;
- {
- if (a[i] < minim)
- {
- minim = a[i];
- }
- i++;
+a(i) {
+ b(j){
+ j++;
}
-
- return minim;
-}
-
-@symbolic $a : array;
-a = $a;
-x = findMin(a);
-
-
-
+ i++;
+}
\ No newline at end of file
diff --git a/input/symb/test1.alk b/input/symb/test1.alk
index bc4ba487..f21ef809 100644
--- a/input/symb/test1.alk
+++ b/input/symb/test1.alk
@@ -1,24 +1,31 @@
-plateau(a: array) : int
+plateau(a)
+@requires a : array
@requires forall i:int :: 0 <= i && i < a.size() - 1 ==> a[i] <= a[i+1]
-@ensures (forall k:int :: forall l:int :: 0 <= k && k <= l && l < a.size() && a[k] == a[l] ==> (l-k) <= \result)
+@requires a.size() > 0
+@ensures (exists k:int :: \result - 1 <= k && k < i && a[k] == a[k - \result + 1])
+@ensures \result : int
{
lg = 1;
i = 1;
while (i < a.size())
- @invariant (forall k:int :: forall l:int ::
- 0 <= k && k <= l && l < i && a[k] == a[l]
- ==>
- (l-k) <= lg)
- @modifies lg
+ @invariant 1 <= lg && i <= a.size();
+ @invariant (exists k:int :: lg - 1 <= k && k < i && a[k] == a[k - lg + 1]);
+ // @invariant (forall k:int :: lg <= k && k < i ==> a[k] != a[k - lg]);
+ // Z3 TIMEOUT, Dafny TIMEOUT; Why3 with Alt-Ergo WORKS FINE
+ @modifies lg;
+ @modifies i;
{
- if (a[i] == a[i - lg]) lg = lg+1;
+ if (a[i] == a[i - lg])
+ {
+ lg = lg + 1;
+ }
i = i + 1;
}
return lg;
}
-
+/*
@symbolic $a: array;
a = $a;
-@assume a.size() < 4;
+@assume a.size() > 4;
@assume forall i:int :: 0 <= i && i < a.size()-1 ==> a[i] <= a[i+1];
-x = plateau(a);
\ No newline at end of file
+x = plateau(a);*/
\ No newline at end of file
diff --git a/input/symb/test2.alk b/input/symb/test2.alk
index 6ddadb00..ed05b70e 100644
--- a/input/symb/test2.alk
+++ b/input/symb/test2.alk
@@ -1,6 +1,25 @@
-@symbolic $a : array, $i : int;
-a = $a;
-@assume a.size() == 8;
-a.pushBack($i);
-@assume $a.size() + 1 == a.size();
\ No newline at end of file
+
+4) requires si ensures ca intructiuni la algorimul "main"
+9) de adaugat list<> si array
+10) restul structurilor repetitive verificate: invariant, modifies
+// forAST/repeatUntilAST/doWhileAST, foreach -> whileAST
+X 11) fara functii imbricate la executia simbolica
+X 12) set-ul nu are elemente unice?
+X 13) scris teste pentru TASE
+
+
+
+
+
+X 1) de adaugat ;
+ optional la @requires, @ensures, @invariant, @modifies
+ obligatoriu la @assert, @assume, @havoc
+X 2) tipuri de date in requires si ensures (@requires a : int && x : int) (@ensures \result : int)
+X 3) havoc cu tip de date: (havoc : int)
+X 5) loopassert -> ignorat / verificat simbolic
+X 6) de adaugat la modifies a.size() (se modifica si dimensiunea)
+X 7) \old(parametrii)
+X 8) int in set -> incompatibil bool cu int
+X 11) loopassert -> warning
+X 12) modifies size pentru set si list
\ No newline at end of file
diff --git a/input/symb/test3.alk b/input/symb/test3.alk
index 40a753a2..c0d2bdc2 100644
--- a/input/symb/test3.alk
+++ b/input/symb/test3.alk
@@ -1,11 +1,18 @@
-symbolic $n: int;
-n = $n;
-sum = 0;
-i = 1;
+#include
+
+f(x)
+{
+ return x;
+}
-while (i <= n)
-invariant sum == (i-1)*i/2
+@requires forall i : int => 0 <= i && i < a. size() − 1 ==> a[i] <= a[i+1]
+@ensures forall i : int => 0 <= i && i < a. size() − 1 ==> a[i] <= a[i+1]
+
+slp = 1;
+i = 1;
+while ( i < a.size())
{
- sum = sum + i;
+ if (a [i] == a [i − slp])
+ slp = slp +1;
i = i + 1;
}
\ No newline at end of file
diff --git a/input/symb/test6.alk b/input/symb/test6.alk
index 62bdd46e..a08de9d5 100644
--- a/input/symb/test6.alk
+++ b/input/symb/test6.alk
@@ -2,12 +2,31 @@
a = $a;
@assume forall i:int :: 0 <= i && i < a.size()-1 ==> a[i] <= a[i+1];
@assume a.size() > 0;
+@assert a.size() > 0;
slp = 1;
+
i = 1;
+
+do
+@invariant 1 <= slp && i <= a.size();
+{
+
+} while(a.size() < 0);
+
+
+foreach i from A
+@invariant 1 <= slp && i <= a.size()
+{
+
+}
+
+(;)?
+
+
while (i < a.size())
@invariant 1 <= slp && i <= a.size();
-//@invariant (exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1]);
-@invariant (forall k:int :: slp <= k && k < i ==> a[k] != a[k - slp]);
+@invariant (exists k:int :: slp - 1 <= k && k < i && a[k] == a[k - slp + 1]);
+// @invariant (forall k:int :: slp <= k && k < i ==> a[k] != a[k - slp]);
@modifies slp;
@modifies i;
{
@@ -16,4 +35,9 @@ while (i < a.size())
slp = slp + 1;
}
i = i + 1;
-}
\ No newline at end of file
+}
+
+
+choose x from [1..5];
+
+
diff --git a/input/symb/test7.alk b/input/symb/test7.alk
index 0541d7eb..348e43f9 100644
--- a/input/symb/test7.alk
+++ b/input/symb/test7.alk
@@ -1 +1,37 @@
-a = flip();
\ No newline at end of file
+choose x from A;
+// x |-> $x, exists i : int :: lft(A) <= i && i < rgh(A) ==> A[i] == $x
+
+foreach x in A
+{
+ A.pushBack(10);
+}
+
+======================= A : array
+
+i = 0;
+B = A;
+while (i < B.size())
+{
+ x = B[i];
+
+ i++;
+}
+
+
+foreach x in A
+@invariant A.size() > 10
+{
+ A = A U { 1 };
+}
+
+======================= A : set
+
+S = A;
+while (S.size() > 0)
+@invariant S.size() > 10
+{
+ choose x from S;
+
+
+ S.remove(x);
+}
\ No newline at end of file
diff --git a/input/symb/test8.alk b/input/symb/test8.alk
new file mode 100644
index 00000000..6cf87730
--- /dev/null
+++ b/input/symb/test8.alk
@@ -0,0 +1,35 @@
+DNFS(out arr: array)
+@requires arr.size() > 0
+@requires forall k: int :: 0 <= k && k < arr.size()
+ ==> (arr[k] == 0 || arr[k] == 1)
+@ensures (forall j:int :: 1 <= j && j < arr.size() ==> arr[j - 1] <= arr[j])
+{
+ low = 0;
+ high = arr.size() - 1;
+
+ while (low < high)
+ @invariant 0 <= low && low <= high && high < arr.size();
+ @invariant forall k: int :: 0 <= k && k < arr.size() ==> (arr[k] == 0 || arr[k] == 1);
+ @invariant forall k: int :: 0 <= k && k < low ==> arr[k] == 0;
+ @invariant forall k: int :: high < k && k < arr.size() ==> arr[k] == 1;
+ @modifies arr;
+ @modifies low;
+ @modifies high;
+ {
+ if (arr[low] == 0)
+ {
+ low++;
+ }
+ else
+ {
+ temp = arr[low];
+ arr[low] = arr[high];
+ arr[high] = temp;
+ high--;
+ }
+ }
+ @assert low == high;
+ @assert arr[low] == 0 || arr[low] == 1;
+ @assert forall k: int :: 0 <= k && k < low ==> arr[k] == 0;
+ @assert forall k: int :: high < k && k < arr.size() ==> arr[k] == 1;
+}
\ No newline at end of file
diff --git a/src/main/java/ast/ASTHelper.java b/src/main/java/ast/ASTHelper.java
index 256b50be..b33df4c8 100644
--- a/src/main/java/ast/ASTHelper.java
+++ b/src/main/java/ast/ASTHelper.java
@@ -1,6 +1,7 @@
package ast;
import ast.stmt.FunctionDeclAST;
+import execution.parser.exceptions.AlkException;
import java.util.ArrayList;
import java.util.List;
@@ -11,9 +12,20 @@ public static List getFunctions(AST root)
{
List lst = new ArrayList<>();
ASTVisitor> visitor = new ASTVisitor<>(lst);
- visitor.register((tree) -> tree instanceof FunctionDeclAST, (tree, payload) -> {
+ boolean[] inside = new boolean[1];
+ visitor.registerPre((tree) -> tree instanceof FunctionDeclAST, (tree, payload) -> {
if (!((FunctionDeclAST) tree).getEnsures().isEmpty())
payload.add((FunctionDeclAST) tree);
+ if (inside[0])
+ {
+ throw new AlkException("Can't define a function inside another function!");
+ }
+ inside[0] = true;
+ });
+ visitor.registerPost((tree) -> tree instanceof FunctionDeclAST, (tree, payload) -> {
+ if (!((FunctionDeclAST) tree).getEnsures().isEmpty())
+ payload.add((FunctionDeclAST) tree);
+ inside[0] = false;
});
visitor.visit(root);
return lst;
diff --git a/src/main/java/ast/ASTVisitor.java b/src/main/java/ast/ASTVisitor.java
index 37da2071..e27db64c 100644
--- a/src/main/java/ast/ASTVisitor.java
+++ b/src/main/java/ast/ASTVisitor.java
@@ -5,7 +5,8 @@
public class ASTVisitor
{
- private final List> listeners = new ArrayList<>();
+ private final List> pre = new ArrayList<>();
+ private final List> post = new ArrayList<>();
private final T payload;
public ASTVisitor(T payload)
@@ -19,7 +20,7 @@ void visit(AST root)
{
return;
}
- for (VisitorListenerKey key : listeners)
+ for (VisitorListenerKey key : pre)
{
if (key.identifier.accept(root))
{
@@ -30,11 +31,23 @@ void visit(AST root)
{
visit(root.getChild(i));
}
+ for (VisitorListenerKey key : post)
+ {
+ if (key.identifier.accept(root))
+ {
+ key.code.run(root, payload);
+ }
+ }
+ }
+
+ void registerPre(Identifier identifier, VisitorListener code)
+ {
+ pre.add(new VisitorListenerKey<>(identifier, code));
}
- void register(Identifier identifier, VisitorListener code)
+ void registerPost(Identifier identifier, VisitorListener code)
{
- listeners.add(new VisitorListenerKey<>(identifier, code));
+ post.add(new VisitorListenerKey<>(identifier, code));
}
static class VisitorListenerKey
diff --git a/src/main/java/ast/enums/ContextVar.java b/src/main/java/ast/enums/ContextVar.java
index 940b8b5a..bd7b2685 100644
--- a/src/main/java/ast/enums/ContextVar.java
+++ b/src/main/java/ast/enums/ContextVar.java
@@ -2,5 +2,5 @@
public enum ContextVar
{
- RESULT
+ RESULT, OLD
}
diff --git a/src/main/java/ast/expr/OldAST.java b/src/main/java/ast/expr/OldAST.java
new file mode 100644
index 00000000..4607da91
--- /dev/null
+++ b/src/main/java/ast/expr/OldAST.java
@@ -0,0 +1,42 @@
+package ast.expr;
+
+import ast.attr.IdASTAttr;
+import ast.type.DataTypeAST;
+import ast.type.DataTypeProvider;
+import org.antlr.v4.runtime.ParserRuleContext;
+import util.exception.InternalException;
+import visitor.ifaces.VisitorIface;
+import visitor.ifaces.expr.OldVisitorIface;
+import visitor.ifaces.expr.ResultVisitorIface;
+
+public class OldAST
+extends ExpressionAST
+{
+ public OldAST(ParserRuleContext ctx)
+ {
+ super(ctx);
+ }
+
+ @Override
+ public DataTypeAST getDataType(DataTypeProvider dtp)
+ {
+ throw new InternalException("Can't find the data type of old function!");
+ }
+
+ @Override
+ public String toString()
+ {
+ return "\\old(" + getAttribute(IdASTAttr.class).getId() + ")";
+ }
+
+ @Override
+ public T accept(VisitorIface visitor)
+ {
+ if (visitor instanceof OldVisitorIface)
+ return ((OldVisitorIface) visitor).visit(this);
+
+ return super.accept(visitor);
+ }
+
+}
+
diff --git a/src/main/java/ast/expr/ResultAST.java b/src/main/java/ast/expr/ResultAST.java
index fc2d852e..301dc95c 100644
--- a/src/main/java/ast/expr/ResultAST.java
+++ b/src/main/java/ast/expr/ResultAST.java
@@ -24,7 +24,7 @@ public DataTypeAST getDataType(DataTypeProvider dtp)
@Override
public String toString()
{
- return "result";
+ return "\\result";
}
@Override
diff --git a/src/main/java/ast/stmt/DeclAST.java b/src/main/java/ast/stmt/DeclAST.java
new file mode 100644
index 00000000..6fce86fb
--- /dev/null
+++ b/src/main/java/ast/stmt/DeclAST.java
@@ -0,0 +1,19 @@
+package ast.stmt;
+
+import org.antlr.v4.runtime.ParserRuleContext;
+
+
+public class DeclAST
+extends StmtAST
+{
+ public DeclAST(ParserRuleContext ctx)
+ {
+ super(ctx);
+ }
+
+ @Override
+ public String toString()
+ {
+ return getChild(0) + (getChildCount() > 1 ? ":" + getChild(1) : "");
+ }
+}
diff --git a/src/main/java/ast/stmt/LoopAssertAST.java b/src/main/java/ast/stmt/LoopAssertAST.java
new file mode 100644
index 00000000..4875820e
--- /dev/null
+++ b/src/main/java/ast/stmt/LoopAssertAST.java
@@ -0,0 +1,19 @@
+package ast.stmt;
+
+import ast.AST;
+import org.antlr.v4.runtime.ParserRuleContext;
+
+public class LoopAssertAST
+extends AST
+{
+ public LoopAssertAST(ParserRuleContext ctx)
+ {
+ super(ctx);
+ }
+
+ @Override
+ public String toString()
+ {
+ return "@loopassert " + this.getChild(0);
+ }
+}
diff --git a/src/main/java/ast/stmt/WhileAST.java b/src/main/java/ast/stmt/WhileAST.java
index 3b75dbac..b5000e1e 100644
--- a/src/main/java/ast/stmt/WhileAST.java
+++ b/src/main/java/ast/stmt/WhileAST.java
@@ -13,10 +13,22 @@
public class WhileAST
extends StmtAST
{
+ private boolean loopAssert = false;
- public WhileAST(ParserRuleContext ctx)
+ public WhileAST(ParserRuleContext ctx, boolean loopAssert)
{
super(ctx);
+ this.loopAssert = loopAssert;
+ }
+
+ public boolean hasLoopAssert()
+ {
+ return loopAssert;
+ }
+
+ public AST getLoopAssert()
+ {
+ return getChild(getChildCount() - 1).getChild(0);
}
public AST getCondition()
@@ -26,7 +38,7 @@ public AST getCondition()
public AST getStatement()
{
- return super.getChild(getChildCount() - 1);
+ return loopAssert ? super.getChild(getChildCount() - 2) : super.getChild(getChildCount() - 1) ;
}
@Override
@@ -47,7 +59,7 @@ public String toString()
public List getInvariants()
{
List invs = new ArrayList<>();
- for (int i = 1; i < getChildCount() - 1; i++)
+ for (int i = 1; i < (loopAssert ? getChildCount() - 2 : getChildCount() - 1); i++)
{
invs.add(getChild(i));
}
diff --git a/src/main/java/execution/Symbolic.java b/src/main/java/execution/Symbolic.java
index 0f9c2046..a5fcce16 100644
--- a/src/main/java/execution/Symbolic.java
+++ b/src/main/java/execution/Symbolic.java
@@ -8,6 +8,7 @@
import ast.stmt.FunctionDeclAST;
import execution.parser.env.*;
import execution.parser.exceptions.AlkException;
+import execution.state.symbolic.SymbolicOldState;
import execution.types.alkBool.AlkBool;
import execution.utils.Stepper;
import symbolic.SymbolicValue;
@@ -33,7 +34,9 @@ public static void verifyFunction(AlkFunction function, Execution exec)
{
Parameter param = function.getParam(i);
AST symAST = SymIDAST.generate(param.getName());
- env.define(param.getName()).setValue(new SymbolicValue(symAST));
+ SymbolicValue value = new SymbolicValue(symAST);
+ env.define(param.getName()).setValue(value);
+ env.define(SymbolicOldState.oldName + "(" + param.getName() + ")").setValue(value);
if (param.getDataType() == null)
{
throw new AlkException("Can't verify " + id + " because the type of " + param.getName() + " can't be identified!");
@@ -78,6 +81,7 @@ else if (r instanceof AlkBool)
exec.getFuncManager(),
exec.getInterpreterManager()
);
+
for (ExecutionOutput output : results)
{
if (output.hasError)
diff --git a/src/main/java/execution/interpreter/SymbolicStatefulExpressionInterpreter.java b/src/main/java/execution/interpreter/SymbolicStatefulExpressionInterpreter.java
index 62fdf31b..6c821972 100644
--- a/src/main/java/execution/interpreter/SymbolicStatefulExpressionInterpreter.java
+++ b/src/main/java/execution/interpreter/SymbolicStatefulExpressionInterpreter.java
@@ -139,6 +139,8 @@ public ExecutionState interpretContextVar(ContextVar var, AST ast, ExecutionPayl
{
case RESULT:
return new SymbolicResultState(ast, payload);
+ case OLD:
+ return new SymbolicOldState(ast, payload);
default:
throw new InternalException("Can't recognize this type of context variable: " + var);
}
diff --git a/src/main/java/execution/state/LoopingState.java b/src/main/java/execution/state/LoopingState.java
index 9eeb6450..f0d61149 100644
--- a/src/main/java/execution/state/LoopingState.java
+++ b/src/main/java/execution/state/LoopingState.java
@@ -23,6 +23,7 @@ public abstract class LoopingState
protected Storable conditionValue;
protected List invariantValues = new ArrayList<>();
+ protected Storable loopAssertValue;
protected int stepInv = 0;
protected boolean checkedCondition = false;
@@ -172,6 +173,7 @@ protected LoopingState decorate(LoopingState copy, SplitMapper sm)
copy.invariantValues.add(storable.weakClone(sm.getLocationMapper()));
}
}
+ copy.loopAssertValue = loopAssertValue == null ? null : loopAssertValue.weakClone(sm.getLocationMapper());
return (LoopingState) super.decorate(copy, sm);
}
diff --git a/src/main/java/execution/state/statement/WhileState.java b/src/main/java/execution/state/statement/WhileState.java
index 2a34a59c..bf4388af 100644
--- a/src/main/java/execution/state/statement/WhileState.java
+++ b/src/main/java/execution/state/statement/WhileState.java
@@ -15,9 +15,9 @@ public class WhileState
public WhileState(AST tree, ExecutionPayload executionPayload)
{
super(tree, executionPayload,
- tree.getChild(0),
- tree.getChildCount() > 2 ? ((WhileAST) tree).getInvariants() : null,
- tree.getChild(tree.getChildCount() - 1));
+ ((WhileAST) tree).getCondition(),
+ !((WhileAST) tree).getInvariants().isEmpty() ? ((WhileAST) tree).getInvariants() : null,
+ ((WhileAST) tree).getStatement());
}
@Override
diff --git a/src/main/java/execution/state/symbolic/SymHavocState.java b/src/main/java/execution/state/symbolic/SymHavocState.java
index bf1960d5..28e04f3a 100644
--- a/src/main/java/execution/state/symbolic/SymHavocState.java
+++ b/src/main/java/execution/state/symbolic/SymHavocState.java
@@ -1,7 +1,9 @@
package execution.state.symbolic;
import ast.AST;
+import ast.attr.IdASTAttr;
import ast.expr.SymIDAST;
+import ast.stmt.DeclAST;
import ast.type.DataTypeAST;
import execution.ExecutionPayload;
import execution.ExecutionResult;
@@ -26,17 +28,29 @@ public ExecutionState makeStep()
{
for (AST ast : tree.getChildren())
{
- String id = ast.getText();
- if (!getEnv().has(id))
+ DeclAST declAST = (DeclAST) ast;
+ String id = declAST.getAttribute(IdASTAttr.class).getId();
+ DataTypeAST dataType;
+ Location loc;
+ if (declAST.getChildCount() == 1)
{
- super.handle(new AlkException("Can't find " + id + " in the current environment!"));
+ loc = getEnv().define(id);
+ dataType = (DataTypeAST) declAST.getChild(0);
+ }
+ else
+ {
+ if (!getEnv().has(id))
+ {
+ super.handle(new AlkException("Can't find " + id + " in the current environment!"));
+ }
+ loc = getEnv().getLocation(id);
+ Storable value = loc.toRValue();
+ dataType = TypeHelper.getDataType(value, getPayload().getExecution().getPathCondition());
}
- Location loc = getEnv().getLocation(id);
- Storable value = loc.toRValue();
- DataTypeAST dataType = TypeHelper.getDataType(value, getPayload().getExecution().getPathCondition());
AST symAST = SymIDAST.generate(id);
loc.setValue(new SymbolicValue(symAST));
+
getExec().getPathCondition().setType(symAST.getText(), dataType, true);
}
return null;
diff --git a/src/main/java/execution/state/symbolic/SymbolicOldState.java b/src/main/java/execution/state/symbolic/SymbolicOldState.java
new file mode 100644
index 00000000..350aeecc
--- /dev/null
+++ b/src/main/java/execution/state/symbolic/SymbolicOldState.java
@@ -0,0 +1,40 @@
+package execution.state.symbolic;
+
+import ast.AST;
+import ast.attr.IdASTAttr;
+import execution.ExecutionPayload;
+import execution.exhaustive.SplitMapper;
+import execution.parser.exceptions.AlkException;
+import execution.state.ExecutionState;
+import execution.state.PrimitiveState;
+import util.types.Storable;
+
+public class SymbolicOldState
+extends PrimitiveState
+{
+ public static final String oldName = "\\old";
+
+ public SymbolicOldState(AST tree, ExecutionPayload executionPayload)
+ {
+ super(tree, executionPayload);
+ }
+
+ @Override
+ protected Storable requireResult()
+ {
+ String varName = oldName + "(" + tree.getAttribute(IdASTAttr.class).getId() + ")";
+ if (!getEnv().has(varName))
+ {
+ super.handle(new AlkException("Invalid use of " + varName + " context variable: " +
+ "\\old should be used in a post-condition!"));
+ }
+ return getEnv().getLocation(varName);
+ }
+
+ @Override
+ public ExecutionState clone(SplitMapper sm)
+ {
+ SymbolicResultState copy = new SymbolicResultState(tree, payload.clone(sm));
+ return super.decorate(copy, sm);
+ }
+}
diff --git a/src/main/java/execution/state/symbolic/SymbolicWhileState.java b/src/main/java/execution/state/symbolic/SymbolicWhileState.java
index 6d4a92ee..3f69d1e0 100644
--- a/src/main/java/execution/state/symbolic/SymbolicWhileState.java
+++ b/src/main/java/execution/state/symbolic/SymbolicWhileState.java
@@ -1,11 +1,17 @@
package execution.state.symbolic;
import ast.AST;
+import ast.attr.BuiltInMethodASTAttr;
+import ast.attr.IdASTAttr;
import ast.attr.ParamASTAttr;
+import ast.enums.BuiltInMethod;
import ast.enums.Operator;
-import ast.expr.RefIDAST;
-import ast.expr.UnaryAST;
+import ast.expr.*;
+import ast.stmt.DeclAST;
import ast.stmt.HavocAST;
+import ast.stmt.WhileAST;
+import ast.type.ArrayDataTypeAST;
+import ast.type.SetDataTypeAST;
import execution.*;
import execution.exhaustive.SplitMapper;
import execution.parser.env.Location;
@@ -15,15 +21,15 @@
import execution.state.ExecutionCloneContext;
import execution.state.ExecutionState;
import execution.state.statement.WhileState;
+import execution.types.AlkIterableValue;
import execution.types.ConcreteValue;
+import execution.types.alkBool.AlkBool;
import symbolic.SymbolicValue;
import util.exception.InternalException;
import util.pc.PathCondition;
import util.types.Storable;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
+import java.util.*;
public class SymbolicWhileState
extends WhileState
@@ -31,6 +37,7 @@ public class SymbolicWhileState
private boolean doneInternalHavoc = false;
private boolean doneInternalAssume = false;
private boolean checkedInternalInvariant = false;
+ private boolean checkedLoopAssert = false;
private boolean doneBody = false;
private boolean doneFinalInvariant = false;
private boolean checkedFinalInvariant = false;
@@ -92,6 +99,11 @@ public ExecutionState makeStep()
return request(invariants.get(middleStepInv));
}
+ if (!checkedLoopAssert && ((WhileAST) tree).hasLoopAssert())
+ {
+ return request(((WhileAST) tree).getLoopAssert());
+ }
+
if (!spawned)
{
spawned = true;
@@ -126,6 +138,41 @@ public ExecutionState makeStep()
getExec().getPathCondition().add(new SymbolicValue(
UnaryAST.createUnary(Operator.NOT, ((SymbolicValue) conditionValue).toAST())));
+ if (loopAssertValue != null)
+ {
+ getExec().getConfig().getIOManager().write("[WARNING] Loop assert is not properly supported yet!");
+ if (loopAssertValue instanceof SymbolicValue)
+ {
+ try
+ {
+ if (!getExec().getPathCondition().asserts((SymbolicValue) loopAssertValue))
+ {
+ throw new AlkException("Loop assert violation!");
+ }
+ }
+ catch (InternalException e)
+ {
+ e.sign(((WhileAST) tree).getLoopAssert().getLine(), ((WhileAST) tree).getLoopAssert().getColumn());
+ throw e;
+ }
+ }
+ else
+ {
+ if (loopAssertValue instanceof AlkBool)
+ {
+ AlkBool bool = (AlkBool) loopAssertValue;
+ if (!bool.isTrue())
+ {
+ super.handle(new AlkException("Loop assert is not valid."));
+ }
+ }
+ else
+ {
+ super.handle(new AlkException("Loop assert must be boolean."));
+ }
+ }
+ }
+
return null;
}
@@ -168,24 +215,77 @@ private void doHavoc()
{
HavocAST havoc = new HavocAST(null);
Set vars = new HashSet<>();
+
+ Set hasSize = new HashSet<>();
if (tree.hasAttribute(ParamASTAttr.class))
{
ParamASTAttr attr = tree.getAttribute(ParamASTAttr.class);
for (int i = 0; i < attr.getParamCount(); i++)
{
- vars.add(attr.getParameter(i).getName());
+ if (attr.getParameter(i).hasSizeFlag())
+ {
+ hasSize.add(attr.getParameter(i).getName());
+ }
+ else
+ {
+ vars.add(attr.getParameter(i).getName());
+ }
}
}
else
{
vars = getEnv().getVariables();
}
+
+ Map sizes = new HashMap<>();
for (String nod : vars)
{
- havoc.addChild(new RefIDAST(nod));
+ Storable currentValue = getEnv().getLocation(nod).toRValue();
+ if (currentValue instanceof AlkIterableValue)
+ {
+ sizes.put(nod, SymbolicValue.toSymbolic(((AlkIterableValue) currentValue).size()));
+ }
+ if (currentValue instanceof SymbolicValue)
+ {
+ AST dataType = ((ExpressionAST) ((SymbolicValue) currentValue).toAST()).getDataType(getExec().getPathCondition());
+ if (dataType instanceof ArrayDataTypeAST || dataType instanceof SetDataTypeAST)
+ {
+ FactorPointMethodAST fpm = new FactorPointMethodAST(null);
+ BuiltInMethodASTAttr attr = new BuiltInMethodASTAttr(BuiltInMethod.SIZE);
+ fpm.addAttribute(BuiltInMethodASTAttr.class, attr);
+ fpm.addChild(((SymbolicValue) currentValue).toAST());
+ sizes.put(nod, new SymbolicValue(fpm));
+ }
+ }
+ AST ast = new DeclAST(null);
+ IdASTAttr attr = new IdASTAttr(nod);
+ ast.addAttribute(IdASTAttr.class, attr);
+ havoc.addChild(ast);
}
+
SymHavocState state = new SymHavocState(havoc, payload);
state.makeStep();
+
+ for (String nod : vars)
+ {
+ if (hasSize.contains(nod) || !sizes.containsKey(nod))
+ {
+ continue;
+ }
+
+ Storable currentValue = getEnv().getLocation(nod).toRValue();
+ FactorPointMethodAST fpm = new FactorPointMethodAST(null);
+ BuiltInMethodASTAttr attr = new BuiltInMethodASTAttr(BuiltInMethod.SIZE);
+ fpm.addAttribute(BuiltInMethodASTAttr.class, attr);
+ fpm.addChild(((SymbolicValue) currentValue).toAST());
+
+ List children = new ArrayList<>();
+ children.add(fpm);
+ children.add(sizes.get(nod).toAST());
+ EqualityAST eqAST = EqualityAST.createBinary(Operator.EQUAL, children);
+
+ getExec().getPathCondition().add(new SymbolicValue(eqAST));
+ }
}
@Override
@@ -220,6 +320,11 @@ else if (!checkedInternalInvariant && middleStepInv < invariants.size())
checkedInternalInvariant = true;
}
}
+ else if (!checkedLoopAssert && ((WhileAST) tree).hasLoopAssert())
+ {
+ loopAssertValue = executionResult.getValue().toRValue();
+ checkedLoopAssert = true;
+ }
else if (!doneBody)
{
doneBody = true;
@@ -311,6 +416,7 @@ public ExecutionState clone(SplitMapper sm)
copy.doneInternalHavoc = doneInternalHavoc;
copy.doneInternalAssume = doneInternalAssume;
copy.checkedInternalInvariant = checkedInternalInvariant;
+ copy.checkedLoopAssert = checkedLoopAssert;
copy.doneBody = doneBody;
copy.doneFinalInvariant = doneFinalInvariant;
copy.checkedFinalInvariant = checkedFinalInvariant;
diff --git a/src/main/java/execution/types/AlkIterableValue.java b/src/main/java/execution/types/AlkIterableValue.java
index caaa4ddf..764ce67a 100644
--- a/src/main/java/execution/types/AlkIterableValue.java
+++ b/src/main/java/execution/types/AlkIterableValue.java
@@ -2,6 +2,7 @@
import execution.parser.env.Location;
import util.lambda.LocationGenerator;
+import util.types.Storable;
import java.util.List;
@@ -9,7 +10,7 @@ public abstract class AlkIterableValue
extends AlkValue
implements Iterable
{
- public abstract boolean has(AlkValue operand);
+ public abstract boolean has(Storable operand);
public abstract List toArray();
public abstract void addAll(List locs);
public abstract void push(Location loc);
diff --git a/src/main/java/execution/types/alkArray/AlkArray.java b/src/main/java/execution/types/alkArray/AlkArray.java
index 7c2136f8..79676d93 100644
--- a/src/main/java/execution/types/alkArray/AlkArray.java
+++ b/src/main/java/execution/types/alkArray/AlkArray.java
@@ -16,11 +16,9 @@
import execution.types.alkInt.AlkInt;
import util.lambda.LocationGenerator;
import util.types.ASTRepresentable;
+import util.types.Storable;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Iterator;
-import java.util.List;
+import java.util.*;
import static execution.parser.constants.Constants.MAX_ARRAY;
import static execution.parser.exceptions.AlkException.*;
@@ -220,7 +218,8 @@ public AlkValue size()
return new AlkInt(array.size());
}
- public boolean has(AlkValue operator)
+ @Override
+ public boolean has(Storable operator)
{
for (Location loc : array)
{
diff --git a/src/main/java/execution/types/alkList/AlkList.java b/src/main/java/execution/types/alkList/AlkList.java
index e1629e98..bc6fcb74 100644
--- a/src/main/java/execution/types/alkList/AlkList.java
+++ b/src/main/java/execution/types/alkList/AlkList.java
@@ -12,6 +12,7 @@
import execution.types.alkBool.AlkBool;
import execution.types.alkIterator.AlkIterator;
import util.lambda.LocationGenerator;
+import util.types.Storable;
import java.util.*;
@@ -222,7 +223,7 @@ public void push_back(Location value)
@Override
- public boolean has(AlkValue operand)
+ public boolean has(Storable operand)
{
for (Location loc : list)
{
diff --git a/src/main/java/execution/types/alkSet/AlkSet.java b/src/main/java/execution/types/alkSet/AlkSet.java
index d2a05155..e412d0ff 100644
--- a/src/main/java/execution/types/alkSet/AlkSet.java
+++ b/src/main/java/execution/types/alkSet/AlkSet.java
@@ -26,7 +26,7 @@ public class AlkSet
extends AlkIterableValue
{
- private Set set = new HashSet<>();
+ private final Set set = new HashSet<>();
@Deprecated
public String contains; //tipuri de date, seturile sunt omogene
@@ -39,7 +39,8 @@ public AlkSet() {
@Override
public AlkValue insert(Location value)
{
- set.add(value);
+ if (!this.has(value.toRValue()))
+ set.add(value);
return this;
}
@@ -86,7 +87,7 @@ public AlkValue setsubtract(AlkValue operand, LocationGenerator generator)
AlkSet subtract = new AlkSet();
for (Location loc : this)
{
- if (!((AlkSet) operand).has((AlkValue) loc.toRValue()))
+ if (!((AlkSet) operand).has(loc.toRValue()))
{
subtract.insert(generator.generate(loc.toRValue().clone(generator)));
}
@@ -218,7 +219,7 @@ public Iterator iterator()
}
@Override
- public boolean has(AlkValue operand)
+ public boolean has(Storable operand)
{
for (Location loc : set)
{
diff --git a/src/main/java/grammar/alk.interp b/src/main/java/grammar/alk.interp
index f2f2057f..8d3a7c30 100644
--- a/src/main/java/grammar/alk.interp
+++ b/src/main/java/grammar/alk.interp
@@ -9,8 +9,10 @@ null
'@invariant'
'@requires'
'@ensures'
+'@loopassert'
'@modifies'
'\\result'
+'\\old'
'==>'
'<==>'
'forall'
@@ -150,8 +152,10 @@ SYMBOLIC
INVARIANT
REQURIES
ENSURES
+LOOPASSESRT
WHILEMODIFIES
RESULT
+OLD
IMPLIES
EQUIV
FORALL
@@ -287,6 +291,7 @@ statement
assumeStmt
assertStmt
havocStmt
+declarator
symbolicStmt
symbolicDeclarator
directive
@@ -295,6 +300,8 @@ statement_block
choose
while_struct
while_anno
+modif_factor
+loop_assert
do_while_struct
if_struct
for_struct
@@ -345,4 +352,4 @@ configuration
atn:
-[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 140, 778, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 3, 2, 5, 2, 126, 10, 2, 3, 2, 3, 2, 3, 3, 6, 3, 131, 10, 3, 13, 3, 14, 3, 132, 3, 4, 3, 4, 3, 4, 5, 4, 138, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 179, 10, 4, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 191, 10, 7, 12, 7, 14, 7, 194, 11, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 200, 10, 8, 12, 8, 14, 8, 203, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 5, 12, 223, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 233, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 240, 10, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 247, 10, 14, 12, 14, 14, 14, 250, 11, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 7, 15, 262, 10, 15, 12, 15, 14, 15, 265, 11, 15, 3, 15, 5, 15, 268, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 5, 17, 284, 10, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 307, 10, 20, 12, 20, 14, 20, 310, 11, 20, 5, 20, 312, 10, 20, 3, 20, 3, 20, 3, 20, 5, 20, 317, 10, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 323, 10, 20, 12, 20, 14, 20, 326, 11, 20, 5, 20, 328, 10, 20, 3, 20, 3, 20, 7, 20, 332, 10, 20, 12, 20, 14, 20, 335, 11, 20, 3, 20, 3, 20, 7, 20, 339, 10, 20, 12, 20, 14, 20, 342, 11, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 5, 23, 351, 10, 23, 3, 23, 3, 23, 3, 23, 5, 23, 356, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 7, 24, 374, 10, 24, 12, 24, 14, 24, 377, 11, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 7, 24, 390, 10, 24, 12, 24, 14, 24, 393, 11, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 399, 10, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 406, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 414, 10, 26, 3, 27, 3, 27, 3, 27, 7, 27, 419, 10, 27, 12, 27, 14, 27, 422, 11, 27, 3, 28, 3, 28, 3, 28, 7, 28, 427, 10, 28, 12, 28, 14, 28, 430, 11, 28, 3, 29, 3, 29, 3, 29, 7, 29, 435, 10, 29, 12, 29, 14, 29, 438, 11, 29, 3, 30, 3, 30, 3, 30, 7, 30, 443, 10, 30, 12, 30, 14, 30, 446, 11, 30, 3, 31, 3, 31, 3, 31, 7, 31, 451, 10, 31, 12, 31, 14, 31, 454, 11, 31, 3, 32, 3, 32, 3, 32, 7, 32, 459, 10, 32, 12, 32, 14, 32, 462, 11, 32, 3, 33, 3, 33, 3, 33, 7, 33, 467, 10, 33, 12, 33, 14, 33, 470, 11, 33, 3, 34, 3, 34, 3, 34, 7, 34, 475, 10, 34, 12, 34, 14, 34, 478, 11, 34, 3, 35, 3, 35, 3, 35, 7, 35, 483, 10, 35, 12, 35, 14, 35, 486, 11, 35, 3, 36, 3, 36, 3, 36, 7, 36, 491, 10, 36, 12, 36, 14, 36, 494, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 499, 10, 37, 12, 37, 14, 37, 502, 11, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 509, 10, 38, 3, 39, 3, 39, 7, 39, 513, 10, 39, 12, 39, 14, 39, 516, 11, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 532, 10, 40, 12, 40, 14, 40, 535, 11, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 550, 10, 41, 3, 42, 3, 42, 3, 43, 3, 43, 5, 43, 556, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 563, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 569, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 576, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 595, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 605, 10, 49, 12, 49, 14, 49, 608, 11, 49, 5, 49, 610, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 617, 10, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 7, 50, 628, 10, 50, 12, 50, 14, 50, 631, 11, 50, 5, 50, 633, 10, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 5, 50, 640, 10, 50, 3, 51, 3, 51, 6, 51, 644, 10, 51, 13, 51, 14, 51, 645, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 654, 10, 51, 5, 51, 656, 10, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 7, 53, 671, 10, 53, 12, 53, 14, 53, 674, 11, 53, 5, 53, 676, 10, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 683, 10, 53, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 689, 10, 54, 3, 54, 3, 54, 6, 54, 693, 10, 54, 13, 54, 14, 54, 694, 3, 54, 3, 54, 5, 54, 699, 10, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 7, 56, 711, 10, 56, 12, 56, 14, 56, 714, 11, 56, 5, 56, 716, 10, 56, 3, 56, 5, 56, 719, 10, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 7, 57, 726, 10, 57, 12, 57, 14, 57, 729, 11, 57, 5, 57, 731, 10, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 740, 10, 58, 12, 58, 14, 58, 743, 11, 58, 5, 58, 745, 10, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 762, 10, 59, 3, 60, 3, 60, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 7, 62, 771, 10, 62, 12, 62, 14, 62, 774, 11, 62, 3, 62, 3, 62, 3, 62, 2, 3, 78, 63, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 2, 15, 3, 2, 43, 44, 3, 2, 114, 115, 3, 2, 110, 113, 3, 2, 96, 98, 4, 2, 46, 46, 131, 131, 3, 2, 124, 125, 4, 2, 106, 107, 117, 118, 3, 2, 119, 121, 4, 2, 103, 104, 108, 109, 4, 2, 117, 119, 128, 128, 3, 2, 103, 104, 8, 2, 47, 58, 67, 67, 70, 70, 72, 72, 80, 80, 86, 89, 8, 2, 61, 61, 63, 63, 65, 66, 68, 69, 73, 79, 81, 85, 2, 829, 2, 125, 3, 2, 2, 2, 4, 130, 3, 2, 2, 2, 6, 178, 3, 2, 2, 2, 8, 180, 3, 2, 2, 2, 10, 183, 3, 2, 2, 2, 12, 186, 3, 2, 2, 2, 14, 195, 3, 2, 2, 2, 16, 204, 3, 2, 2, 2, 18, 209, 3, 2, 2, 2, 20, 213, 3, 2, 2, 2, 22, 220, 3, 2, 2, 2, 24, 239, 3, 2, 2, 2, 26, 241, 3, 2, 2, 2, 28, 267, 3, 2, 2, 2, 30, 269, 3, 2, 2, 2, 32, 276, 3, 2, 2, 2, 34, 285, 3, 2, 2, 2, 36, 295, 3, 2, 2, 2, 38, 301, 3, 2, 2, 2, 40, 345, 3, 2, 2, 2, 42, 347, 3, 2, 2, 2, 44, 350, 3, 2, 2, 2, 46, 398, 3, 2, 2, 2, 48, 405, 3, 2, 2, 2, 50, 407, 3, 2, 2, 2, 52, 415, 3, 2, 2, 2, 54, 423, 3, 2, 2, 2, 56, 431, 3, 2, 2, 2, 58, 439, 3, 2, 2, 2, 60, 447, 3, 2, 2, 2, 62, 455, 3, 2, 2, 2, 64, 463, 3, 2, 2, 2, 66, 471, 3, 2, 2, 2, 68, 479, 3, 2, 2, 2, 70, 487, 3, 2, 2, 2, 72, 495, 3, 2, 2, 2, 74, 508, 3, 2, 2, 2, 76, 510, 3, 2, 2, 2, 78, 517, 3, 2, 2, 2, 80, 549, 3, 2, 2, 2, 82, 551, 3, 2, 2, 2, 84, 555, 3, 2, 2, 2, 86, 562, 3, 2, 2, 2, 88, 568, 3, 2, 2, 2, 90, 575, 3, 2, 2, 2, 92, 577, 3, 2, 2, 2, 94, 594, 3, 2, 2, 2, 96, 616, 3, 2, 2, 2, 98, 639, 3, 2, 2, 2, 100, 655, 3, 2, 2, 2, 102, 657, 3, 2, 2, 2, 104, 682, 3, 2, 2, 2, 106, 698, 3, 2, 2, 2, 108, 700, 3, 2, 2, 2, 110, 718, 3, 2, 2, 2, 112, 720, 3, 2, 2, 2, 114, 734, 3, 2, 2, 2, 116, 761, 3, 2, 2, 2, 118, 763, 3, 2, 2, 2, 120, 765, 3, 2, 2, 2, 122, 772, 3, 2, 2, 2, 124, 126, 5, 4, 3, 2, 125, 124, 3, 2, 2, 2, 125, 126, 3, 2, 2, 2, 126, 127, 3, 2, 2, 2, 127, 128, 7, 2, 2, 3, 128, 3, 3, 2, 2, 2, 129, 131, 5, 6, 4, 2, 130, 129, 3, 2, 2, 2, 131, 132, 3, 2, 2, 2, 132, 130, 3, 2, 2, 2, 132, 133, 3, 2, 2, 2, 133, 5, 3, 2, 2, 2, 134, 179, 5, 38, 20, 2, 135, 137, 7, 33, 2, 2, 136, 138, 5, 46, 24, 2, 137, 136, 3, 2, 2, 2, 137, 138, 3, 2, 2, 2, 138, 139, 3, 2, 2, 2, 139, 179, 7, 129, 2, 2, 140, 141, 5, 24, 13, 2, 141, 142, 7, 129, 2, 2, 142, 179, 3, 2, 2, 2, 143, 144, 7, 34, 2, 2, 144, 179, 7, 129, 2, 2, 145, 146, 7, 36, 2, 2, 146, 179, 7, 129, 2, 2, 147, 148, 7, 37, 2, 2, 148, 179, 7, 129, 2, 2, 149, 150, 7, 38, 2, 2, 150, 179, 7, 129, 2, 2, 151, 179, 5, 22, 12, 2, 152, 179, 5, 18, 10, 2, 153, 154, 5, 20, 11, 2, 154, 155, 7, 129, 2, 2, 155, 179, 3, 2, 2, 2, 156, 179, 5, 26, 14, 2, 157, 158, 5, 30, 16, 2, 158, 159, 7, 129, 2, 2, 159, 179, 3, 2, 2, 2, 160, 179, 5, 32, 17, 2, 161, 179, 5, 34, 18, 2, 162, 179, 5, 36, 19, 2, 163, 164, 5, 46, 24, 2, 164, 165, 7, 129, 2, 2, 165, 179, 3, 2, 2, 2, 166, 167, 5, 14, 8, 2, 167, 168, 7, 129, 2, 2, 168, 179, 3, 2, 2, 2, 169, 170, 5, 12, 7, 2, 170, 171, 7, 129, 2, 2, 171, 179, 3, 2, 2, 2, 172, 173, 5, 8, 5, 2, 173, 174, 7, 129, 2, 2, 174, 179, 3, 2, 2, 2, 175, 176, 5, 10, 6, 2, 176, 177, 7, 129, 2, 2, 177, 179, 3, 2, 2, 2, 178, 134, 3, 2, 2, 2, 178, 135, 3, 2, 2, 2, 178, 140, 3, 2, 2, 2, 178, 143, 3, 2, 2, 2, 178, 145, 3, 2, 2, 2, 178, 147, 3, 2, 2, 2, 178, 149, 3, 2, 2, 2, 178, 151, 3, 2, 2, 2, 178, 152, 3, 2, 2, 2, 178, 153, 3, 2, 2, 2, 178, 156, 3, 2, 2, 2, 178, 157, 3, 2, 2, 2, 178, 160, 3, 2, 2, 2, 178, 161, 3, 2, 2, 2, 178, 162, 3, 2, 2, 2, 178, 163, 3, 2, 2, 2, 178, 166, 3, 2, 2, 2, 178, 169, 3, 2, 2, 2, 178, 172, 3, 2, 2, 2, 178, 175, 3, 2, 2, 2, 179, 7, 3, 2, 2, 2, 180, 181, 7, 7, 2, 2, 181, 182, 5, 46, 24, 2, 182, 9, 3, 2, 2, 2, 183, 184, 7, 6, 2, 2, 184, 185, 5, 46, 24, 2, 185, 11, 3, 2, 2, 2, 186, 187, 7, 29, 2, 2, 187, 192, 7, 102, 2, 2, 188, 189, 7, 134, 2, 2, 189, 191, 7, 102, 2, 2, 190, 188, 3, 2, 2, 2, 191, 194, 3, 2, 2, 2, 192, 190, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 13, 3, 2, 2, 2, 194, 192, 3, 2, 2, 2, 195, 196, 7, 8, 2, 2, 196, 201, 5, 16, 9, 2, 197, 198, 7, 134, 2, 2, 198, 200, 5, 16, 9, 2, 199, 197, 3, 2, 2, 2, 200, 203, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 15, 3, 2, 2, 2, 203, 201, 3, 2, 2, 2, 204, 205, 7, 91, 2, 2, 205, 206, 7, 102, 2, 2, 206, 207, 7, 130, 2, 2, 207, 208, 5, 116, 59, 2, 208, 17, 3, 2, 2, 2, 209, 210, 7, 93, 2, 2, 210, 211, 7, 45, 2, 2, 211, 212, 7, 140, 2, 2, 212, 19, 3, 2, 2, 2, 213, 214, 7, 32, 2, 2, 214, 215, 5, 6, 4, 2, 215, 216, 7, 35, 2, 2, 216, 217, 7, 122, 2, 2, 217, 218, 5, 46, 24, 2, 218, 219, 7, 123, 2, 2, 219, 21, 3, 2, 2, 2, 220, 222, 7, 132, 2, 2, 221, 223, 5, 4, 3, 2, 222, 221, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 7, 133, 2, 2, 225, 23, 3, 2, 2, 2, 226, 227, 7, 30, 2, 2, 227, 228, 5, 46, 24, 2, 228, 229, 7, 27, 2, 2, 229, 232, 5, 46, 24, 2, 230, 231, 7, 90, 2, 2, 231, 233, 5, 46, 24, 2, 232, 230, 3, 2, 2, 2, 232, 233, 3, 2, 2, 2, 233, 240, 3, 2, 2, 2, 234, 235, 7, 31, 2, 2, 235, 236, 5, 46, 24, 2, 236, 237, 7, 27, 2, 2, 237, 238, 5, 46, 24, 2, 238, 240, 3, 2, 2, 2, 239, 226, 3, 2, 2, 2, 239, 234, 3, 2, 2, 2, 240, 25, 3, 2, 2, 2, 241, 242, 7, 22, 2, 2, 242, 243, 7, 122, 2, 2, 243, 244, 5, 46, 24, 2, 244, 248, 7, 123, 2, 2, 245, 247, 5, 28, 15, 2, 246, 245, 3, 2, 2, 2, 247, 250, 3, 2, 2, 2, 248, 246, 3, 2, 2, 2, 248, 249, 3, 2, 2, 2, 249, 251, 3, 2, 2, 2, 250, 248, 3, 2, 2, 2, 251, 252, 5, 6, 4, 2, 252, 27, 3, 2, 2, 2, 253, 254, 7, 9, 2, 2, 254, 255, 5, 46, 24, 2, 255, 256, 7, 129, 2, 2, 256, 268, 3, 2, 2, 2, 257, 258, 7, 12, 2, 2, 258, 263, 7, 102, 2, 2, 259, 260, 7, 134, 2, 2, 260, 262, 7, 102, 2, 2, 261, 259, 3, 2, 2, 2, 262, 265, 3, 2, 2, 2, 263, 261, 3, 2, 2, 2, 263, 264, 3, 2, 2, 2, 264, 266, 3, 2, 2, 2, 265, 263, 3, 2, 2, 2, 266, 268, 7, 129, 2, 2, 267, 253, 3, 2, 2, 2, 267, 257, 3, 2, 2, 2, 268, 29, 3, 2, 2, 2, 269, 270, 7, 23, 2, 2, 270, 271, 5, 6, 4, 2, 271, 272, 7, 22, 2, 2, 272, 273, 7, 122, 2, 2, 273, 274, 5, 46, 24, 2, 274, 275, 7, 123, 2, 2, 275, 31, 3, 2, 2, 2, 276, 277, 7, 20, 2, 2, 277, 278, 7, 122, 2, 2, 278, 279, 5, 46, 24, 2, 279, 280, 7, 123, 2, 2, 280, 283, 5, 6, 4, 2, 281, 282, 7, 21, 2, 2, 282, 284, 5, 6, 4, 2, 283, 281, 3, 2, 2, 2, 283, 284, 3, 2, 2, 2, 284, 33, 3, 2, 2, 2, 285, 286, 7, 24, 2, 2, 286, 287, 7, 122, 2, 2, 287, 288, 5, 46, 24, 2, 288, 289, 7, 129, 2, 2, 289, 290, 5, 46, 24, 2, 290, 291, 7, 129, 2, 2, 291, 292, 5, 46, 24, 2, 292, 293, 7, 123, 2, 2, 293, 294, 5, 6, 4, 2, 294, 35, 3, 2, 2, 2, 295, 296, 7, 25, 2, 2, 296, 297, 7, 102, 2, 2, 297, 298, 7, 27, 2, 2, 298, 299, 5, 46, 24, 2, 299, 300, 5, 6, 4, 2, 300, 37, 3, 2, 2, 2, 301, 302, 7, 102, 2, 2, 302, 311, 7, 122, 2, 2, 303, 308, 5, 44, 23, 2, 304, 305, 7, 134, 2, 2, 305, 307, 5, 44, 23, 2, 306, 304, 3, 2, 2, 2, 307, 310, 3, 2, 2, 2, 308, 306, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 312, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 311, 303, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 316, 7, 123, 2, 2, 314, 315, 7, 130, 2, 2, 315, 317, 5, 116, 59, 2, 316, 314, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 327, 3, 2, 2, 2, 318, 319, 9, 2, 2, 2, 319, 324, 7, 102, 2, 2, 320, 321, 7, 134, 2, 2, 321, 323, 7, 102, 2, 2, 322, 320, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 328, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 318, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 333, 3, 2, 2, 2, 329, 330, 7, 10, 2, 2, 330, 332, 5, 40, 21, 2, 331, 329, 3, 2, 2, 2, 332, 335, 3, 2, 2, 2, 333, 331, 3, 2, 2, 2, 333, 334, 3, 2, 2, 2, 334, 340, 3, 2, 2, 2, 335, 333, 3, 2, 2, 2, 336, 337, 7, 11, 2, 2, 337, 339, 5, 42, 22, 2, 338, 336, 3, 2, 2, 2, 339, 342, 3, 2, 2, 2, 340, 338, 3, 2, 2, 2, 340, 341, 3, 2, 2, 2, 341, 343, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 343, 344, 5, 22, 12, 2, 344, 39, 3, 2, 2, 2, 345, 346, 5, 46, 24, 2, 346, 41, 3, 2, 2, 2, 347, 348, 5, 46, 24, 2, 348, 43, 3, 2, 2, 2, 349, 351, 7, 28, 2, 2, 350, 349, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 352, 3, 2, 2, 2, 352, 355, 7, 102, 2, 2, 353, 354, 7, 130, 2, 2, 354, 356, 5, 116, 59, 2, 355, 353, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 45, 3, 2, 2, 2, 357, 358, 5, 48, 25, 2, 358, 359, 7, 14, 2, 2, 359, 360, 5, 46, 24, 2, 360, 399, 3, 2, 2, 2, 361, 362, 5, 48, 25, 2, 362, 363, 7, 15, 2, 2, 363, 364, 5, 46, 24, 2, 364, 399, 3, 2, 2, 2, 365, 366, 7, 16, 2, 2, 366, 367, 7, 102, 2, 2, 367, 368, 7, 130, 2, 2, 368, 375, 5, 116, 59, 2, 369, 370, 7, 134, 2, 2, 370, 371, 7, 102, 2, 2, 371, 372, 7, 130, 2, 2, 372, 374, 5, 116, 59, 2, 373, 369, 3, 2, 2, 2, 374, 377, 3, 2, 2, 2, 375, 373, 3, 2, 2, 2, 375, 376, 3, 2, 2, 2, 376, 378, 3, 2, 2, 2, 377, 375, 3, 2, 2, 2, 378, 379, 7, 18, 2, 2, 379, 380, 5, 46, 24, 2, 380, 399, 3, 2, 2, 2, 381, 382, 7, 17, 2, 2, 382, 383, 7, 102, 2, 2, 383, 384, 7, 130, 2, 2, 384, 391, 5, 116, 59, 2, 385, 386, 7, 134, 2, 2, 386, 387, 7, 102, 2, 2, 387, 388, 7, 130, 2, 2, 388, 390, 5, 116, 59, 2, 389, 385, 3, 2, 2, 2, 390, 393, 3, 2, 2, 2, 391, 389, 3, 2, 2, 2, 391, 392, 3, 2, 2, 2, 392, 394, 3, 2, 2, 2, 393, 391, 3, 2, 2, 2, 394, 395, 7, 18, 2, 2, 395, 396, 5, 46, 24, 2, 396, 399, 3, 2, 2, 2, 397, 399, 5, 48, 25, 2, 398, 357, 3, 2, 2, 2, 398, 361, 3, 2, 2, 2, 398, 365, 3, 2, 2, 2, 398, 381, 3, 2, 2, 2, 398, 397, 3, 2, 2, 2, 399, 47, 3, 2, 2, 2, 400, 401, 5, 78, 40, 2, 401, 402, 7, 116, 2, 2, 402, 403, 5, 46, 24, 2, 403, 406, 3, 2, 2, 2, 404, 406, 5, 50, 26, 2, 405, 400, 3, 2, 2, 2, 405, 404, 3, 2, 2, 2, 406, 49, 3, 2, 2, 2, 407, 413, 5, 52, 27, 2, 408, 409, 7, 139, 2, 2, 409, 410, 5, 46, 24, 2, 410, 411, 7, 130, 2, 2, 411, 412, 5, 46, 24, 2, 412, 414, 3, 2, 2, 2, 413, 408, 3, 2, 2, 2, 413, 414, 3, 2, 2, 2, 414, 51, 3, 2, 2, 2, 415, 420, 5, 54, 28, 2, 416, 417, 7, 126, 2, 2, 417, 419, 5, 54, 28, 2, 418, 416, 3, 2, 2, 2, 419, 422, 3, 2, 2, 2, 420, 418, 3, 2, 2, 2, 420, 421, 3, 2, 2, 2, 421, 53, 3, 2, 2, 2, 422, 420, 3, 2, 2, 2, 423, 428, 5, 56, 29, 2, 424, 425, 7, 127, 2, 2, 425, 427, 5, 56, 29, 2, 426, 424, 3, 2, 2, 2, 427, 430, 3, 2, 2, 2, 428, 426, 3, 2, 2, 2, 428, 429, 3, 2, 2, 2, 429, 55, 3, 2, 2, 2, 430, 428, 3, 2, 2, 2, 431, 436, 5, 58, 30, 2, 432, 433, 7, 26, 2, 2, 433, 435, 5, 58, 30, 2, 434, 432, 3, 2, 2, 2, 435, 438, 3, 2, 2, 2, 436, 434, 3, 2, 2, 2, 436, 437, 3, 2, 2, 2, 437, 57, 3, 2, 2, 2, 438, 436, 3, 2, 2, 2, 439, 444, 5, 60, 31, 2, 440, 441, 9, 3, 2, 2, 441, 443, 5, 60, 31, 2, 442, 440, 3, 2, 2, 2, 443, 446, 3, 2, 2, 2, 444, 442, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 59, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 447, 452, 5, 62, 32, 2, 448, 449, 9, 4, 2, 2, 449, 451, 5, 62, 32, 2, 450, 448, 3, 2, 2, 2, 451, 454, 3, 2, 2, 2, 452, 450, 3, 2, 2, 2, 452, 453, 3, 2, 2, 2, 453, 61, 3, 2, 2, 2, 454, 452, 3, 2, 2, 2, 455, 460, 5, 64, 33, 2, 456, 457, 9, 5, 2, 2, 457, 459, 5, 64, 33, 2, 458, 456, 3, 2, 2, 2, 459, 462, 3, 2, 2, 2, 460, 458, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 63, 3, 2, 2, 2, 462, 460, 3, 2, 2, 2, 463, 468, 5, 66, 34, 2, 464, 465, 9, 6, 2, 2, 465, 467, 5, 66, 34, 2, 466, 464, 3, 2, 2, 2, 467, 470, 3, 2, 2, 2, 468, 466, 3, 2, 2, 2, 468, 469, 3, 2, 2, 2, 469, 65, 3, 2, 2, 2, 470, 468, 3, 2, 2, 2, 471, 476, 5, 68, 35, 2, 472, 473, 7, 105, 2, 2, 473, 475, 5, 68, 35, 2, 474, 472, 3, 2, 2, 2, 475, 478, 3, 2, 2, 2, 476, 474, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 67, 3, 2, 2, 2, 478, 476, 3, 2, 2, 2, 479, 484, 5, 70, 36, 2, 480, 481, 9, 7, 2, 2, 481, 483, 5, 70, 36, 2, 482, 480, 3, 2, 2, 2, 483, 486, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 69, 3, 2, 2, 2, 486, 484, 3, 2, 2, 2, 487, 492, 5, 72, 37, 2, 488, 489, 9, 8, 2, 2, 489, 491, 5, 72, 37, 2, 490, 488, 3, 2, 2, 2, 491, 494, 3, 2, 2, 2, 492, 490, 3, 2, 2, 2, 492, 493, 3, 2, 2, 2, 493, 71, 3, 2, 2, 2, 494, 492, 3, 2, 2, 2, 495, 500, 5, 74, 38, 2, 496, 497, 9, 9, 2, 2, 497, 499, 5, 74, 38, 2, 498, 496, 3, 2, 2, 2, 499, 502, 3, 2, 2, 2, 500, 498, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 73, 3, 2, 2, 2, 502, 500, 3, 2, 2, 2, 503, 504, 9, 10, 2, 2, 504, 509, 5, 74, 38, 2, 505, 506, 9, 11, 2, 2, 506, 509, 5, 74, 38, 2, 507, 509, 5, 76, 39, 2, 508, 503, 3, 2, 2, 2, 508, 505, 3, 2, 2, 2, 508, 507, 3, 2, 2, 2, 509, 75, 3, 2, 2, 2, 510, 514, 5, 78, 40, 2, 511, 513, 9, 12, 2, 2, 512, 511, 3, 2, 2, 2, 513, 516, 3, 2, 2, 2, 514, 512, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 77, 3, 2, 2, 2, 516, 514, 3, 2, 2, 2, 517, 518, 8, 40, 1, 2, 518, 519, 5, 80, 41, 2, 519, 533, 3, 2, 2, 2, 520, 521, 12, 6, 2, 2, 521, 522, 7, 135, 2, 2, 522, 532, 5, 114, 58, 2, 523, 524, 12, 5, 2, 2, 524, 525, 7, 135, 2, 2, 525, 532, 7, 102, 2, 2, 526, 527, 12, 4, 2, 2, 527, 528, 7, 136, 2, 2, 528, 529, 5, 46, 24, 2, 529, 530, 7, 137, 2, 2, 530, 532, 3, 2, 2, 2, 531, 520, 3, 2, 2, 2, 531, 523, 3, 2, 2, 2, 531, 526, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 79, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 550, 7, 13, 2, 2, 537, 550, 5, 88, 45, 2, 538, 550, 5, 84, 43, 2, 539, 540, 7, 122, 2, 2, 540, 541, 5, 46, 24, 2, 541, 542, 7, 123, 2, 2, 542, 550, 3, 2, 2, 2, 543, 544, 7, 94, 2, 2, 544, 545, 5, 82, 42, 2, 545, 546, 7, 122, 2, 2, 546, 547, 5, 46, 24, 2, 547, 548, 7, 123, 2, 2, 548, 550, 3, 2, 2, 2, 549, 536, 3, 2, 2, 2, 549, 537, 3, 2, 2, 2, 549, 538, 3, 2, 2, 2, 549, 539, 3, 2, 2, 2, 549, 543, 3, 2, 2, 2, 550, 81, 3, 2, 2, 2, 551, 552, 7, 95, 2, 2, 552, 83, 3, 2, 2, 2, 553, 556, 5, 86, 44, 2, 554, 556, 5, 90, 46, 2, 555, 553, 3, 2, 2, 2, 555, 554, 3, 2, 2, 2, 556, 85, 3, 2, 2, 2, 557, 563, 7, 99, 2, 2, 558, 563, 7, 100, 2, 2, 559, 563, 7, 101, 2, 2, 560, 563, 7, 140, 2, 2, 561, 563, 7, 139, 2, 2, 562, 557, 3, 2, 2, 2, 562, 558, 3, 2, 2, 2, 562, 559, 3, 2, 2, 2, 562, 560, 3, 2, 2, 2, 562, 561, 3, 2, 2, 2, 563, 87, 3, 2, 2, 2, 564, 569, 5, 110, 56, 2, 565, 569, 7, 102, 2, 2, 566, 567, 7, 91, 2, 2, 567, 569, 7, 102, 2, 2, 568, 564, 3, 2, 2, 2, 568, 565, 3, 2, 2, 2, 568, 566, 3, 2, 2, 2, 569, 89, 3, 2, 2, 2, 570, 576, 5, 96, 49, 2, 571, 576, 5, 98, 50, 2, 572, 576, 5, 104, 53, 2, 573, 576, 5, 100, 51, 2, 574, 576, 5, 106, 54, 2, 575, 570, 3, 2, 2, 2, 575, 571, 3, 2, 2, 2, 575, 572, 3, 2, 2, 2, 575, 573, 3, 2, 2, 2, 575, 574, 3, 2, 2, 2, 576, 91, 3, 2, 2, 2, 577, 578, 5, 46, 24, 2, 578, 579, 7, 135, 2, 2, 579, 580, 7, 135, 2, 2, 580, 581, 5, 46, 24, 2, 581, 93, 3, 2, 2, 2, 582, 583, 7, 102, 2, 2, 583, 584, 7, 27, 2, 2, 584, 585, 5, 46, 24, 2, 585, 586, 7, 131, 2, 2, 586, 587, 5, 46, 24, 2, 587, 595, 3, 2, 2, 2, 588, 589, 5, 46, 24, 2, 589, 590, 7, 131, 2, 2, 590, 591, 7, 102, 2, 2, 591, 592, 7, 27, 2, 2, 592, 593, 5, 46, 24, 2, 593, 595, 3, 2, 2, 2, 594, 582, 3, 2, 2, 2, 594, 588, 3, 2, 2, 2, 595, 95, 3, 2, 2, 2, 596, 597, 7, 136, 2, 2, 597, 598, 5, 94, 48, 2, 598, 599, 7, 137, 2, 2, 599, 617, 3, 2, 2, 2, 600, 609, 7, 136, 2, 2, 601, 606, 5, 46, 24, 2, 602, 603, 7, 134, 2, 2, 603, 605, 5, 46, 24, 2, 604, 602, 3, 2, 2, 2, 605, 608, 3, 2, 2, 2, 606, 604, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 606, 3, 2, 2, 2, 609, 601, 3, 2, 2, 2, 609, 610, 3, 2, 2, 2, 610, 611, 3, 2, 2, 2, 611, 617, 7, 137, 2, 2, 612, 613, 7, 136, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 137, 2, 2, 615, 617, 3, 2, 2, 2, 616, 596, 3, 2, 2, 2, 616, 600, 3, 2, 2, 2, 616, 612, 3, 2, 2, 2, 617, 97, 3, 2, 2, 2, 618, 640, 7, 41, 2, 2, 619, 620, 7, 110, 2, 2, 620, 621, 5, 94, 48, 2, 621, 622, 7, 111, 2, 2, 622, 640, 3, 2, 2, 2, 623, 632, 7, 110, 2, 2, 624, 629, 5, 46, 24, 2, 625, 626, 7, 134, 2, 2, 626, 628, 5, 46, 24, 2, 627, 625, 3, 2, 2, 2, 628, 631, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 633, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 632, 624, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 634, 3, 2, 2, 2, 634, 640, 7, 111, 2, 2, 635, 636, 7, 110, 2, 2, 636, 637, 5, 92, 47, 2, 637, 638, 7, 111, 2, 2, 638, 640, 3, 2, 2, 2, 639, 618, 3, 2, 2, 2, 639, 619, 3, 2, 2, 2, 639, 623, 3, 2, 2, 2, 639, 635, 3, 2, 2, 2, 640, 99, 3, 2, 2, 2, 641, 643, 7, 132, 2, 2, 642, 644, 5, 102, 52, 2, 643, 642, 3, 2, 2, 2, 644, 645, 3, 2, 2, 2, 645, 643, 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 648, 7, 133, 2, 2, 648, 656, 3, 2, 2, 2, 649, 654, 7, 42, 2, 2, 650, 651, 7, 132, 2, 2, 651, 652, 7, 92, 2, 2, 652, 654, 7, 133, 2, 2, 653, 649, 3, 2, 2, 2, 653, 650, 3, 2, 2, 2, 654, 656, 3, 2, 2, 2, 655, 641, 3, 2, 2, 2, 655, 653, 3, 2, 2, 2, 656, 101, 3, 2, 2, 2, 657, 658, 7, 102, 2, 2, 658, 659, 7, 92, 2, 2, 659, 660, 5, 46, 24, 2, 660, 103, 3, 2, 2, 2, 661, 683, 7, 40, 2, 2, 662, 663, 7, 132, 2, 2, 663, 664, 5, 94, 48, 2, 664, 665, 7, 133, 2, 2, 665, 683, 3, 2, 2, 2, 666, 675, 7, 132, 2, 2, 667, 672, 5, 46, 24, 2, 668, 669, 7, 134, 2, 2, 669, 671, 5, 46, 24, 2, 670, 668, 3, 2, 2, 2, 671, 674, 3, 2, 2, 2, 672, 670, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 676, 3, 2, 2, 2, 674, 672, 3, 2, 2, 2, 675, 667, 3, 2, 2, 2, 675, 676, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 683, 7, 133, 2, 2, 678, 679, 7, 132, 2, 2, 679, 680, 5, 92, 47, 2, 680, 681, 7, 133, 2, 2, 681, 683, 3, 2, 2, 2, 682, 661, 3, 2, 2, 2, 682, 662, 3, 2, 2, 2, 682, 666, 3, 2, 2, 2, 682, 678, 3, 2, 2, 2, 683, 105, 3, 2, 2, 2, 684, 689, 7, 39, 2, 2, 685, 686, 7, 132, 2, 2, 686, 687, 7, 19, 2, 2, 687, 689, 7, 133, 2, 2, 688, 684, 3, 2, 2, 2, 688, 685, 3, 2, 2, 2, 689, 699, 3, 2, 2, 2, 690, 692, 7, 132, 2, 2, 691, 693, 5, 108, 55, 2, 692, 691, 3, 2, 2, 2, 693, 694, 3, 2, 2, 2, 694, 692, 3, 2, 2, 2, 694, 695, 3, 2, 2, 2, 695, 696, 3, 2, 2, 2, 696, 697, 7, 133, 2, 2, 697, 699, 3, 2, 2, 2, 698, 688, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 699, 107, 3, 2, 2, 2, 700, 701, 5, 46, 24, 2, 701, 702, 7, 19, 2, 2, 702, 703, 5, 46, 24, 2, 703, 109, 3, 2, 2, 2, 704, 719, 5, 112, 57, 2, 705, 706, 7, 102, 2, 2, 706, 715, 7, 122, 2, 2, 707, 712, 5, 46, 24, 2, 708, 709, 7, 134, 2, 2, 709, 711, 5, 46, 24, 2, 710, 708, 3, 2, 2, 2, 711, 714, 3, 2, 2, 2, 712, 710, 3, 2, 2, 2, 712, 713, 3, 2, 2, 2, 713, 716, 3, 2, 2, 2, 714, 712, 3, 2, 2, 2, 715, 707, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 717, 3, 2, 2, 2, 717, 719, 7, 123, 2, 2, 718, 704, 3, 2, 2, 2, 718, 705, 3, 2, 2, 2, 719, 111, 3, 2, 2, 2, 720, 721, 5, 118, 60, 2, 721, 730, 7, 122, 2, 2, 722, 727, 5, 46, 24, 2, 723, 724, 7, 134, 2, 2, 724, 726, 5, 46, 24, 2, 725, 723, 3, 2, 2, 2, 726, 729, 3, 2, 2, 2, 727, 725, 3, 2, 2, 2, 727, 728, 3, 2, 2, 2, 728, 731, 3, 2, 2, 2, 729, 727, 3, 2, 2, 2, 730, 722, 3, 2, 2, 2, 730, 731, 3, 2, 2, 2, 731, 732, 3, 2, 2, 2, 732, 733, 7, 123, 2, 2, 733, 113, 3, 2, 2, 2, 734, 735, 5, 120, 61, 2, 735, 744, 7, 122, 2, 2, 736, 741, 5, 46, 24, 2, 737, 738, 7, 134, 2, 2, 738, 740, 5, 46, 24, 2, 739, 737, 3, 2, 2, 2, 740, 743, 3, 2, 2, 2, 741, 739, 3, 2, 2, 2, 741, 742, 3, 2, 2, 2, 742, 745, 3, 2, 2, 2, 743, 741, 3, 2, 2, 2, 744, 736, 3, 2, 2, 2, 744, 745, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, 747, 7, 123, 2, 2, 747, 115, 3, 2, 2, 2, 748, 762, 7, 70, 2, 2, 749, 762, 7, 71, 2, 2, 750, 762, 7, 67, 2, 2, 751, 752, 7, 59, 2, 2, 752, 753, 7, 110, 2, 2, 753, 754, 5, 116, 59, 2, 754, 755, 7, 111, 2, 2, 755, 762, 3, 2, 2, 2, 756, 757, 7, 60, 2, 2, 757, 758, 7, 110, 2, 2, 758, 759, 5, 116, 59, 2, 759, 760, 7, 111, 2, 2, 760, 762, 3, 2, 2, 2, 761, 748, 3, 2, 2, 2, 761, 749, 3, 2, 2, 2, 761, 750, 3, 2, 2, 2, 761, 751, 3, 2, 2, 2, 761, 756, 3, 2, 2, 2, 762, 117, 3, 2, 2, 2, 763, 764, 9, 13, 2, 2, 764, 119, 3, 2, 2, 2, 765, 766, 9, 14, 2, 2, 766, 121, 3, 2, 2, 2, 767, 768, 7, 102, 2, 2, 768, 769, 7, 19, 2, 2, 769, 771, 5, 46, 24, 2, 770, 767, 3, 2, 2, 2, 771, 774, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 775, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 775, 776, 7, 2, 2, 3, 776, 123, 3, 2, 2, 2, 74, 125, 132, 137, 178, 192, 201, 222, 232, 239, 248, 263, 267, 283, 308, 311, 316, 324, 327, 333, 340, 350, 355, 375, 391, 398, 405, 413, 420, 428, 436, 444, 452, 460, 468, 476, 484, 492, 500, 508, 514, 531, 533, 549, 555, 562, 568, 575, 594, 606, 609, 616, 629, 632, 639, 645, 653, 655, 672, 675, 682, 688, 694, 698, 712, 715, 718, 727, 730, 741, 744, 761, 772]
\ No newline at end of file
+[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 142, 825, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 3, 2, 5, 2, 132, 10, 2, 3, 2, 3, 2, 3, 3, 6, 3, 137, 10, 3, 13, 3, 14, 3, 138, 3, 4, 3, 4, 3, 4, 5, 4, 144, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 185, 10, 4, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 197, 10, 7, 12, 7, 14, 7, 200, 11, 7, 3, 8, 3, 8, 3, 8, 5, 8, 205, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 211, 10, 9, 12, 9, 14, 9, 214, 11, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 5, 13, 234, 10, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 244, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 251, 10, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 7, 15, 258, 10, 15, 12, 15, 14, 15, 261, 11, 15, 3, 15, 3, 15, 5, 15, 265, 10, 15, 3, 16, 3, 16, 3, 16, 5, 16, 270, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 276, 10, 16, 12, 16, 14, 16, 279, 11, 16, 3, 16, 5, 16, 282, 10, 16, 5, 16, 284, 10, 16, 3, 17, 3, 17, 3, 17, 3, 17, 5, 17, 290, 10, 17, 3, 18, 3, 18, 3, 18, 5, 18, 295, 10, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 311, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 7, 23, 334, 10, 23, 12, 23, 14, 23, 337, 11, 23, 5, 23, 339, 10, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 7, 23, 346, 10, 23, 12, 23, 14, 23, 349, 11, 23, 5, 23, 351, 10, 23, 3, 23, 3, 23, 3, 23, 5, 23, 356, 10, 23, 7, 23, 358, 10, 23, 12, 23, 14, 23, 361, 11, 23, 3, 23, 3, 23, 3, 23, 5, 23, 366, 10, 23, 7, 23, 368, 10, 23, 12, 23, 14, 23, 371, 11, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 7, 24, 383, 10, 24, 12, 24, 14, 24, 386, 11, 24, 5, 24, 388, 10, 24, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 394, 10, 25, 3, 26, 5, 26, 397, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 417, 10, 27, 12, 27, 14, 27, 420, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 433, 10, 27, 12, 27, 14, 27, 436, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 442, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 449, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 457, 10, 29, 3, 30, 3, 30, 3, 30, 7, 30, 462, 10, 30, 12, 30, 14, 30, 465, 11, 30, 3, 31, 3, 31, 3, 31, 7, 31, 470, 10, 31, 12, 31, 14, 31, 473, 11, 31, 3, 32, 3, 32, 3, 32, 7, 32, 478, 10, 32, 12, 32, 14, 32, 481, 11, 32, 3, 33, 3, 33, 3, 33, 7, 33, 486, 10, 33, 12, 33, 14, 33, 489, 11, 33, 3, 34, 3, 34, 3, 34, 7, 34, 494, 10, 34, 12, 34, 14, 34, 497, 11, 34, 3, 35, 3, 35, 3, 35, 7, 35, 502, 10, 35, 12, 35, 14, 35, 505, 11, 35, 3, 36, 3, 36, 3, 36, 7, 36, 510, 10, 36, 12, 36, 14, 36, 513, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 518, 10, 37, 12, 37, 14, 37, 521, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 526, 10, 38, 12, 38, 14, 38, 529, 11, 38, 3, 39, 3, 39, 3, 39, 7, 39, 534, 10, 39, 12, 39, 14, 39, 537, 11, 39, 3, 40, 3, 40, 3, 40, 7, 40, 542, 10, 40, 12, 40, 14, 40, 545, 11, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 552, 10, 41, 3, 42, 3, 42, 7, 42, 556, 10, 42, 12, 42, 14, 42, 559, 11, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 7, 43, 575, 10, 43, 12, 43, 14, 43, 578, 11, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 597, 10, 44, 3, 45, 3, 45, 3, 46, 3, 46, 5, 46, 603, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 610, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 616, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 623, 10, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 642, 10, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 7, 52, 652, 10, 52, 12, 52, 14, 52, 655, 11, 52, 5, 52, 657, 10, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 664, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 7, 53, 675, 10, 53, 12, 53, 14, 53, 678, 11, 53, 5, 53, 680, 10, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 687, 10, 53, 3, 54, 3, 54, 6, 54, 691, 10, 54, 13, 54, 14, 54, 692, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 701, 10, 54, 5, 54, 703, 10, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 7, 56, 718, 10, 56, 12, 56, 14, 56, 721, 11, 56, 5, 56, 723, 10, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 730, 10, 56, 3, 57, 3, 57, 3, 57, 3, 57, 5, 57, 736, 10, 57, 3, 57, 3, 57, 6, 57, 740, 10, 57, 13, 57, 14, 57, 741, 3, 57, 3, 57, 5, 57, 746, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 7, 59, 758, 10, 59, 12, 59, 14, 59, 761, 11, 59, 5, 59, 763, 10, 59, 3, 59, 5, 59, 766, 10, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 773, 10, 60, 12, 60, 14, 60, 776, 11, 60, 5, 60, 778, 10, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 7, 61, 787, 10, 61, 12, 61, 14, 61, 790, 11, 61, 5, 61, 792, 10, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 809, 10, 62, 3, 63, 3, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 7, 65, 818, 10, 65, 12, 65, 14, 65, 821, 11, 65, 3, 65, 3, 65, 3, 65, 2, 3, 84, 66, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 2, 15, 3, 2, 45, 46, 3, 2, 116, 117, 3, 2, 112, 115, 3, 2, 98, 100, 4, 2, 48, 48, 133, 133, 3, 2, 126, 127, 4, 2, 108, 109, 119, 120, 3, 2, 121, 123, 4, 2, 105, 106, 110, 111, 4, 2, 119, 121, 130, 130, 3, 2, 105, 106, 8, 2, 49, 60, 69, 69, 72, 72, 74, 74, 82, 82, 88, 91, 8, 2, 63, 63, 65, 65, 67, 68, 70, 71, 75, 81, 83, 87, 2, 883, 2, 131, 3, 2, 2, 2, 4, 136, 3, 2, 2, 2, 6, 184, 3, 2, 2, 2, 8, 186, 3, 2, 2, 2, 10, 189, 3, 2, 2, 2, 12, 192, 3, 2, 2, 2, 14, 201, 3, 2, 2, 2, 16, 206, 3, 2, 2, 2, 18, 215, 3, 2, 2, 2, 20, 220, 3, 2, 2, 2, 22, 224, 3, 2, 2, 2, 24, 231, 3, 2, 2, 2, 26, 250, 3, 2, 2, 2, 28, 252, 3, 2, 2, 2, 30, 283, 3, 2, 2, 2, 32, 289, 3, 2, 2, 2, 34, 291, 3, 2, 2, 2, 36, 296, 3, 2, 2, 2, 38, 303, 3, 2, 2, 2, 40, 312, 3, 2, 2, 2, 42, 322, 3, 2, 2, 2, 44, 328, 3, 2, 2, 2, 46, 387, 3, 2, 2, 2, 48, 393, 3, 2, 2, 2, 50, 396, 3, 2, 2, 2, 52, 441, 3, 2, 2, 2, 54, 448, 3, 2, 2, 2, 56, 450, 3, 2, 2, 2, 58, 458, 3, 2, 2, 2, 60, 466, 3, 2, 2, 2, 62, 474, 3, 2, 2, 2, 64, 482, 3, 2, 2, 2, 66, 490, 3, 2, 2, 2, 68, 498, 3, 2, 2, 2, 70, 506, 3, 2, 2, 2, 72, 514, 3, 2, 2, 2, 74, 522, 3, 2, 2, 2, 76, 530, 3, 2, 2, 2, 78, 538, 3, 2, 2, 2, 80, 551, 3, 2, 2, 2, 82, 553, 3, 2, 2, 2, 84, 560, 3, 2, 2, 2, 86, 596, 3, 2, 2, 2, 88, 598, 3, 2, 2, 2, 90, 602, 3, 2, 2, 2, 92, 609, 3, 2, 2, 2, 94, 615, 3, 2, 2, 2, 96, 622, 3, 2, 2, 2, 98, 624, 3, 2, 2, 2, 100, 641, 3, 2, 2, 2, 102, 663, 3, 2, 2, 2, 104, 686, 3, 2, 2, 2, 106, 702, 3, 2, 2, 2, 108, 704, 3, 2, 2, 2, 110, 729, 3, 2, 2, 2, 112, 745, 3, 2, 2, 2, 114, 747, 3, 2, 2, 2, 116, 765, 3, 2, 2, 2, 118, 767, 3, 2, 2, 2, 120, 781, 3, 2, 2, 2, 122, 808, 3, 2, 2, 2, 124, 810, 3, 2, 2, 2, 126, 812, 3, 2, 2, 2, 128, 819, 3, 2, 2, 2, 130, 132, 5, 4, 3, 2, 131, 130, 3, 2, 2, 2, 131, 132, 3, 2, 2, 2, 132, 133, 3, 2, 2, 2, 133, 134, 7, 2, 2, 3, 134, 3, 3, 2, 2, 2, 135, 137, 5, 6, 4, 2, 136, 135, 3, 2, 2, 2, 137, 138, 3, 2, 2, 2, 138, 136, 3, 2, 2, 2, 138, 139, 3, 2, 2, 2, 139, 5, 3, 2, 2, 2, 140, 185, 5, 44, 23, 2, 141, 143, 7, 35, 2, 2, 142, 144, 5, 52, 27, 2, 143, 142, 3, 2, 2, 2, 143, 144, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 185, 7, 131, 2, 2, 146, 147, 5, 26, 14, 2, 147, 148, 7, 131, 2, 2, 148, 185, 3, 2, 2, 2, 149, 150, 7, 36, 2, 2, 150, 185, 7, 131, 2, 2, 151, 152, 7, 38, 2, 2, 152, 185, 7, 131, 2, 2, 153, 154, 7, 39, 2, 2, 154, 185, 7, 131, 2, 2, 155, 156, 7, 40, 2, 2, 156, 185, 7, 131, 2, 2, 157, 185, 5, 24, 13, 2, 158, 185, 5, 20, 11, 2, 159, 160, 5, 22, 12, 2, 160, 161, 7, 131, 2, 2, 161, 185, 3, 2, 2, 2, 162, 185, 5, 28, 15, 2, 163, 164, 5, 36, 19, 2, 164, 165, 7, 131, 2, 2, 165, 185, 3, 2, 2, 2, 166, 185, 5, 38, 20, 2, 167, 185, 5, 40, 21, 2, 168, 185, 5, 42, 22, 2, 169, 170, 5, 52, 27, 2, 170, 171, 7, 131, 2, 2, 171, 185, 3, 2, 2, 2, 172, 173, 5, 16, 9, 2, 173, 174, 7, 131, 2, 2, 174, 185, 3, 2, 2, 2, 175, 176, 5, 12, 7, 2, 176, 177, 7, 131, 2, 2, 177, 185, 3, 2, 2, 2, 178, 179, 5, 8, 5, 2, 179, 180, 7, 131, 2, 2, 180, 185, 3, 2, 2, 2, 181, 182, 5, 10, 6, 2, 182, 183, 7, 131, 2, 2, 183, 185, 3, 2, 2, 2, 184, 140, 3, 2, 2, 2, 184, 141, 3, 2, 2, 2, 184, 146, 3, 2, 2, 2, 184, 149, 3, 2, 2, 2, 184, 151, 3, 2, 2, 2, 184, 153, 3, 2, 2, 2, 184, 155, 3, 2, 2, 2, 184, 157, 3, 2, 2, 2, 184, 158, 3, 2, 2, 2, 184, 159, 3, 2, 2, 2, 184, 162, 3, 2, 2, 2, 184, 163, 3, 2, 2, 2, 184, 166, 3, 2, 2, 2, 184, 167, 3, 2, 2, 2, 184, 168, 3, 2, 2, 2, 184, 169, 3, 2, 2, 2, 184, 172, 3, 2, 2, 2, 184, 175, 3, 2, 2, 2, 184, 178, 3, 2, 2, 2, 184, 181, 3, 2, 2, 2, 185, 7, 3, 2, 2, 2, 186, 187, 7, 7, 2, 2, 187, 188, 5, 52, 27, 2, 188, 9, 3, 2, 2, 2, 189, 190, 7, 6, 2, 2, 190, 191, 5, 52, 27, 2, 191, 11, 3, 2, 2, 2, 192, 193, 7, 31, 2, 2, 193, 198, 5, 14, 8, 2, 194, 195, 7, 136, 2, 2, 195, 197, 5, 14, 8, 2, 196, 194, 3, 2, 2, 2, 197, 200, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 199, 3, 2, 2, 2, 199, 13, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 201, 204, 7, 104, 2, 2, 202, 203, 7, 132, 2, 2, 203, 205, 5, 122, 62, 2, 204, 202, 3, 2, 2, 2, 204, 205, 3, 2, 2, 2, 205, 15, 3, 2, 2, 2, 206, 207, 7, 8, 2, 2, 207, 212, 5, 18, 10, 2, 208, 209, 7, 136, 2, 2, 209, 211, 5, 18, 10, 2, 210, 208, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 17, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 216, 7, 93, 2, 2, 216, 217, 7, 104, 2, 2, 217, 218, 7, 132, 2, 2, 218, 219, 5, 122, 62, 2, 219, 19, 3, 2, 2, 2, 220, 221, 7, 95, 2, 2, 221, 222, 7, 47, 2, 2, 222, 223, 7, 142, 2, 2, 223, 21, 3, 2, 2, 2, 224, 225, 7, 34, 2, 2, 225, 226, 5, 6, 4, 2, 226, 227, 7, 37, 2, 2, 227, 228, 7, 124, 2, 2, 228, 229, 5, 52, 27, 2, 229, 230, 7, 125, 2, 2, 230, 23, 3, 2, 2, 2, 231, 233, 7, 134, 2, 2, 232, 234, 5, 4, 3, 2, 233, 232, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 236, 7, 135, 2, 2, 236, 25, 3, 2, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 5, 52, 27, 2, 239, 240, 7, 29, 2, 2, 240, 243, 5, 52, 27, 2, 241, 242, 7, 92, 2, 2, 242, 244, 5, 52, 27, 2, 243, 241, 3, 2, 2, 2, 243, 244, 3, 2, 2, 2, 244, 251, 3, 2, 2, 2, 245, 246, 7, 33, 2, 2, 246, 247, 5, 52, 27, 2, 247, 248, 7, 29, 2, 2, 248, 249, 5, 52, 27, 2, 249, 251, 3, 2, 2, 2, 250, 237, 3, 2, 2, 2, 250, 245, 3, 2, 2, 2, 251, 27, 3, 2, 2, 2, 252, 253, 7, 24, 2, 2, 253, 254, 7, 124, 2, 2, 254, 255, 5, 52, 27, 2, 255, 259, 7, 125, 2, 2, 256, 258, 5, 30, 16, 2, 257, 256, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 260, 3, 2, 2, 2, 260, 262, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 262, 264, 5, 6, 4, 2, 263, 265, 5, 34, 18, 2, 264, 263, 3, 2, 2, 2, 264, 265, 3, 2, 2, 2, 265, 29, 3, 2, 2, 2, 266, 267, 7, 9, 2, 2, 267, 269, 5, 52, 27, 2, 268, 270, 7, 131, 2, 2, 269, 268, 3, 2, 2, 2, 269, 270, 3, 2, 2, 2, 270, 284, 3, 2, 2, 2, 271, 272, 7, 13, 2, 2, 272, 277, 5, 32, 17, 2, 273, 274, 7, 136, 2, 2, 274, 276, 5, 32, 17, 2, 275, 273, 3, 2, 2, 2, 276, 279, 3, 2, 2, 2, 277, 275, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 281, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 280, 282, 7, 131, 2, 2, 281, 280, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 284, 3, 2, 2, 2, 283, 266, 3, 2, 2, 2, 283, 271, 3, 2, 2, 2, 284, 31, 3, 2, 2, 2, 285, 290, 7, 104, 2, 2, 286, 287, 7, 104, 2, 2, 287, 288, 7, 137, 2, 2, 288, 290, 7, 83, 2, 2, 289, 285, 3, 2, 2, 2, 289, 286, 3, 2, 2, 2, 290, 33, 3, 2, 2, 2, 291, 292, 7, 12, 2, 2, 292, 294, 5, 52, 27, 2, 293, 295, 7, 131, 2, 2, 294, 293, 3, 2, 2, 2, 294, 295, 3, 2, 2, 2, 295, 35, 3, 2, 2, 2, 296, 297, 7, 25, 2, 2, 297, 298, 5, 6, 4, 2, 298, 299, 7, 24, 2, 2, 299, 300, 7, 124, 2, 2, 300, 301, 5, 52, 27, 2, 301, 302, 7, 125, 2, 2, 302, 37, 3, 2, 2, 2, 303, 304, 7, 22, 2, 2, 304, 305, 7, 124, 2, 2, 305, 306, 5, 52, 27, 2, 306, 307, 7, 125, 2, 2, 307, 310, 5, 6, 4, 2, 308, 309, 7, 23, 2, 2, 309, 311, 5, 6, 4, 2, 310, 308, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 39, 3, 2, 2, 2, 312, 313, 7, 26, 2, 2, 313, 314, 7, 124, 2, 2, 314, 315, 5, 52, 27, 2, 315, 316, 7, 131, 2, 2, 316, 317, 5, 52, 27, 2, 317, 318, 7, 131, 2, 2, 318, 319, 5, 52, 27, 2, 319, 320, 7, 125, 2, 2, 320, 321, 5, 6, 4, 2, 321, 41, 3, 2, 2, 2, 322, 323, 7, 27, 2, 2, 323, 324, 7, 104, 2, 2, 324, 325, 7, 29, 2, 2, 325, 326, 5, 52, 27, 2, 326, 327, 5, 6, 4, 2, 327, 43, 3, 2, 2, 2, 328, 329, 7, 104, 2, 2, 329, 338, 7, 124, 2, 2, 330, 335, 5, 50, 26, 2, 331, 332, 7, 136, 2, 2, 332, 334, 5, 50, 26, 2, 333, 331, 3, 2, 2, 2, 334, 337, 3, 2, 2, 2, 335, 333, 3, 2, 2, 2, 335, 336, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 338, 330, 3, 2, 2, 2, 338, 339, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 350, 7, 125, 2, 2, 341, 342, 9, 2, 2, 2, 342, 347, 7, 104, 2, 2, 343, 344, 7, 136, 2, 2, 344, 346, 7, 104, 2, 2, 345, 343, 3, 2, 2, 2, 346, 349, 3, 2, 2, 2, 347, 345, 3, 2, 2, 2, 347, 348, 3, 2, 2, 2, 348, 351, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 350, 341, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 359, 3, 2, 2, 2, 352, 353, 7, 10, 2, 2, 353, 355, 5, 46, 24, 2, 354, 356, 7, 131, 2, 2, 355, 354, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 358, 3, 2, 2, 2, 357, 352, 3, 2, 2, 2, 358, 361, 3, 2, 2, 2, 359, 357, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 369, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 362, 363, 7, 11, 2, 2, 363, 365, 5, 48, 25, 2, 364, 366, 7, 131, 2, 2, 365, 364, 3, 2, 2, 2, 365, 366, 3, 2, 2, 2, 366, 368, 3, 2, 2, 2, 367, 362, 3, 2, 2, 2, 368, 371, 3, 2, 2, 2, 369, 367, 3, 2, 2, 2, 369, 370, 3, 2, 2, 2, 370, 372, 3, 2, 2, 2, 371, 369, 3, 2, 2, 2, 372, 373, 5, 24, 13, 2, 373, 45, 3, 2, 2, 2, 374, 388, 5, 52, 27, 2, 375, 376, 7, 104, 2, 2, 376, 377, 7, 132, 2, 2, 377, 384, 5, 122, 62, 2, 378, 379, 7, 129, 2, 2, 379, 380, 7, 104, 2, 2, 380, 381, 7, 132, 2, 2, 381, 383, 5, 122, 62, 2, 382, 378, 3, 2, 2, 2, 383, 386, 3, 2, 2, 2, 384, 382, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 388, 3, 2, 2, 2, 386, 384, 3, 2, 2, 2, 387, 374, 3, 2, 2, 2, 387, 375, 3, 2, 2, 2, 388, 47, 3, 2, 2, 2, 389, 394, 5, 52, 27, 2, 390, 391, 7, 14, 2, 2, 391, 392, 7, 132, 2, 2, 392, 394, 5, 122, 62, 2, 393, 389, 3, 2, 2, 2, 393, 390, 3, 2, 2, 2, 394, 49, 3, 2, 2, 2, 395, 397, 7, 30, 2, 2, 396, 395, 3, 2, 2, 2, 396, 397, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 399, 7, 104, 2, 2, 399, 51, 3, 2, 2, 2, 400, 401, 5, 54, 28, 2, 401, 402, 7, 16, 2, 2, 402, 403, 5, 52, 27, 2, 403, 442, 3, 2, 2, 2, 404, 405, 5, 54, 28, 2, 405, 406, 7, 17, 2, 2, 406, 407, 5, 52, 27, 2, 407, 442, 3, 2, 2, 2, 408, 409, 7, 18, 2, 2, 409, 410, 7, 104, 2, 2, 410, 411, 7, 132, 2, 2, 411, 418, 5, 122, 62, 2, 412, 413, 7, 136, 2, 2, 413, 414, 7, 104, 2, 2, 414, 415, 7, 132, 2, 2, 415, 417, 5, 122, 62, 2, 416, 412, 3, 2, 2, 2, 417, 420, 3, 2, 2, 2, 418, 416, 3, 2, 2, 2, 418, 419, 3, 2, 2, 2, 419, 421, 3, 2, 2, 2, 420, 418, 3, 2, 2, 2, 421, 422, 7, 20, 2, 2, 422, 423, 5, 52, 27, 2, 423, 442, 3, 2, 2, 2, 424, 425, 7, 19, 2, 2, 425, 426, 7, 104, 2, 2, 426, 427, 7, 132, 2, 2, 427, 434, 5, 122, 62, 2, 428, 429, 7, 136, 2, 2, 429, 430, 7, 104, 2, 2, 430, 431, 7, 132, 2, 2, 431, 433, 5, 122, 62, 2, 432, 428, 3, 2, 2, 2, 433, 436, 3, 2, 2, 2, 434, 432, 3, 2, 2, 2, 434, 435, 3, 2, 2, 2, 435, 437, 3, 2, 2, 2, 436, 434, 3, 2, 2, 2, 437, 438, 7, 20, 2, 2, 438, 439, 5, 52, 27, 2, 439, 442, 3, 2, 2, 2, 440, 442, 5, 54, 28, 2, 441, 400, 3, 2, 2, 2, 441, 404, 3, 2, 2, 2, 441, 408, 3, 2, 2, 2, 441, 424, 3, 2, 2, 2, 441, 440, 3, 2, 2, 2, 442, 53, 3, 2, 2, 2, 443, 444, 5, 84, 43, 2, 444, 445, 7, 118, 2, 2, 445, 446, 5, 52, 27, 2, 446, 449, 3, 2, 2, 2, 447, 449, 5, 56, 29, 2, 448, 443, 3, 2, 2, 2, 448, 447, 3, 2, 2, 2, 449, 55, 3, 2, 2, 2, 450, 456, 5, 58, 30, 2, 451, 452, 7, 141, 2, 2, 452, 453, 5, 52, 27, 2, 453, 454, 7, 132, 2, 2, 454, 455, 5, 52, 27, 2, 455, 457, 3, 2, 2, 2, 456, 451, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 57, 3, 2, 2, 2, 458, 463, 5, 60, 31, 2, 459, 460, 7, 128, 2, 2, 460, 462, 5, 60, 31, 2, 461, 459, 3, 2, 2, 2, 462, 465, 3, 2, 2, 2, 463, 461, 3, 2, 2, 2, 463, 464, 3, 2, 2, 2, 464, 59, 3, 2, 2, 2, 465, 463, 3, 2, 2, 2, 466, 471, 5, 62, 32, 2, 467, 468, 7, 129, 2, 2, 468, 470, 5, 62, 32, 2, 469, 467, 3, 2, 2, 2, 470, 473, 3, 2, 2, 2, 471, 469, 3, 2, 2, 2, 471, 472, 3, 2, 2, 2, 472, 61, 3, 2, 2, 2, 473, 471, 3, 2, 2, 2, 474, 479, 5, 64, 33, 2, 475, 476, 7, 28, 2, 2, 476, 478, 5, 64, 33, 2, 477, 475, 3, 2, 2, 2, 478, 481, 3, 2, 2, 2, 479, 477, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 63, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 482, 487, 5, 66, 34, 2, 483, 484, 9, 3, 2, 2, 484, 486, 5, 66, 34, 2, 485, 483, 3, 2, 2, 2, 486, 489, 3, 2, 2, 2, 487, 485, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 65, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 490, 495, 5, 68, 35, 2, 491, 492, 9, 4, 2, 2, 492, 494, 5, 68, 35, 2, 493, 491, 3, 2, 2, 2, 494, 497, 3, 2, 2, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 67, 3, 2, 2, 2, 497, 495, 3, 2, 2, 2, 498, 503, 5, 70, 36, 2, 499, 500, 9, 5, 2, 2, 500, 502, 5, 70, 36, 2, 501, 499, 3, 2, 2, 2, 502, 505, 3, 2, 2, 2, 503, 501, 3, 2, 2, 2, 503, 504, 3, 2, 2, 2, 504, 69, 3, 2, 2, 2, 505, 503, 3, 2, 2, 2, 506, 511, 5, 72, 37, 2, 507, 508, 9, 6, 2, 2, 508, 510, 5, 72, 37, 2, 509, 507, 3, 2, 2, 2, 510, 513, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 71, 3, 2, 2, 2, 513, 511, 3, 2, 2, 2, 514, 519, 5, 74, 38, 2, 515, 516, 7, 107, 2, 2, 516, 518, 5, 74, 38, 2, 517, 515, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 73, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 527, 5, 76, 39, 2, 523, 524, 9, 7, 2, 2, 524, 526, 5, 76, 39, 2, 525, 523, 3, 2, 2, 2, 526, 529, 3, 2, 2, 2, 527, 525, 3, 2, 2, 2, 527, 528, 3, 2, 2, 2, 528, 75, 3, 2, 2, 2, 529, 527, 3, 2, 2, 2, 530, 535, 5, 78, 40, 2, 531, 532, 9, 8, 2, 2, 532, 534, 5, 78, 40, 2, 533, 531, 3, 2, 2, 2, 534, 537, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 77, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 538, 543, 5, 80, 41, 2, 539, 540, 9, 9, 2, 2, 540, 542, 5, 80, 41, 2, 541, 539, 3, 2, 2, 2, 542, 545, 3, 2, 2, 2, 543, 541, 3, 2, 2, 2, 543, 544, 3, 2, 2, 2, 544, 79, 3, 2, 2, 2, 545, 543, 3, 2, 2, 2, 546, 547, 9, 10, 2, 2, 547, 552, 5, 80, 41, 2, 548, 549, 9, 11, 2, 2, 549, 552, 5, 80, 41, 2, 550, 552, 5, 82, 42, 2, 551, 546, 3, 2, 2, 2, 551, 548, 3, 2, 2, 2, 551, 550, 3, 2, 2, 2, 552, 81, 3, 2, 2, 2, 553, 557, 5, 84, 43, 2, 554, 556, 9, 12, 2, 2, 555, 554, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 83, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 8, 43, 1, 2, 561, 562, 5, 86, 44, 2, 562, 576, 3, 2, 2, 2, 563, 564, 12, 6, 2, 2, 564, 565, 7, 137, 2, 2, 565, 575, 5, 120, 61, 2, 566, 567, 12, 5, 2, 2, 567, 568, 7, 137, 2, 2, 568, 575, 7, 104, 2, 2, 569, 570, 12, 4, 2, 2, 570, 571, 7, 138, 2, 2, 571, 572, 5, 52, 27, 2, 572, 573, 7, 139, 2, 2, 573, 575, 3, 2, 2, 2, 574, 563, 3, 2, 2, 2, 574, 566, 3, 2, 2, 2, 574, 569, 3, 2, 2, 2, 575, 578, 3, 2, 2, 2, 576, 574, 3, 2, 2, 2, 576, 577, 3, 2, 2, 2, 577, 85, 3, 2, 2, 2, 578, 576, 3, 2, 2, 2, 579, 597, 7, 14, 2, 2, 580, 581, 7, 15, 2, 2, 581, 582, 7, 124, 2, 2, 582, 583, 7, 104, 2, 2, 583, 597, 7, 125, 2, 2, 584, 597, 5, 94, 48, 2, 585, 597, 5, 90, 46, 2, 586, 587, 7, 124, 2, 2, 587, 588, 5, 52, 27, 2, 588, 589, 7, 125, 2, 2, 589, 597, 3, 2, 2, 2, 590, 591, 7, 96, 2, 2, 591, 592, 5, 88, 45, 2, 592, 593, 7, 124, 2, 2, 593, 594, 5, 52, 27, 2, 594, 595, 7, 125, 2, 2, 595, 597, 3, 2, 2, 2, 596, 579, 3, 2, 2, 2, 596, 580, 3, 2, 2, 2, 596, 584, 3, 2, 2, 2, 596, 585, 3, 2, 2, 2, 596, 586, 3, 2, 2, 2, 596, 590, 3, 2, 2, 2, 597, 87, 3, 2, 2, 2, 598, 599, 7, 97, 2, 2, 599, 89, 3, 2, 2, 2, 600, 603, 5, 92, 47, 2, 601, 603, 5, 96, 49, 2, 602, 600, 3, 2, 2, 2, 602, 601, 3, 2, 2, 2, 603, 91, 3, 2, 2, 2, 604, 610, 7, 101, 2, 2, 605, 610, 7, 102, 2, 2, 606, 610, 7, 103, 2, 2, 607, 610, 7, 142, 2, 2, 608, 610, 7, 141, 2, 2, 609, 604, 3, 2, 2, 2, 609, 605, 3, 2, 2, 2, 609, 606, 3, 2, 2, 2, 609, 607, 3, 2, 2, 2, 609, 608, 3, 2, 2, 2, 610, 93, 3, 2, 2, 2, 611, 616, 5, 116, 59, 2, 612, 616, 7, 104, 2, 2, 613, 614, 7, 93, 2, 2, 614, 616, 7, 104, 2, 2, 615, 611, 3, 2, 2, 2, 615, 612, 3, 2, 2, 2, 615, 613, 3, 2, 2, 2, 616, 95, 3, 2, 2, 2, 617, 623, 5, 102, 52, 2, 618, 623, 5, 104, 53, 2, 619, 623, 5, 110, 56, 2, 620, 623, 5, 106, 54, 2, 621, 623, 5, 112, 57, 2, 622, 617, 3, 2, 2, 2, 622, 618, 3, 2, 2, 2, 622, 619, 3, 2, 2, 2, 622, 620, 3, 2, 2, 2, 622, 621, 3, 2, 2, 2, 623, 97, 3, 2, 2, 2, 624, 625, 5, 52, 27, 2, 625, 626, 7, 137, 2, 2, 626, 627, 7, 137, 2, 2, 627, 628, 5, 52, 27, 2, 628, 99, 3, 2, 2, 2, 629, 630, 7, 104, 2, 2, 630, 631, 7, 29, 2, 2, 631, 632, 5, 52, 27, 2, 632, 633, 7, 133, 2, 2, 633, 634, 5, 52, 27, 2, 634, 642, 3, 2, 2, 2, 635, 636, 5, 52, 27, 2, 636, 637, 7, 133, 2, 2, 637, 638, 7, 104, 2, 2, 638, 639, 7, 29, 2, 2, 639, 640, 5, 52, 27, 2, 640, 642, 3, 2, 2, 2, 641, 629, 3, 2, 2, 2, 641, 635, 3, 2, 2, 2, 642, 101, 3, 2, 2, 2, 643, 644, 7, 138, 2, 2, 644, 645, 5, 100, 51, 2, 645, 646, 7, 139, 2, 2, 646, 664, 3, 2, 2, 2, 647, 656, 7, 138, 2, 2, 648, 653, 5, 52, 27, 2, 649, 650, 7, 136, 2, 2, 650, 652, 5, 52, 27, 2, 651, 649, 3, 2, 2, 2, 652, 655, 3, 2, 2, 2, 653, 651, 3, 2, 2, 2, 653, 654, 3, 2, 2, 2, 654, 657, 3, 2, 2, 2, 655, 653, 3, 2, 2, 2, 656, 648, 3, 2, 2, 2, 656, 657, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 664, 7, 139, 2, 2, 659, 660, 7, 138, 2, 2, 660, 661, 5, 98, 50, 2, 661, 662, 7, 139, 2, 2, 662, 664, 3, 2, 2, 2, 663, 643, 3, 2, 2, 2, 663, 647, 3, 2, 2, 2, 663, 659, 3, 2, 2, 2, 664, 103, 3, 2, 2, 2, 665, 687, 7, 43, 2, 2, 666, 667, 7, 112, 2, 2, 667, 668, 5, 100, 51, 2, 668, 669, 7, 113, 2, 2, 669, 687, 3, 2, 2, 2, 670, 679, 7, 112, 2, 2, 671, 676, 5, 52, 27, 2, 672, 673, 7, 136, 2, 2, 673, 675, 5, 52, 27, 2, 674, 672, 3, 2, 2, 2, 675, 678, 3, 2, 2, 2, 676, 674, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 680, 3, 2, 2, 2, 678, 676, 3, 2, 2, 2, 679, 671, 3, 2, 2, 2, 679, 680, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 687, 7, 113, 2, 2, 682, 683, 7, 112, 2, 2, 683, 684, 5, 98, 50, 2, 684, 685, 7, 113, 2, 2, 685, 687, 3, 2, 2, 2, 686, 665, 3, 2, 2, 2, 686, 666, 3, 2, 2, 2, 686, 670, 3, 2, 2, 2, 686, 682, 3, 2, 2, 2, 687, 105, 3, 2, 2, 2, 688, 690, 7, 134, 2, 2, 689, 691, 5, 108, 55, 2, 690, 689, 3, 2, 2, 2, 691, 692, 3, 2, 2, 2, 692, 690, 3, 2, 2, 2, 692, 693, 3, 2, 2, 2, 693, 694, 3, 2, 2, 2, 694, 695, 7, 135, 2, 2, 695, 703, 3, 2, 2, 2, 696, 701, 7, 44, 2, 2, 697, 698, 7, 134, 2, 2, 698, 699, 7, 94, 2, 2, 699, 701, 7, 135, 2, 2, 700, 696, 3, 2, 2, 2, 700, 697, 3, 2, 2, 2, 701, 703, 3, 2, 2, 2, 702, 688, 3, 2, 2, 2, 702, 700, 3, 2, 2, 2, 703, 107, 3, 2, 2, 2, 704, 705, 7, 104, 2, 2, 705, 706, 7, 94, 2, 2, 706, 707, 5, 52, 27, 2, 707, 109, 3, 2, 2, 2, 708, 730, 7, 42, 2, 2, 709, 710, 7, 134, 2, 2, 710, 711, 5, 100, 51, 2, 711, 712, 7, 135, 2, 2, 712, 730, 3, 2, 2, 2, 713, 722, 7, 134, 2, 2, 714, 719, 5, 52, 27, 2, 715, 716, 7, 136, 2, 2, 716, 718, 5, 52, 27, 2, 717, 715, 3, 2, 2, 2, 718, 721, 3, 2, 2, 2, 719, 717, 3, 2, 2, 2, 719, 720, 3, 2, 2, 2, 720, 723, 3, 2, 2, 2, 721, 719, 3, 2, 2, 2, 722, 714, 3, 2, 2, 2, 722, 723, 3, 2, 2, 2, 723, 724, 3, 2, 2, 2, 724, 730, 7, 135, 2, 2, 725, 726, 7, 134, 2, 2, 726, 727, 5, 98, 50, 2, 727, 728, 7, 135, 2, 2, 728, 730, 3, 2, 2, 2, 729, 708, 3, 2, 2, 2, 729, 709, 3, 2, 2, 2, 729, 713, 3, 2, 2, 2, 729, 725, 3, 2, 2, 2, 730, 111, 3, 2, 2, 2, 731, 736, 7, 41, 2, 2, 732, 733, 7, 134, 2, 2, 733, 734, 7, 21, 2, 2, 734, 736, 7, 135, 2, 2, 735, 731, 3, 2, 2, 2, 735, 732, 3, 2, 2, 2, 736, 746, 3, 2, 2, 2, 737, 739, 7, 134, 2, 2, 738, 740, 5, 114, 58, 2, 739, 738, 3, 2, 2, 2, 740, 741, 3, 2, 2, 2, 741, 739, 3, 2, 2, 2, 741, 742, 3, 2, 2, 2, 742, 743, 3, 2, 2, 2, 743, 744, 7, 135, 2, 2, 744, 746, 3, 2, 2, 2, 745, 735, 3, 2, 2, 2, 745, 737, 3, 2, 2, 2, 746, 113, 3, 2, 2, 2, 747, 748, 5, 52, 27, 2, 748, 749, 7, 21, 2, 2, 749, 750, 5, 52, 27, 2, 750, 115, 3, 2, 2, 2, 751, 766, 5, 118, 60, 2, 752, 753, 7, 104, 2, 2, 753, 762, 7, 124, 2, 2, 754, 759, 5, 52, 27, 2, 755, 756, 7, 136, 2, 2, 756, 758, 5, 52, 27, 2, 757, 755, 3, 2, 2, 2, 758, 761, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 760, 3, 2, 2, 2, 760, 763, 3, 2, 2, 2, 761, 759, 3, 2, 2, 2, 762, 754, 3, 2, 2, 2, 762, 763, 3, 2, 2, 2, 763, 764, 3, 2, 2, 2, 764, 766, 7, 125, 2, 2, 765, 751, 3, 2, 2, 2, 765, 752, 3, 2, 2, 2, 766, 117, 3, 2, 2, 2, 767, 768, 5, 124, 63, 2, 768, 777, 7, 124, 2, 2, 769, 774, 5, 52, 27, 2, 770, 771, 7, 136, 2, 2, 771, 773, 5, 52, 27, 2, 772, 770, 3, 2, 2, 2, 773, 776, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 778, 3, 2, 2, 2, 776, 774, 3, 2, 2, 2, 777, 769, 3, 2, 2, 2, 777, 778, 3, 2, 2, 2, 778, 779, 3, 2, 2, 2, 779, 780, 7, 125, 2, 2, 780, 119, 3, 2, 2, 2, 781, 782, 5, 126, 64, 2, 782, 791, 7, 124, 2, 2, 783, 788, 5, 52, 27, 2, 784, 785, 7, 136, 2, 2, 785, 787, 5, 52, 27, 2, 786, 784, 3, 2, 2, 2, 787, 790, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 788, 789, 3, 2, 2, 2, 789, 792, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 791, 783, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 793, 3, 2, 2, 2, 793, 794, 7, 125, 2, 2, 794, 121, 3, 2, 2, 2, 795, 809, 7, 72, 2, 2, 796, 809, 7, 73, 2, 2, 797, 809, 7, 69, 2, 2, 798, 799, 7, 61, 2, 2, 799, 800, 7, 112, 2, 2, 800, 801, 5, 122, 62, 2, 801, 802, 7, 113, 2, 2, 802, 809, 3, 2, 2, 2, 803, 804, 7, 62, 2, 2, 804, 805, 7, 112, 2, 2, 805, 806, 5, 122, 62, 2, 806, 807, 7, 113, 2, 2, 807, 809, 3, 2, 2, 2, 808, 795, 3, 2, 2, 2, 808, 796, 3, 2, 2, 2, 808, 797, 3, 2, 2, 2, 808, 798, 3, 2, 2, 2, 808, 803, 3, 2, 2, 2, 809, 123, 3, 2, 2, 2, 810, 811, 9, 13, 2, 2, 811, 125, 3, 2, 2, 2, 812, 813, 9, 14, 2, 2, 813, 127, 3, 2, 2, 2, 814, 815, 7, 104, 2, 2, 815, 816, 7, 21, 2, 2, 816, 818, 5, 52, 27, 2, 817, 814, 3, 2, 2, 2, 818, 821, 3, 2, 2, 2, 819, 817, 3, 2, 2, 2, 819, 820, 3, 2, 2, 2, 820, 822, 3, 2, 2, 2, 821, 819, 3, 2, 2, 2, 822, 823, 7, 2, 2, 3, 823, 129, 3, 2, 2, 2, 83, 131, 138, 143, 184, 198, 204, 212, 233, 243, 250, 259, 264, 269, 277, 281, 283, 289, 294, 310, 335, 338, 347, 350, 355, 359, 365, 369, 384, 387, 393, 396, 418, 434, 441, 448, 456, 463, 471, 479, 487, 495, 503, 511, 519, 527, 535, 543, 551, 557, 574, 576, 596, 602, 609, 615, 622, 641, 653, 656, 663, 676, 679, 686, 692, 700, 702, 719, 722, 729, 735, 741, 745, 759, 762, 765, 774, 777, 788, 791, 808, 819]
\ No newline at end of file
diff --git a/src/main/java/grammar/alk.tokens b/src/main/java/grammar/alk.tokens
index 0ac5d425..513f093d 100644
--- a/src/main/java/grammar/alk.tokens
+++ b/src/main/java/grammar/alk.tokens
@@ -7,261 +7,265 @@ SYMBOLIC=6
INVARIANT=7
REQURIES=8
ENSURES=9
-WHILEMODIFIES=10
-RESULT=11
-IMPLIES=12
-EQUIV=13
-FORALL=14
-EXISTS=15
-QUANTIFIER_SEPARATOR=16
-TO=17
-IF=18
-ELSE=19
-WHILE=20
-DO=21
-FOR=22
-FOREACH=23
-IN=24
-FROM=25
-OUT=26
-HAVOC=27
-CHOOSE=28
-UNIFORM=29
-REPEAT=30
-RETURN=31
-SUCCESS=32
-UNTIL=33
-FAILURE=34
-CONTINUE=35
-BREAK=36
-EMPTYMAP=37
-EMPTYSET=38
-EMPTYLIST=39
-EMPTYSTRUCTURE=40
-MODIFIES=41
-USES=42
-INCLDUE=43
-XOR=44
-ABS=45
-ACOS=46
-ASIN=47
-ATAN=48
-COS=49
-LOG=50
-PI=51
-POW=52
-SIN=53
-SQRT=54
-TAN=55
-LEN=56
-ARRAY=57
-SET=58
-AT=59
-BELONGSTO=60
-DELETE=61
-EMPTY=62
-END=63
-FIRST=64
-FLOAT=65
-INSERT=66
-KEYS=67
-INTEGER=68
-BOOLEAN=69
-PRINT=70
-POPBACK=71
-POPFRONT=72
-PUSHBACK=73
-PUSHFRONT=74
-REMOVE=75
-REMOVEALLEQTO=76
-REMOVEAT=77
-SINGLETONSET=78
-SIZE=79
-SPLIT=80
-TOPBACK=81
-TOPFRONT=82
-UPDATE=83
-UNIFORMNAT=84
-FLIP=85
-UNIFORMFLOAT=86
-UNIFORMPERM=87
-SOTHAT=88
-SYM=89
-ARROW=90
-NUMSIGN=91
-ANNO=92
-COUNT=93
-UNION=94
-INTERSECT=95
-SUBTRACT=96
-INT=97
-DOUBLE=98
-BOOL=99
-ID=100
-PLUSPLUS=101
-MINUSMINUS=102
-BITWISE_AND=103
-PLUSMOD=104
-MINUSMOD=105
-PLUSPLUSMOD=106
-MINUSMINUSMOD=107
-LOWER=108
-GREATER=109
-LOWEREQ=110
-GREATEREQ=111
-ISEQUAL=112
-NOTEQUAL=113
-ASSIGNMENT_OPERATOR=114
-MINUS=115
-PLUS=116
-MUL=117
-DIV=118
-MOD=119
-LPAR=120
-RPAR=121
-LEFTSHIFT=122
-RIGHTSHIFT=123
-OR=124
-AND=125
-NOT=126
-SEMICOLON=127
-DPOINT=128
-VBAR=129
-LCB=130
-RCB=131
-COMMA=132
-POINT=133
-LBRA=134
-RBRA=135
-QUOTE=136
-QUESTION=137
-STRING=138
+LOOPASSESRT=10
+WHILEMODIFIES=11
+RESULT=12
+OLD=13
+IMPLIES=14
+EQUIV=15
+FORALL=16
+EXISTS=17
+QUANTIFIER_SEPARATOR=18
+TO=19
+IF=20
+ELSE=21
+WHILE=22
+DO=23
+FOR=24
+FOREACH=25
+IN=26
+FROM=27
+OUT=28
+HAVOC=29
+CHOOSE=30
+UNIFORM=31
+REPEAT=32
+RETURN=33
+SUCCESS=34
+UNTIL=35
+FAILURE=36
+CONTINUE=37
+BREAK=38
+EMPTYMAP=39
+EMPTYSET=40
+EMPTYLIST=41
+EMPTYSTRUCTURE=42
+MODIFIES=43
+USES=44
+INCLDUE=45
+XOR=46
+ABS=47
+ACOS=48
+ASIN=49
+ATAN=50
+COS=51
+LOG=52
+PI=53
+POW=54
+SIN=55
+SQRT=56
+TAN=57
+LEN=58
+ARRAY=59
+SET=60
+AT=61
+BELONGSTO=62
+DELETE=63
+EMPTY=64
+END=65
+FIRST=66
+FLOAT=67
+INSERT=68
+KEYS=69
+INTEGER=70
+BOOLEAN=71
+PRINT=72
+POPBACK=73
+POPFRONT=74
+PUSHBACK=75
+PUSHFRONT=76
+REMOVE=77
+REMOVEALLEQTO=78
+REMOVEAT=79
+SINGLETONSET=80
+SIZE=81
+SPLIT=82
+TOPBACK=83
+TOPFRONT=84
+UPDATE=85
+UNIFORMNAT=86
+FLIP=87
+UNIFORMFLOAT=88
+UNIFORMPERM=89
+SOTHAT=90
+SYM=91
+ARROW=92
+NUMSIGN=93
+ANNO=94
+COUNT=95
+UNION=96
+INTERSECT=97
+SUBTRACT=98
+INT=99
+DOUBLE=100
+BOOL=101
+ID=102
+PLUSPLUS=103
+MINUSMINUS=104
+BITWISE_AND=105
+PLUSMOD=106
+MINUSMOD=107
+PLUSPLUSMOD=108
+MINUSMINUSMOD=109
+LOWER=110
+GREATER=111
+LOWEREQ=112
+GREATEREQ=113
+ISEQUAL=114
+NOTEQUAL=115
+ASSIGNMENT_OPERATOR=116
+MINUS=117
+PLUS=118
+MUL=119
+DIV=120
+MOD=121
+LPAR=122
+RPAR=123
+LEFTSHIFT=124
+RIGHTSHIFT=125
+OR=126
+AND=127
+NOT=128
+SEMICOLON=129
+DPOINT=130
+VBAR=131
+LCB=132
+RCB=133
+COMMA=134
+POINT=135
+LBRA=136
+RBRA=137
+QUOTE=138
+QUESTION=139
+STRING=140
'@assert'=4
'@assume'=5
'@symbolic'=6
'@invariant'=7
'@requires'=8
'@ensures'=9
-'@modifies'=10
-'\\result'=11
-'==>'=12
-'<==>'=13
-'forall'=14
-'exists'=15
-'::'=16
-'|->'=17
-'if'=18
-'else'=19
-'while'=20
-'do'=21
-'for'=22
-'foreach'=23
-'in'=24
-'from'=25
-'out'=26
-'@havoc'=27
-'choose'=28
-'uniform'=29
-'repeat'=30
-'return'=31
-'success'=32
-'until'=33
-'failure'=34
-'continue'=35
-'break'=36
-'emptyMap'=37
-'emptySet'=38
-'emptyList'=39
-'emptyStructure'=40
-'modifies'=41
-'uses'=42
-'include'=43
-'xor'=44
-'abs'=45
-'acos'=46
-'asin'=47
-'atan'=48
-'cos'=49
-'log'=50
-'pi'=51
-'pow'=52
-'sin'=53
-'sqrt'=54
-'tan'=55
-'len'=56
-'array'=57
-'set'=58
-'at'=59
-'belongsTo'=60
-'delete'=61
-'empty'=62
-'end'=63
-'first'=64
-'float'=65
-'insert'=66
-'keys'=67
-'int'=68
-'boolean'=69
-'print'=70
-'popBack'=71
-'popFront'=72
-'pushBack'=73
-'pushFront'=74
-'remove'=75
-'removeAllEqTo'=76
-'removeAt'=77
-'singletonSet'=78
-'size'=79
-'split'=80
-'topBack'=81
-'topFront'=82
-'update'=83
-'uniformNat'=84
-'flip'=85
-'uniformFloat'=86
-'uniformPerm'=87
-'s.t.'=88
-'$'=89
-'->'=90
-'#'=91
-'@'=92
-'Count'=93
-'U'=94
-'^'=95
-'\\'=96
-'++'=101
-'--'=102
-'&'=103
-'+%'=104
-'-%'=105
-'++%'=106
-'--%'=107
-'<'=108
-'>'=109
-'<='=110
-'>='=111
-'=='=112
-'!='=113
-'-'=115
-'+'=116
-'*'=117
-'/'=118
-'%'=119
-'('=120
-')'=121
-'<<'=122
-'>>'=123
-'||'=124
-'&&'=125
-'!'=126
-';'=127
-':'=128
-'|'=129
-'{'=130
-'}'=131
-','=132
-'.'=133
-'['=134
-']'=135
-'"'=136
-'?'=137
+'@loopassert'=10
+'@modifies'=11
+'\\result'=12
+'\\old'=13
+'==>'=14
+'<==>'=15
+'forall'=16
+'exists'=17
+'::'=18
+'|->'=19
+'if'=20
+'else'=21
+'while'=22
+'do'=23
+'for'=24
+'foreach'=25
+'in'=26
+'from'=27
+'out'=28
+'@havoc'=29
+'choose'=30
+'uniform'=31
+'repeat'=32
+'return'=33
+'success'=34
+'until'=35
+'failure'=36
+'continue'=37
+'break'=38
+'emptyMap'=39
+'emptySet'=40
+'emptyList'=41
+'emptyStructure'=42
+'modifies'=43
+'uses'=44
+'include'=45
+'xor'=46
+'abs'=47
+'acos'=48
+'asin'=49
+'atan'=50
+'cos'=51
+'log'=52
+'pi'=53
+'pow'=54
+'sin'=55
+'sqrt'=56
+'tan'=57
+'len'=58
+'array'=59
+'set'=60
+'at'=61
+'belongsTo'=62
+'delete'=63
+'empty'=64
+'end'=65
+'first'=66
+'float'=67
+'insert'=68
+'keys'=69
+'int'=70
+'boolean'=71
+'print'=72
+'popBack'=73
+'popFront'=74
+'pushBack'=75
+'pushFront'=76
+'remove'=77
+'removeAllEqTo'=78
+'removeAt'=79
+'singletonSet'=80
+'size'=81
+'split'=82
+'topBack'=83
+'topFront'=84
+'update'=85
+'uniformNat'=86
+'flip'=87
+'uniformFloat'=88
+'uniformPerm'=89
+'s.t.'=90
+'$'=91
+'->'=92
+'#'=93
+'@'=94
+'Count'=95
+'U'=96
+'^'=97
+'\\'=98
+'++'=103
+'--'=104
+'&'=105
+'+%'=106
+'-%'=107
+'++%'=108
+'--%'=109
+'<'=110
+'>'=111
+'<='=112
+'>='=113
+'=='=114
+'!='=115
+'-'=117
+'+'=118
+'*'=119
+'/'=120
+'%'=121
+'('=122
+')'=123
+'<<'=124
+'>>'=125
+'||'=126
+'&&'=127
+'!'=128
+';'=129
+':'=130
+'|'=131
+'{'=132
+'}'=133
+','=134
+'.'=135
+'['=136
+']'=137
+'"'=138
+'?'=139
diff --git a/src/main/java/grammar/alkBaseVisitor.java b/src/main/java/grammar/alkBaseVisitor.java
index 2db9642d..0587a25f 100644
--- a/src/main/java/grammar/alkBaseVisitor.java
+++ b/src/main/java/grammar/alkBaseVisitor.java
@@ -188,6 +188,13 @@ public class alkBaseVisitor extends AbstractParseTreeVisitor implements al
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitHavoc(alkParser.HavocContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitDecl(alkParser.DeclContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -258,6 +265,27 @@ public class alkBaseVisitor extends AbstractParseTreeVisitor implements al
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitModifiesAnno(alkParser.ModifiesAnnoContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitIdModif(alkParser.IdModifContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSizeModif(alkParser.SizeModifContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitLoopAssertAnno(alkParser.LoopAssertAnnoContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -300,6 +328,13 @@ public class alkBaseVisitor extends AbstractParseTreeVisitor implements al
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitReqExpression(alkParser.ReqExpressionContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitTypeAssertReq(alkParser.TypeAssertReqContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -307,6 +342,13 @@ public class alkBaseVisitor extends AbstractParseTreeVisitor implements al
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitEnsExpression(alkParser.EnsExpressionContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitTypeAssertEns(alkParser.TypeAssertEnsContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -510,6 +552,13 @@ public class alkBaseVisitor extends AbstractParseTreeVisitor implements al
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitResultFactor(alkParser.ResultFactorContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitOldFactor(alkParser.OldFactorContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/grammar/alkLexer.interp b/src/main/java/grammar/alkLexer.interp
index 7f3fde7f..e0fb053c 100644
--- a/src/main/java/grammar/alkLexer.interp
+++ b/src/main/java/grammar/alkLexer.interp
@@ -9,8 +9,10 @@ null
'@invariant'
'@requires'
'@ensures'
+'@loopassert'
'@modifies'
'\\result'
+'\\old'
'==>'
'<==>'
'forall'
@@ -150,8 +152,10 @@ SYMBOLIC
INVARIANT
REQURIES
ENSURES
+LOOPASSESRT
WHILEMODIFIES
RESULT
+OLD
IMPLIES
EQUIV
FORALL
@@ -293,8 +297,10 @@ SYMBOLIC
INVARIANT
REQURIES
ENSURES
+LOOPASSESRT
WHILEMODIFIES
RESULT
+OLD
IMPLIES
EQUIV
FORALL
@@ -431,4 +437,4 @@ mode names:
DEFAULT_MODE
atn:
-[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 140, 1079, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 3, 2, 6, 2, 287, 10, 2, 13, 2, 14, 2, 288, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 297, 10, 3, 12, 3, 14, 3, 300, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 311, 10, 4, 12, 4, 14, 4, 314, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 6, 101, 926, 10, 101, 13, 101, 14, 101, 927, 3, 102, 6, 102, 931, 10, 102, 13, 102, 14, 102, 932, 3, 102, 3, 102, 6, 102, 937, 10, 102, 13, 102, 14, 102, 938, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 5, 103, 950, 10, 103, 3, 104, 3, 104, 3, 104, 7, 104, 955, 10, 104, 12, 104, 14, 104, 958, 11, 104, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 5, 118, 1019, 10, 118, 3, 119, 3, 119, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 7, 142, 1073, 10, 142, 12, 142, 14, 142, 1076, 11, 142, 3, 142, 3, 142, 3, 298, 2, 143, 3, 3, 5, 4, 7, 5, 9, 2, 11, 2, 13, 2, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 60, 125, 61, 127, 62, 129, 63, 131, 64, 133, 65, 135, 66, 137, 67, 139, 68, 141, 69, 143, 70, 145, 71, 147, 72, 149, 73, 151, 74, 153, 75, 155, 76, 157, 77, 159, 78, 161, 79, 163, 80, 165, 81, 167, 82, 169, 83, 171, 84, 173, 85, 175, 86, 177, 87, 179, 88, 181, 89, 183, 90, 185, 91, 187, 92, 189, 93, 191, 94, 193, 95, 195, 96, 197, 97, 199, 98, 201, 99, 203, 100, 205, 101, 207, 102, 209, 103, 211, 104, 213, 105, 215, 106, 217, 107, 219, 108, 221, 109, 223, 110, 225, 111, 227, 112, 229, 113, 231, 114, 233, 115, 235, 116, 237, 117, 239, 118, 241, 119, 243, 120, 245, 121, 247, 122, 249, 123, 251, 124, 253, 125, 255, 126, 257, 127, 259, 128, 261, 129, 263, 130, 265, 131, 267, 132, 269, 133, 271, 134, 273, 135, 275, 136, 277, 137, 279, 138, 281, 139, 283, 140, 3, 2, 8, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 3, 2, 51, 59, 5, 2, 12, 12, 15, 15, 36, 36, 2, 1094, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 3, 286, 3, 2, 2, 2, 5, 292, 3, 2, 2, 2, 7, 306, 3, 2, 2, 2, 9, 317, 3, 2, 2, 2, 11, 319, 3, 2, 2, 2, 13, 321, 3, 2, 2, 2, 15, 323, 3, 2, 2, 2, 17, 331, 3, 2, 2, 2, 19, 339, 3, 2, 2, 2, 21, 349, 3, 2, 2, 2, 23, 360, 3, 2, 2, 2, 25, 370, 3, 2, 2, 2, 27, 379, 3, 2, 2, 2, 29, 389, 3, 2, 2, 2, 31, 397, 3, 2, 2, 2, 33, 401, 3, 2, 2, 2, 35, 406, 3, 2, 2, 2, 37, 413, 3, 2, 2, 2, 39, 420, 3, 2, 2, 2, 41, 423, 3, 2, 2, 2, 43, 427, 3, 2, 2, 2, 45, 430, 3, 2, 2, 2, 47, 435, 3, 2, 2, 2, 49, 441, 3, 2, 2, 2, 51, 444, 3, 2, 2, 2, 53, 448, 3, 2, 2, 2, 55, 456, 3, 2, 2, 2, 57, 459, 3, 2, 2, 2, 59, 464, 3, 2, 2, 2, 61, 468, 3, 2, 2, 2, 63, 475, 3, 2, 2, 2, 65, 482, 3, 2, 2, 2, 67, 490, 3, 2, 2, 2, 69, 497, 3, 2, 2, 2, 71, 504, 3, 2, 2, 2, 73, 512, 3, 2, 2, 2, 75, 518, 3, 2, 2, 2, 77, 526, 3, 2, 2, 2, 79, 535, 3, 2, 2, 2, 81, 541, 3, 2, 2, 2, 83, 550, 3, 2, 2, 2, 85, 559, 3, 2, 2, 2, 87, 569, 3, 2, 2, 2, 89, 584, 3, 2, 2, 2, 91, 593, 3, 2, 2, 2, 93, 598, 3, 2, 2, 2, 95, 606, 3, 2, 2, 2, 97, 610, 3, 2, 2, 2, 99, 614, 3, 2, 2, 2, 101, 619, 3, 2, 2, 2, 103, 624, 3, 2, 2, 2, 105, 629, 3, 2, 2, 2, 107, 633, 3, 2, 2, 2, 109, 637, 3, 2, 2, 2, 111, 640, 3, 2, 2, 2, 113, 644, 3, 2, 2, 2, 115, 648, 3, 2, 2, 2, 117, 653, 3, 2, 2, 2, 119, 657, 3, 2, 2, 2, 121, 661, 3, 2, 2, 2, 123, 667, 3, 2, 2, 2, 125, 671, 3, 2, 2, 2, 127, 674, 3, 2, 2, 2, 129, 684, 3, 2, 2, 2, 131, 691, 3, 2, 2, 2, 133, 697, 3, 2, 2, 2, 135, 701, 3, 2, 2, 2, 137, 707, 3, 2, 2, 2, 139, 713, 3, 2, 2, 2, 141, 720, 3, 2, 2, 2, 143, 725, 3, 2, 2, 2, 145, 729, 3, 2, 2, 2, 147, 737, 3, 2, 2, 2, 149, 743, 3, 2, 2, 2, 151, 751, 3, 2, 2, 2, 153, 760, 3, 2, 2, 2, 155, 769, 3, 2, 2, 2, 157, 779, 3, 2, 2, 2, 159, 786, 3, 2, 2, 2, 161, 800, 3, 2, 2, 2, 163, 809, 3, 2, 2, 2, 165, 822, 3, 2, 2, 2, 167, 827, 3, 2, 2, 2, 169, 833, 3, 2, 2, 2, 171, 841, 3, 2, 2, 2, 173, 850, 3, 2, 2, 2, 175, 857, 3, 2, 2, 2, 177, 868, 3, 2, 2, 2, 179, 873, 3, 2, 2, 2, 181, 886, 3, 2, 2, 2, 183, 898, 3, 2, 2, 2, 185, 903, 3, 2, 2, 2, 187, 905, 3, 2, 2, 2, 189, 908, 3, 2, 2, 2, 191, 910, 3, 2, 2, 2, 193, 912, 3, 2, 2, 2, 195, 918, 3, 2, 2, 2, 197, 920, 3, 2, 2, 2, 199, 922, 3, 2, 2, 2, 201, 925, 3, 2, 2, 2, 203, 930, 3, 2, 2, 2, 205, 949, 3, 2, 2, 2, 207, 951, 3, 2, 2, 2, 209, 959, 3, 2, 2, 2, 211, 962, 3, 2, 2, 2, 213, 965, 3, 2, 2, 2, 215, 967, 3, 2, 2, 2, 217, 970, 3, 2, 2, 2, 219, 973, 3, 2, 2, 2, 221, 977, 3, 2, 2, 2, 223, 981, 3, 2, 2, 2, 225, 983, 3, 2, 2, 2, 227, 985, 3, 2, 2, 2, 229, 988, 3, 2, 2, 2, 231, 991, 3, 2, 2, 2, 233, 994, 3, 2, 2, 2, 235, 1018, 3, 2, 2, 2, 237, 1020, 3, 2, 2, 2, 239, 1022, 3, 2, 2, 2, 241, 1024, 3, 2, 2, 2, 243, 1026, 3, 2, 2, 2, 245, 1028, 3, 2, 2, 2, 247, 1030, 3, 2, 2, 2, 249, 1032, 3, 2, 2, 2, 251, 1034, 3, 2, 2, 2, 253, 1037, 3, 2, 2, 2, 255, 1040, 3, 2, 2, 2, 257, 1043, 3, 2, 2, 2, 259, 1046, 3, 2, 2, 2, 261, 1048, 3, 2, 2, 2, 263, 1050, 3, 2, 2, 2, 265, 1052, 3, 2, 2, 2, 267, 1054, 3, 2, 2, 2, 269, 1056, 3, 2, 2, 2, 271, 1058, 3, 2, 2, 2, 273, 1060, 3, 2, 2, 2, 275, 1062, 3, 2, 2, 2, 277, 1064, 3, 2, 2, 2, 279, 1066, 3, 2, 2, 2, 281, 1068, 3, 2, 2, 2, 283, 1070, 3, 2, 2, 2, 285, 287, 9, 2, 2, 2, 286, 285, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 286, 3, 2, 2, 2, 288, 289, 3, 2, 2, 2, 289, 290, 3, 2, 2, 2, 290, 291, 8, 2, 2, 2, 291, 4, 3, 2, 2, 2, 292, 293, 7, 49, 2, 2, 293, 294, 7, 44, 2, 2, 294, 298, 3, 2, 2, 2, 295, 297, 11, 2, 2, 2, 296, 295, 3, 2, 2, 2, 297, 300, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 299, 301, 3, 2, 2, 2, 300, 298, 3, 2, 2, 2, 301, 302, 7, 44, 2, 2, 302, 303, 7, 49, 2, 2, 303, 304, 3, 2, 2, 2, 304, 305, 8, 3, 2, 2, 305, 6, 3, 2, 2, 2, 306, 307, 7, 49, 2, 2, 307, 308, 7, 49, 2, 2, 308, 312, 3, 2, 2, 2, 309, 311, 10, 3, 2, 2, 310, 309, 3, 2, 2, 2, 311, 314, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 315, 3, 2, 2, 2, 314, 312, 3, 2, 2, 2, 315, 316, 8, 4, 2, 2, 316, 8, 3, 2, 2, 2, 317, 318, 9, 4, 2, 2, 318, 10, 3, 2, 2, 2, 319, 320, 9, 5, 2, 2, 320, 12, 3, 2, 2, 2, 321, 322, 9, 6, 2, 2, 322, 14, 3, 2, 2, 2, 323, 324, 7, 66, 2, 2, 324, 325, 7, 99, 2, 2, 325, 326, 7, 117, 2, 2, 326, 327, 7, 117, 2, 2, 327, 328, 7, 103, 2, 2, 328, 329, 7, 116, 2, 2, 329, 330, 7, 118, 2, 2, 330, 16, 3, 2, 2, 2, 331, 332, 7, 66, 2, 2, 332, 333, 7, 99, 2, 2, 333, 334, 7, 117, 2, 2, 334, 335, 7, 117, 2, 2, 335, 336, 7, 119, 2, 2, 336, 337, 7, 111, 2, 2, 337, 338, 7, 103, 2, 2, 338, 18, 3, 2, 2, 2, 339, 340, 7, 66, 2, 2, 340, 341, 7, 117, 2, 2, 341, 342, 7, 123, 2, 2, 342, 343, 7, 111, 2, 2, 343, 344, 7, 100, 2, 2, 344, 345, 7, 113, 2, 2, 345, 346, 7, 110, 2, 2, 346, 347, 7, 107, 2, 2, 347, 348, 7, 101, 2, 2, 348, 20, 3, 2, 2, 2, 349, 350, 7, 66, 2, 2, 350, 351, 7, 107, 2, 2, 351, 352, 7, 112, 2, 2, 352, 353, 7, 120, 2, 2, 353, 354, 7, 99, 2, 2, 354, 355, 7, 116, 2, 2, 355, 356, 7, 107, 2, 2, 356, 357, 7, 99, 2, 2, 357, 358, 7, 112, 2, 2, 358, 359, 7, 118, 2, 2, 359, 22, 3, 2, 2, 2, 360, 361, 7, 66, 2, 2, 361, 362, 7, 116, 2, 2, 362, 363, 7, 103, 2, 2, 363, 364, 7, 115, 2, 2, 364, 365, 7, 119, 2, 2, 365, 366, 7, 107, 2, 2, 366, 367, 7, 116, 2, 2, 367, 368, 7, 103, 2, 2, 368, 369, 7, 117, 2, 2, 369, 24, 3, 2, 2, 2, 370, 371, 7, 66, 2, 2, 371, 372, 7, 103, 2, 2, 372, 373, 7, 112, 2, 2, 373, 374, 7, 117, 2, 2, 374, 375, 7, 119, 2, 2, 375, 376, 7, 116, 2, 2, 376, 377, 7, 103, 2, 2, 377, 378, 7, 117, 2, 2, 378, 26, 3, 2, 2, 2, 379, 380, 7, 66, 2, 2, 380, 381, 7, 111, 2, 2, 381, 382, 7, 113, 2, 2, 382, 383, 7, 102, 2, 2, 383, 384, 7, 107, 2, 2, 384, 385, 7, 104, 2, 2, 385, 386, 7, 107, 2, 2, 386, 387, 7, 103, 2, 2, 387, 388, 7, 117, 2, 2, 388, 28, 3, 2, 2, 2, 389, 390, 7, 94, 2, 2, 390, 391, 7, 116, 2, 2, 391, 392, 7, 103, 2, 2, 392, 393, 7, 117, 2, 2, 393, 394, 7, 119, 2, 2, 394, 395, 7, 110, 2, 2, 395, 396, 7, 118, 2, 2, 396, 30, 3, 2, 2, 2, 397, 398, 7, 63, 2, 2, 398, 399, 7, 63, 2, 2, 399, 400, 7, 64, 2, 2, 400, 32, 3, 2, 2, 2, 401, 402, 7, 62, 2, 2, 402, 403, 7, 63, 2, 2, 403, 404, 7, 63, 2, 2, 404, 405, 7, 64, 2, 2, 405, 34, 3, 2, 2, 2, 406, 407, 7, 104, 2, 2, 407, 408, 7, 113, 2, 2, 408, 409, 7, 116, 2, 2, 409, 410, 7, 99, 2, 2, 410, 411, 7, 110, 2, 2, 411, 412, 7, 110, 2, 2, 412, 36, 3, 2, 2, 2, 413, 414, 7, 103, 2, 2, 414, 415, 7, 122, 2, 2, 415, 416, 7, 107, 2, 2, 416, 417, 7, 117, 2, 2, 417, 418, 7, 118, 2, 2, 418, 419, 7, 117, 2, 2, 419, 38, 3, 2, 2, 2, 420, 421, 7, 60, 2, 2, 421, 422, 7, 60, 2, 2, 422, 40, 3, 2, 2, 2, 423, 424, 7, 126, 2, 2, 424, 425, 7, 47, 2, 2, 425, 426, 7, 64, 2, 2, 426, 42, 3, 2, 2, 2, 427, 428, 7, 107, 2, 2, 428, 429, 7, 104, 2, 2, 429, 44, 3, 2, 2, 2, 430, 431, 7, 103, 2, 2, 431, 432, 7, 110, 2, 2, 432, 433, 7, 117, 2, 2, 433, 434, 7, 103, 2, 2, 434, 46, 3, 2, 2, 2, 435, 436, 7, 121, 2, 2, 436, 437, 7, 106, 2, 2, 437, 438, 7, 107, 2, 2, 438, 439, 7, 110, 2, 2, 439, 440, 7, 103, 2, 2, 440, 48, 3, 2, 2, 2, 441, 442, 7, 102, 2, 2, 442, 443, 7, 113, 2, 2, 443, 50, 3, 2, 2, 2, 444, 445, 7, 104, 2, 2, 445, 446, 7, 113, 2, 2, 446, 447, 7, 116, 2, 2, 447, 52, 3, 2, 2, 2, 448, 449, 7, 104, 2, 2, 449, 450, 7, 113, 2, 2, 450, 451, 7, 116, 2, 2, 451, 452, 7, 103, 2, 2, 452, 453, 7, 99, 2, 2, 453, 454, 7, 101, 2, 2, 454, 455, 7, 106, 2, 2, 455, 54, 3, 2, 2, 2, 456, 457, 7, 107, 2, 2, 457, 458, 7, 112, 2, 2, 458, 56, 3, 2, 2, 2, 459, 460, 7, 104, 2, 2, 460, 461, 7, 116, 2, 2, 461, 462, 7, 113, 2, 2, 462, 463, 7, 111, 2, 2, 463, 58, 3, 2, 2, 2, 464, 465, 7, 113, 2, 2, 465, 466, 7, 119, 2, 2, 466, 467, 7, 118, 2, 2, 467, 60, 3, 2, 2, 2, 468, 469, 7, 66, 2, 2, 469, 470, 7, 106, 2, 2, 470, 471, 7, 99, 2, 2, 471, 472, 7, 120, 2, 2, 472, 473, 7, 113, 2, 2, 473, 474, 7, 101, 2, 2, 474, 62, 3, 2, 2, 2, 475, 476, 7, 101, 2, 2, 476, 477, 7, 106, 2, 2, 477, 478, 7, 113, 2, 2, 478, 479, 7, 113, 2, 2, 479, 480, 7, 117, 2, 2, 480, 481, 7, 103, 2, 2, 481, 64, 3, 2, 2, 2, 482, 483, 7, 119, 2, 2, 483, 484, 7, 112, 2, 2, 484, 485, 7, 107, 2, 2, 485, 486, 7, 104, 2, 2, 486, 487, 7, 113, 2, 2, 487, 488, 7, 116, 2, 2, 488, 489, 7, 111, 2, 2, 489, 66, 3, 2, 2, 2, 490, 491, 7, 116, 2, 2, 491, 492, 7, 103, 2, 2, 492, 493, 7, 114, 2, 2, 493, 494, 7, 103, 2, 2, 494, 495, 7, 99, 2, 2, 495, 496, 7, 118, 2, 2, 496, 68, 3, 2, 2, 2, 497, 498, 7, 116, 2, 2, 498, 499, 7, 103, 2, 2, 499, 500, 7, 118, 2, 2, 500, 501, 7, 119, 2, 2, 501, 502, 7, 116, 2, 2, 502, 503, 7, 112, 2, 2, 503, 70, 3, 2, 2, 2, 504, 505, 7, 117, 2, 2, 505, 506, 7, 119, 2, 2, 506, 507, 7, 101, 2, 2, 507, 508, 7, 101, 2, 2, 508, 509, 7, 103, 2, 2, 509, 510, 7, 117, 2, 2, 510, 511, 7, 117, 2, 2, 511, 72, 3, 2, 2, 2, 512, 513, 7, 119, 2, 2, 513, 514, 7, 112, 2, 2, 514, 515, 7, 118, 2, 2, 515, 516, 7, 107, 2, 2, 516, 517, 7, 110, 2, 2, 517, 74, 3, 2, 2, 2, 518, 519, 7, 104, 2, 2, 519, 520, 7, 99, 2, 2, 520, 521, 7, 107, 2, 2, 521, 522, 7, 110, 2, 2, 522, 523, 7, 119, 2, 2, 523, 524, 7, 116, 2, 2, 524, 525, 7, 103, 2, 2, 525, 76, 3, 2, 2, 2, 526, 527, 7, 101, 2, 2, 527, 528, 7, 113, 2, 2, 528, 529, 7, 112, 2, 2, 529, 530, 7, 118, 2, 2, 530, 531, 7, 107, 2, 2, 531, 532, 7, 112, 2, 2, 532, 533, 7, 119, 2, 2, 533, 534, 7, 103, 2, 2, 534, 78, 3, 2, 2, 2, 535, 536, 7, 100, 2, 2, 536, 537, 7, 116, 2, 2, 537, 538, 7, 103, 2, 2, 538, 539, 7, 99, 2, 2, 539, 540, 7, 109, 2, 2, 540, 80, 3, 2, 2, 2, 541, 542, 7, 103, 2, 2, 542, 543, 7, 111, 2, 2, 543, 544, 7, 114, 2, 2, 544, 545, 7, 118, 2, 2, 545, 546, 7, 123, 2, 2, 546, 547, 7, 79, 2, 2, 547, 548, 7, 99, 2, 2, 548, 549, 7, 114, 2, 2, 549, 82, 3, 2, 2, 2, 550, 551, 7, 103, 2, 2, 551, 552, 7, 111, 2, 2, 552, 553, 7, 114, 2, 2, 553, 554, 7, 118, 2, 2, 554, 555, 7, 123, 2, 2, 555, 556, 7, 85, 2, 2, 556, 557, 7, 103, 2, 2, 557, 558, 7, 118, 2, 2, 558, 84, 3, 2, 2, 2, 559, 560, 7, 103, 2, 2, 560, 561, 7, 111, 2, 2, 561, 562, 7, 114, 2, 2, 562, 563, 7, 118, 2, 2, 563, 564, 7, 123, 2, 2, 564, 565, 7, 78, 2, 2, 565, 566, 7, 107, 2, 2, 566, 567, 7, 117, 2, 2, 567, 568, 7, 118, 2, 2, 568, 86, 3, 2, 2, 2, 569, 570, 7, 103, 2, 2, 570, 571, 7, 111, 2, 2, 571, 572, 7, 114, 2, 2, 572, 573, 7, 118, 2, 2, 573, 574, 7, 123, 2, 2, 574, 575, 7, 85, 2, 2, 575, 576, 7, 118, 2, 2, 576, 577, 7, 116, 2, 2, 577, 578, 7, 119, 2, 2, 578, 579, 7, 101, 2, 2, 579, 580, 7, 118, 2, 2, 580, 581, 7, 119, 2, 2, 581, 582, 7, 116, 2, 2, 582, 583, 7, 103, 2, 2, 583, 88, 3, 2, 2, 2, 584, 585, 7, 111, 2, 2, 585, 586, 7, 113, 2, 2, 586, 587, 7, 102, 2, 2, 587, 588, 7, 107, 2, 2, 588, 589, 7, 104, 2, 2, 589, 590, 7, 107, 2, 2, 590, 591, 7, 103, 2, 2, 591, 592, 7, 117, 2, 2, 592, 90, 3, 2, 2, 2, 593, 594, 7, 119, 2, 2, 594, 595, 7, 117, 2, 2, 595, 596, 7, 103, 2, 2, 596, 597, 7, 117, 2, 2, 597, 92, 3, 2, 2, 2, 598, 599, 7, 107, 2, 2, 599, 600, 7, 112, 2, 2, 600, 601, 7, 101, 2, 2, 601, 602, 7, 110, 2, 2, 602, 603, 7, 119, 2, 2, 603, 604, 7, 102, 2, 2, 604, 605, 7, 103, 2, 2, 605, 94, 3, 2, 2, 2, 606, 607, 7, 122, 2, 2, 607, 608, 7, 113, 2, 2, 608, 609, 7, 116, 2, 2, 609, 96, 3, 2, 2, 2, 610, 611, 7, 99, 2, 2, 611, 612, 7, 100, 2, 2, 612, 613, 7, 117, 2, 2, 613, 98, 3, 2, 2, 2, 614, 615, 7, 99, 2, 2, 615, 616, 7, 101, 2, 2, 616, 617, 7, 113, 2, 2, 617, 618, 7, 117, 2, 2, 618, 100, 3, 2, 2, 2, 619, 620, 7, 99, 2, 2, 620, 621, 7, 117, 2, 2, 621, 622, 7, 107, 2, 2, 622, 623, 7, 112, 2, 2, 623, 102, 3, 2, 2, 2, 624, 625, 7, 99, 2, 2, 625, 626, 7, 118, 2, 2, 626, 627, 7, 99, 2, 2, 627, 628, 7, 112, 2, 2, 628, 104, 3, 2, 2, 2, 629, 630, 7, 101, 2, 2, 630, 631, 7, 113, 2, 2, 631, 632, 7, 117, 2, 2, 632, 106, 3, 2, 2, 2, 633, 634, 7, 110, 2, 2, 634, 635, 7, 113, 2, 2, 635, 636, 7, 105, 2, 2, 636, 108, 3, 2, 2, 2, 637, 638, 7, 114, 2, 2, 638, 639, 7, 107, 2, 2, 639, 110, 3, 2, 2, 2, 640, 641, 7, 114, 2, 2, 641, 642, 7, 113, 2, 2, 642, 643, 7, 121, 2, 2, 643, 112, 3, 2, 2, 2, 644, 645, 7, 117, 2, 2, 645, 646, 7, 107, 2, 2, 646, 647, 7, 112, 2, 2, 647, 114, 3, 2, 2, 2, 648, 649, 7, 117, 2, 2, 649, 650, 7, 115, 2, 2, 650, 651, 7, 116, 2, 2, 651, 652, 7, 118, 2, 2, 652, 116, 3, 2, 2, 2, 653, 654, 7, 118, 2, 2, 654, 655, 7, 99, 2, 2, 655, 656, 7, 112, 2, 2, 656, 118, 3, 2, 2, 2, 657, 658, 7, 110, 2, 2, 658, 659, 7, 103, 2, 2, 659, 660, 7, 112, 2, 2, 660, 120, 3, 2, 2, 2, 661, 662, 7, 99, 2, 2, 662, 663, 7, 116, 2, 2, 663, 664, 7, 116, 2, 2, 664, 665, 7, 99, 2, 2, 665, 666, 7, 123, 2, 2, 666, 122, 3, 2, 2, 2, 667, 668, 7, 117, 2, 2, 668, 669, 7, 103, 2, 2, 669, 670, 7, 118, 2, 2, 670, 124, 3, 2, 2, 2, 671, 672, 7, 99, 2, 2, 672, 673, 7, 118, 2, 2, 673, 126, 3, 2, 2, 2, 674, 675, 7, 100, 2, 2, 675, 676, 7, 103, 2, 2, 676, 677, 7, 110, 2, 2, 677, 678, 7, 113, 2, 2, 678, 679, 7, 112, 2, 2, 679, 680, 7, 105, 2, 2, 680, 681, 7, 117, 2, 2, 681, 682, 7, 86, 2, 2, 682, 683, 7, 113, 2, 2, 683, 128, 3, 2, 2, 2, 684, 685, 7, 102, 2, 2, 685, 686, 7, 103, 2, 2, 686, 687, 7, 110, 2, 2, 687, 688, 7, 103, 2, 2, 688, 689, 7, 118, 2, 2, 689, 690, 7, 103, 2, 2, 690, 130, 3, 2, 2, 2, 691, 692, 7, 103, 2, 2, 692, 693, 7, 111, 2, 2, 693, 694, 7, 114, 2, 2, 694, 695, 7, 118, 2, 2, 695, 696, 7, 123, 2, 2, 696, 132, 3, 2, 2, 2, 697, 698, 7, 103, 2, 2, 698, 699, 7, 112, 2, 2, 699, 700, 7, 102, 2, 2, 700, 134, 3, 2, 2, 2, 701, 702, 7, 104, 2, 2, 702, 703, 7, 107, 2, 2, 703, 704, 7, 116, 2, 2, 704, 705, 7, 117, 2, 2, 705, 706, 7, 118, 2, 2, 706, 136, 3, 2, 2, 2, 707, 708, 7, 104, 2, 2, 708, 709, 7, 110, 2, 2, 709, 710, 7, 113, 2, 2, 710, 711, 7, 99, 2, 2, 711, 712, 7, 118, 2, 2, 712, 138, 3, 2, 2, 2, 713, 714, 7, 107, 2, 2, 714, 715, 7, 112, 2, 2, 715, 716, 7, 117, 2, 2, 716, 717, 7, 103, 2, 2, 717, 718, 7, 116, 2, 2, 718, 719, 7, 118, 2, 2, 719, 140, 3, 2, 2, 2, 720, 721, 7, 109, 2, 2, 721, 722, 7, 103, 2, 2, 722, 723, 7, 123, 2, 2, 723, 724, 7, 117, 2, 2, 724, 142, 3, 2, 2, 2, 725, 726, 7, 107, 2, 2, 726, 727, 7, 112, 2, 2, 727, 728, 7, 118, 2, 2, 728, 144, 3, 2, 2, 2, 729, 730, 7, 100, 2, 2, 730, 731, 7, 113, 2, 2, 731, 732, 7, 113, 2, 2, 732, 733, 7, 110, 2, 2, 733, 734, 7, 103, 2, 2, 734, 735, 7, 99, 2, 2, 735, 736, 7, 112, 2, 2, 736, 146, 3, 2, 2, 2, 737, 738, 7, 114, 2, 2, 738, 739, 7, 116, 2, 2, 739, 740, 7, 107, 2, 2, 740, 741, 7, 112, 2, 2, 741, 742, 7, 118, 2, 2, 742, 148, 3, 2, 2, 2, 743, 744, 7, 114, 2, 2, 744, 745, 7, 113, 2, 2, 745, 746, 7, 114, 2, 2, 746, 747, 7, 68, 2, 2, 747, 748, 7, 99, 2, 2, 748, 749, 7, 101, 2, 2, 749, 750, 7, 109, 2, 2, 750, 150, 3, 2, 2, 2, 751, 752, 7, 114, 2, 2, 752, 753, 7, 113, 2, 2, 753, 754, 7, 114, 2, 2, 754, 755, 7, 72, 2, 2, 755, 756, 7, 116, 2, 2, 756, 757, 7, 113, 2, 2, 757, 758, 7, 112, 2, 2, 758, 759, 7, 118, 2, 2, 759, 152, 3, 2, 2, 2, 760, 761, 7, 114, 2, 2, 761, 762, 7, 119, 2, 2, 762, 763, 7, 117, 2, 2, 763, 764, 7, 106, 2, 2, 764, 765, 7, 68, 2, 2, 765, 766, 7, 99, 2, 2, 766, 767, 7, 101, 2, 2, 767, 768, 7, 109, 2, 2, 768, 154, 3, 2, 2, 2, 769, 770, 7, 114, 2, 2, 770, 771, 7, 119, 2, 2, 771, 772, 7, 117, 2, 2, 772, 773, 7, 106, 2, 2, 773, 774, 7, 72, 2, 2, 774, 775, 7, 116, 2, 2, 775, 776, 7, 113, 2, 2, 776, 777, 7, 112, 2, 2, 777, 778, 7, 118, 2, 2, 778, 156, 3, 2, 2, 2, 779, 780, 7, 116, 2, 2, 780, 781, 7, 103, 2, 2, 781, 782, 7, 111, 2, 2, 782, 783, 7, 113, 2, 2, 783, 784, 7, 120, 2, 2, 784, 785, 7, 103, 2, 2, 785, 158, 3, 2, 2, 2, 786, 787, 7, 116, 2, 2, 787, 788, 7, 103, 2, 2, 788, 789, 7, 111, 2, 2, 789, 790, 7, 113, 2, 2, 790, 791, 7, 120, 2, 2, 791, 792, 7, 103, 2, 2, 792, 793, 7, 67, 2, 2, 793, 794, 7, 110, 2, 2, 794, 795, 7, 110, 2, 2, 795, 796, 7, 71, 2, 2, 796, 797, 7, 115, 2, 2, 797, 798, 7, 86, 2, 2, 798, 799, 7, 113, 2, 2, 799, 160, 3, 2, 2, 2, 800, 801, 7, 116, 2, 2, 801, 802, 7, 103, 2, 2, 802, 803, 7, 111, 2, 2, 803, 804, 7, 113, 2, 2, 804, 805, 7, 120, 2, 2, 805, 806, 7, 103, 2, 2, 806, 807, 7, 67, 2, 2, 807, 808, 7, 118, 2, 2, 808, 162, 3, 2, 2, 2, 809, 810, 7, 117, 2, 2, 810, 811, 7, 107, 2, 2, 811, 812, 7, 112, 2, 2, 812, 813, 7, 105, 2, 2, 813, 814, 7, 110, 2, 2, 814, 815, 7, 103, 2, 2, 815, 816, 7, 118, 2, 2, 816, 817, 7, 113, 2, 2, 817, 818, 7, 112, 2, 2, 818, 819, 7, 85, 2, 2, 819, 820, 7, 103, 2, 2, 820, 821, 7, 118, 2, 2, 821, 164, 3, 2, 2, 2, 822, 823, 7, 117, 2, 2, 823, 824, 7, 107, 2, 2, 824, 825, 7, 124, 2, 2, 825, 826, 7, 103, 2, 2, 826, 166, 3, 2, 2, 2, 827, 828, 7, 117, 2, 2, 828, 829, 7, 114, 2, 2, 829, 830, 7, 110, 2, 2, 830, 831, 7, 107, 2, 2, 831, 832, 7, 118, 2, 2, 832, 168, 3, 2, 2, 2, 833, 834, 7, 118, 2, 2, 834, 835, 7, 113, 2, 2, 835, 836, 7, 114, 2, 2, 836, 837, 7, 68, 2, 2, 837, 838, 7, 99, 2, 2, 838, 839, 7, 101, 2, 2, 839, 840, 7, 109, 2, 2, 840, 170, 3, 2, 2, 2, 841, 842, 7, 118, 2, 2, 842, 843, 7, 113, 2, 2, 843, 844, 7, 114, 2, 2, 844, 845, 7, 72, 2, 2, 845, 846, 7, 116, 2, 2, 846, 847, 7, 113, 2, 2, 847, 848, 7, 112, 2, 2, 848, 849, 7, 118, 2, 2, 849, 172, 3, 2, 2, 2, 850, 851, 7, 119, 2, 2, 851, 852, 7, 114, 2, 2, 852, 853, 7, 102, 2, 2, 853, 854, 7, 99, 2, 2, 854, 855, 7, 118, 2, 2, 855, 856, 7, 103, 2, 2, 856, 174, 3, 2, 2, 2, 857, 858, 7, 119, 2, 2, 858, 859, 7, 112, 2, 2, 859, 860, 7, 107, 2, 2, 860, 861, 7, 104, 2, 2, 861, 862, 7, 113, 2, 2, 862, 863, 7, 116, 2, 2, 863, 864, 7, 111, 2, 2, 864, 865, 7, 80, 2, 2, 865, 866, 7, 99, 2, 2, 866, 867, 7, 118, 2, 2, 867, 176, 3, 2, 2, 2, 868, 869, 7, 104, 2, 2, 869, 870, 7, 110, 2, 2, 870, 871, 7, 107, 2, 2, 871, 872, 7, 114, 2, 2, 872, 178, 3, 2, 2, 2, 873, 874, 7, 119, 2, 2, 874, 875, 7, 112, 2, 2, 875, 876, 7, 107, 2, 2, 876, 877, 7, 104, 2, 2, 877, 878, 7, 113, 2, 2, 878, 879, 7, 116, 2, 2, 879, 880, 7, 111, 2, 2, 880, 881, 7, 72, 2, 2, 881, 882, 7, 110, 2, 2, 882, 883, 7, 113, 2, 2, 883, 884, 7, 99, 2, 2, 884, 885, 7, 118, 2, 2, 885, 180, 3, 2, 2, 2, 886, 887, 7, 119, 2, 2, 887, 888, 7, 112, 2, 2, 888, 889, 7, 107, 2, 2, 889, 890, 7, 104, 2, 2, 890, 891, 7, 113, 2, 2, 891, 892, 7, 116, 2, 2, 892, 893, 7, 111, 2, 2, 893, 894, 7, 82, 2, 2, 894, 895, 7, 103, 2, 2, 895, 896, 7, 116, 2, 2, 896, 897, 7, 111, 2, 2, 897, 182, 3, 2, 2, 2, 898, 899, 7, 117, 2, 2, 899, 900, 7, 48, 2, 2, 900, 901, 7, 118, 2, 2, 901, 902, 7, 48, 2, 2, 902, 184, 3, 2, 2, 2, 903, 904, 7, 38, 2, 2, 904, 186, 3, 2, 2, 2, 905, 906, 7, 47, 2, 2, 906, 907, 7, 64, 2, 2, 907, 188, 3, 2, 2, 2, 908, 909, 7, 37, 2, 2, 909, 190, 3, 2, 2, 2, 910, 911, 7, 66, 2, 2, 911, 192, 3, 2, 2, 2, 912, 913, 7, 69, 2, 2, 913, 914, 7, 113, 2, 2, 914, 915, 7, 119, 2, 2, 915, 916, 7, 112, 2, 2, 916, 917, 7, 118, 2, 2, 917, 194, 3, 2, 2, 2, 918, 919, 7, 87, 2, 2, 919, 196, 3, 2, 2, 2, 920, 921, 7, 96, 2, 2, 921, 198, 3, 2, 2, 2, 922, 923, 7, 94, 2, 2, 923, 200, 3, 2, 2, 2, 924, 926, 9, 5, 2, 2, 925, 924, 3, 2, 2, 2, 926, 927, 3, 2, 2, 2, 927, 925, 3, 2, 2, 2, 927, 928, 3, 2, 2, 2, 928, 202, 3, 2, 2, 2, 929, 931, 9, 5, 2, 2, 930, 929, 3, 2, 2, 2, 931, 932, 3, 2, 2, 2, 932, 930, 3, 2, 2, 2, 932, 933, 3, 2, 2, 2, 933, 934, 3, 2, 2, 2, 934, 936, 5, 273, 137, 2, 935, 937, 9, 5, 2, 2, 936, 935, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 936, 3, 2, 2, 2, 938, 939, 3, 2, 2, 2, 939, 204, 3, 2, 2, 2, 940, 941, 7, 118, 2, 2, 941, 942, 7, 116, 2, 2, 942, 943, 7, 119, 2, 2, 943, 950, 7, 103, 2, 2, 944, 945, 7, 104, 2, 2, 945, 946, 7, 99, 2, 2, 946, 947, 7, 110, 2, 2, 947, 948, 7, 117, 2, 2, 948, 950, 7, 103, 2, 2, 949, 940, 3, 2, 2, 2, 949, 944, 3, 2, 2, 2, 950, 206, 3, 2, 2, 2, 951, 956, 5, 9, 5, 2, 952, 955, 5, 11, 6, 2, 953, 955, 5, 9, 5, 2, 954, 952, 3, 2, 2, 2, 954, 953, 3, 2, 2, 2, 955, 958, 3, 2, 2, 2, 956, 954, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 208, 3, 2, 2, 2, 958, 956, 3, 2, 2, 2, 959, 960, 7, 45, 2, 2, 960, 961, 7, 45, 2, 2, 961, 210, 3, 2, 2, 2, 962, 963, 7, 47, 2, 2, 963, 964, 7, 47, 2, 2, 964, 212, 3, 2, 2, 2, 965, 966, 7, 40, 2, 2, 966, 214, 3, 2, 2, 2, 967, 968, 7, 45, 2, 2, 968, 969, 7, 39, 2, 2, 969, 216, 3, 2, 2, 2, 970, 971, 7, 47, 2, 2, 971, 972, 7, 39, 2, 2, 972, 218, 3, 2, 2, 2, 973, 974, 7, 45, 2, 2, 974, 975, 7, 45, 2, 2, 975, 976, 7, 39, 2, 2, 976, 220, 3, 2, 2, 2, 977, 978, 7, 47, 2, 2, 978, 979, 7, 47, 2, 2, 979, 980, 7, 39, 2, 2, 980, 222, 3, 2, 2, 2, 981, 982, 7, 62, 2, 2, 982, 224, 3, 2, 2, 2, 983, 984, 7, 64, 2, 2, 984, 226, 3, 2, 2, 2, 985, 986, 7, 62, 2, 2, 986, 987, 7, 63, 2, 2, 987, 228, 3, 2, 2, 2, 988, 989, 7, 64, 2, 2, 989, 990, 7, 63, 2, 2, 990, 230, 3, 2, 2, 2, 991, 992, 7, 63, 2, 2, 992, 993, 7, 63, 2, 2, 993, 232, 3, 2, 2, 2, 994, 995, 7, 35, 2, 2, 995, 996, 7, 63, 2, 2, 996, 234, 3, 2, 2, 2, 997, 1019, 7, 63, 2, 2, 998, 999, 7, 45, 2, 2, 999, 1019, 7, 63, 2, 2, 1000, 1001, 7, 47, 2, 2, 1001, 1019, 7, 63, 2, 2, 1002, 1003, 7, 44, 2, 2, 1003, 1019, 7, 63, 2, 2, 1004, 1005, 7, 49, 2, 2, 1005, 1019, 7, 63, 2, 2, 1006, 1007, 7, 39, 2, 2, 1007, 1019, 7, 63, 2, 2, 1008, 1009, 7, 62, 2, 2, 1009, 1010, 7, 62, 2, 2, 1010, 1019, 7, 63, 2, 2, 1011, 1012, 7, 64, 2, 2, 1012, 1013, 7, 64, 2, 2, 1013, 1019, 7, 63, 2, 2, 1014, 1015, 7, 40, 2, 2, 1015, 1019, 7, 63, 2, 2, 1016, 1017, 7, 126, 2, 2, 1017, 1019, 7, 63, 2, 2, 1018, 997, 3, 2, 2, 2, 1018, 998, 3, 2, 2, 2, 1018, 1000, 3, 2, 2, 2, 1018, 1002, 3, 2, 2, 2, 1018, 1004, 3, 2, 2, 2, 1018, 1006, 3, 2, 2, 2, 1018, 1008, 3, 2, 2, 2, 1018, 1011, 3, 2, 2, 2, 1018, 1014, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 236, 3, 2, 2, 2, 1020, 1021, 7, 47, 2, 2, 1021, 238, 3, 2, 2, 2, 1022, 1023, 7, 45, 2, 2, 1023, 240, 3, 2, 2, 2, 1024, 1025, 7, 44, 2, 2, 1025, 242, 3, 2, 2, 2, 1026, 1027, 7, 49, 2, 2, 1027, 244, 3, 2, 2, 2, 1028, 1029, 7, 39, 2, 2, 1029, 246, 3, 2, 2, 2, 1030, 1031, 7, 42, 2, 2, 1031, 248, 3, 2, 2, 2, 1032, 1033, 7, 43, 2, 2, 1033, 250, 3, 2, 2, 2, 1034, 1035, 7, 62, 2, 2, 1035, 1036, 7, 62, 2, 2, 1036, 252, 3, 2, 2, 2, 1037, 1038, 7, 64, 2, 2, 1038, 1039, 7, 64, 2, 2, 1039, 254, 3, 2, 2, 2, 1040, 1041, 7, 126, 2, 2, 1041, 1042, 7, 126, 2, 2, 1042, 256, 3, 2, 2, 2, 1043, 1044, 7, 40, 2, 2, 1044, 1045, 7, 40, 2, 2, 1045, 258, 3, 2, 2, 2, 1046, 1047, 7, 35, 2, 2, 1047, 260, 3, 2, 2, 2, 1048, 1049, 7, 61, 2, 2, 1049, 262, 3, 2, 2, 2, 1050, 1051, 7, 60, 2, 2, 1051, 264, 3, 2, 2, 2, 1052, 1053, 7, 126, 2, 2, 1053, 266, 3, 2, 2, 2, 1054, 1055, 7, 125, 2, 2, 1055, 268, 3, 2, 2, 2, 1056, 1057, 7, 127, 2, 2, 1057, 270, 3, 2, 2, 2, 1058, 1059, 7, 46, 2, 2, 1059, 272, 3, 2, 2, 2, 1060, 1061, 7, 48, 2, 2, 1061, 274, 3, 2, 2, 2, 1062, 1063, 7, 93, 2, 2, 1063, 276, 3, 2, 2, 2, 1064, 1065, 7, 95, 2, 2, 1065, 278, 3, 2, 2, 2, 1066, 1067, 7, 36, 2, 2, 1067, 280, 3, 2, 2, 2, 1068, 1069, 7, 65, 2, 2, 1069, 282, 3, 2, 2, 2, 1070, 1074, 7, 36, 2, 2, 1071, 1073, 10, 7, 2, 2, 1072, 1071, 3, 2, 2, 2, 1073, 1076, 3, 2, 2, 2, 1074, 1072, 3, 2, 2, 2, 1074, 1075, 3, 2, 2, 2, 1075, 1077, 3, 2, 2, 2, 1076, 1074, 3, 2, 2, 2, 1077, 1078, 7, 36, 2, 2, 1078, 284, 3, 2, 2, 2, 14, 2, 288, 298, 312, 927, 932, 938, 949, 954, 956, 1018, 1074, 3, 8, 2, 2]
\ No newline at end of file
+[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 142, 1100, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 3, 2, 6, 2, 291, 10, 2, 13, 2, 14, 2, 292, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 301, 10, 3, 12, 3, 14, 3, 304, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 315, 10, 4, 12, 4, 14, 4, 318, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 6, 103, 947, 10, 103, 13, 103, 14, 103, 948, 3, 104, 6, 104, 952, 10, 104, 13, 104, 14, 104, 953, 3, 104, 3, 104, 6, 104, 958, 10, 104, 13, 104, 14, 104, 959, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 5, 105, 971, 10, 105, 3, 106, 3, 106, 3, 106, 7, 106, 976, 10, 106, 12, 106, 14, 106, 979, 11, 106, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 1040, 10, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, 7, 144, 1094, 10, 144, 12, 144, 14, 144, 1097, 11, 144, 3, 144, 3, 144, 3, 302, 2, 145, 3, 3, 5, 4, 7, 5, 9, 2, 11, 2, 13, 2, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 60, 125, 61, 127, 62, 129, 63, 131, 64, 133, 65, 135, 66, 137, 67, 139, 68, 141, 69, 143, 70, 145, 71, 147, 72, 149, 73, 151, 74, 153, 75, 155, 76, 157, 77, 159, 78, 161, 79, 163, 80, 165, 81, 167, 82, 169, 83, 171, 84, 173, 85, 175, 86, 177, 87, 179, 88, 181, 89, 183, 90, 185, 91, 187, 92, 189, 93, 191, 94, 193, 95, 195, 96, 197, 97, 199, 98, 201, 99, 203, 100, 205, 101, 207, 102, 209, 103, 211, 104, 213, 105, 215, 106, 217, 107, 219, 108, 221, 109, 223, 110, 225, 111, 227, 112, 229, 113, 231, 114, 233, 115, 235, 116, 237, 117, 239, 118, 241, 119, 243, 120, 245, 121, 247, 122, 249, 123, 251, 124, 253, 125, 255, 126, 257, 127, 259, 128, 261, 129, 263, 130, 265, 131, 267, 132, 269, 133, 271, 134, 273, 135, 275, 136, 277, 137, 279, 138, 281, 139, 283, 140, 285, 141, 287, 142, 3, 2, 8, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 3, 2, 51, 59, 5, 2, 12, 12, 15, 15, 36, 36, 2, 1115, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 3, 290, 3, 2, 2, 2, 5, 296, 3, 2, 2, 2, 7, 310, 3, 2, 2, 2, 9, 321, 3, 2, 2, 2, 11, 323, 3, 2, 2, 2, 13, 325, 3, 2, 2, 2, 15, 327, 3, 2, 2, 2, 17, 335, 3, 2, 2, 2, 19, 343, 3, 2, 2, 2, 21, 353, 3, 2, 2, 2, 23, 364, 3, 2, 2, 2, 25, 374, 3, 2, 2, 2, 27, 383, 3, 2, 2, 2, 29, 395, 3, 2, 2, 2, 31, 405, 3, 2, 2, 2, 33, 413, 3, 2, 2, 2, 35, 418, 3, 2, 2, 2, 37, 422, 3, 2, 2, 2, 39, 427, 3, 2, 2, 2, 41, 434, 3, 2, 2, 2, 43, 441, 3, 2, 2, 2, 45, 444, 3, 2, 2, 2, 47, 448, 3, 2, 2, 2, 49, 451, 3, 2, 2, 2, 51, 456, 3, 2, 2, 2, 53, 462, 3, 2, 2, 2, 55, 465, 3, 2, 2, 2, 57, 469, 3, 2, 2, 2, 59, 477, 3, 2, 2, 2, 61, 480, 3, 2, 2, 2, 63, 485, 3, 2, 2, 2, 65, 489, 3, 2, 2, 2, 67, 496, 3, 2, 2, 2, 69, 503, 3, 2, 2, 2, 71, 511, 3, 2, 2, 2, 73, 518, 3, 2, 2, 2, 75, 525, 3, 2, 2, 2, 77, 533, 3, 2, 2, 2, 79, 539, 3, 2, 2, 2, 81, 547, 3, 2, 2, 2, 83, 556, 3, 2, 2, 2, 85, 562, 3, 2, 2, 2, 87, 571, 3, 2, 2, 2, 89, 580, 3, 2, 2, 2, 91, 590, 3, 2, 2, 2, 93, 605, 3, 2, 2, 2, 95, 614, 3, 2, 2, 2, 97, 619, 3, 2, 2, 2, 99, 627, 3, 2, 2, 2, 101, 631, 3, 2, 2, 2, 103, 635, 3, 2, 2, 2, 105, 640, 3, 2, 2, 2, 107, 645, 3, 2, 2, 2, 109, 650, 3, 2, 2, 2, 111, 654, 3, 2, 2, 2, 113, 658, 3, 2, 2, 2, 115, 661, 3, 2, 2, 2, 117, 665, 3, 2, 2, 2, 119, 669, 3, 2, 2, 2, 121, 674, 3, 2, 2, 2, 123, 678, 3, 2, 2, 2, 125, 682, 3, 2, 2, 2, 127, 688, 3, 2, 2, 2, 129, 692, 3, 2, 2, 2, 131, 695, 3, 2, 2, 2, 133, 705, 3, 2, 2, 2, 135, 712, 3, 2, 2, 2, 137, 718, 3, 2, 2, 2, 139, 722, 3, 2, 2, 2, 141, 728, 3, 2, 2, 2, 143, 734, 3, 2, 2, 2, 145, 741, 3, 2, 2, 2, 147, 746, 3, 2, 2, 2, 149, 750, 3, 2, 2, 2, 151, 758, 3, 2, 2, 2, 153, 764, 3, 2, 2, 2, 155, 772, 3, 2, 2, 2, 157, 781, 3, 2, 2, 2, 159, 790, 3, 2, 2, 2, 161, 800, 3, 2, 2, 2, 163, 807, 3, 2, 2, 2, 165, 821, 3, 2, 2, 2, 167, 830, 3, 2, 2, 2, 169, 843, 3, 2, 2, 2, 171, 848, 3, 2, 2, 2, 173, 854, 3, 2, 2, 2, 175, 862, 3, 2, 2, 2, 177, 871, 3, 2, 2, 2, 179, 878, 3, 2, 2, 2, 181, 889, 3, 2, 2, 2, 183, 894, 3, 2, 2, 2, 185, 907, 3, 2, 2, 2, 187, 919, 3, 2, 2, 2, 189, 924, 3, 2, 2, 2, 191, 926, 3, 2, 2, 2, 193, 929, 3, 2, 2, 2, 195, 931, 3, 2, 2, 2, 197, 933, 3, 2, 2, 2, 199, 939, 3, 2, 2, 2, 201, 941, 3, 2, 2, 2, 203, 943, 3, 2, 2, 2, 205, 946, 3, 2, 2, 2, 207, 951, 3, 2, 2, 2, 209, 970, 3, 2, 2, 2, 211, 972, 3, 2, 2, 2, 213, 980, 3, 2, 2, 2, 215, 983, 3, 2, 2, 2, 217, 986, 3, 2, 2, 2, 219, 988, 3, 2, 2, 2, 221, 991, 3, 2, 2, 2, 223, 994, 3, 2, 2, 2, 225, 998, 3, 2, 2, 2, 227, 1002, 3, 2, 2, 2, 229, 1004, 3, 2, 2, 2, 231, 1006, 3, 2, 2, 2, 233, 1009, 3, 2, 2, 2, 235, 1012, 3, 2, 2, 2, 237, 1015, 3, 2, 2, 2, 239, 1039, 3, 2, 2, 2, 241, 1041, 3, 2, 2, 2, 243, 1043, 3, 2, 2, 2, 245, 1045, 3, 2, 2, 2, 247, 1047, 3, 2, 2, 2, 249, 1049, 3, 2, 2, 2, 251, 1051, 3, 2, 2, 2, 253, 1053, 3, 2, 2, 2, 255, 1055, 3, 2, 2, 2, 257, 1058, 3, 2, 2, 2, 259, 1061, 3, 2, 2, 2, 261, 1064, 3, 2, 2, 2, 263, 1067, 3, 2, 2, 2, 265, 1069, 3, 2, 2, 2, 267, 1071, 3, 2, 2, 2, 269, 1073, 3, 2, 2, 2, 271, 1075, 3, 2, 2, 2, 273, 1077, 3, 2, 2, 2, 275, 1079, 3, 2, 2, 2, 277, 1081, 3, 2, 2, 2, 279, 1083, 3, 2, 2, 2, 281, 1085, 3, 2, 2, 2, 283, 1087, 3, 2, 2, 2, 285, 1089, 3, 2, 2, 2, 287, 1091, 3, 2, 2, 2, 289, 291, 9, 2, 2, 2, 290, 289, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 295, 8, 2, 2, 2, 295, 4, 3, 2, 2, 2, 296, 297, 7, 49, 2, 2, 297, 298, 7, 44, 2, 2, 298, 302, 3, 2, 2, 2, 299, 301, 11, 2, 2, 2, 300, 299, 3, 2, 2, 2, 301, 304, 3, 2, 2, 2, 302, 303, 3, 2, 2, 2, 302, 300, 3, 2, 2, 2, 303, 305, 3, 2, 2, 2, 304, 302, 3, 2, 2, 2, 305, 306, 7, 44, 2, 2, 306, 307, 7, 49, 2, 2, 307, 308, 3, 2, 2, 2, 308, 309, 8, 3, 2, 2, 309, 6, 3, 2, 2, 2, 310, 311, 7, 49, 2, 2, 311, 312, 7, 49, 2, 2, 312, 316, 3, 2, 2, 2, 313, 315, 10, 3, 2, 2, 314, 313, 3, 2, 2, 2, 315, 318, 3, 2, 2, 2, 316, 314, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 319, 3, 2, 2, 2, 318, 316, 3, 2, 2, 2, 319, 320, 8, 4, 2, 2, 320, 8, 3, 2, 2, 2, 321, 322, 9, 4, 2, 2, 322, 10, 3, 2, 2, 2, 323, 324, 9, 5, 2, 2, 324, 12, 3, 2, 2, 2, 325, 326, 9, 6, 2, 2, 326, 14, 3, 2, 2, 2, 327, 328, 7, 66, 2, 2, 328, 329, 7, 99, 2, 2, 329, 330, 7, 117, 2, 2, 330, 331, 7, 117, 2, 2, 331, 332, 7, 103, 2, 2, 332, 333, 7, 116, 2, 2, 333, 334, 7, 118, 2, 2, 334, 16, 3, 2, 2, 2, 335, 336, 7, 66, 2, 2, 336, 337, 7, 99, 2, 2, 337, 338, 7, 117, 2, 2, 338, 339, 7, 117, 2, 2, 339, 340, 7, 119, 2, 2, 340, 341, 7, 111, 2, 2, 341, 342, 7, 103, 2, 2, 342, 18, 3, 2, 2, 2, 343, 344, 7, 66, 2, 2, 344, 345, 7, 117, 2, 2, 345, 346, 7, 123, 2, 2, 346, 347, 7, 111, 2, 2, 347, 348, 7, 100, 2, 2, 348, 349, 7, 113, 2, 2, 349, 350, 7, 110, 2, 2, 350, 351, 7, 107, 2, 2, 351, 352, 7, 101, 2, 2, 352, 20, 3, 2, 2, 2, 353, 354, 7, 66, 2, 2, 354, 355, 7, 107, 2, 2, 355, 356, 7, 112, 2, 2, 356, 357, 7, 120, 2, 2, 357, 358, 7, 99, 2, 2, 358, 359, 7, 116, 2, 2, 359, 360, 7, 107, 2, 2, 360, 361, 7, 99, 2, 2, 361, 362, 7, 112, 2, 2, 362, 363, 7, 118, 2, 2, 363, 22, 3, 2, 2, 2, 364, 365, 7, 66, 2, 2, 365, 366, 7, 116, 2, 2, 366, 367, 7, 103, 2, 2, 367, 368, 7, 115, 2, 2, 368, 369, 7, 119, 2, 2, 369, 370, 7, 107, 2, 2, 370, 371, 7, 116, 2, 2, 371, 372, 7, 103, 2, 2, 372, 373, 7, 117, 2, 2, 373, 24, 3, 2, 2, 2, 374, 375, 7, 66, 2, 2, 375, 376, 7, 103, 2, 2, 376, 377, 7, 112, 2, 2, 377, 378, 7, 117, 2, 2, 378, 379, 7, 119, 2, 2, 379, 380, 7, 116, 2, 2, 380, 381, 7, 103, 2, 2, 381, 382, 7, 117, 2, 2, 382, 26, 3, 2, 2, 2, 383, 384, 7, 66, 2, 2, 384, 385, 7, 110, 2, 2, 385, 386, 7, 113, 2, 2, 386, 387, 7, 113, 2, 2, 387, 388, 7, 114, 2, 2, 388, 389, 7, 99, 2, 2, 389, 390, 7, 117, 2, 2, 390, 391, 7, 117, 2, 2, 391, 392, 7, 103, 2, 2, 392, 393, 7, 116, 2, 2, 393, 394, 7, 118, 2, 2, 394, 28, 3, 2, 2, 2, 395, 396, 7, 66, 2, 2, 396, 397, 7, 111, 2, 2, 397, 398, 7, 113, 2, 2, 398, 399, 7, 102, 2, 2, 399, 400, 7, 107, 2, 2, 400, 401, 7, 104, 2, 2, 401, 402, 7, 107, 2, 2, 402, 403, 7, 103, 2, 2, 403, 404, 7, 117, 2, 2, 404, 30, 3, 2, 2, 2, 405, 406, 7, 94, 2, 2, 406, 407, 7, 116, 2, 2, 407, 408, 7, 103, 2, 2, 408, 409, 7, 117, 2, 2, 409, 410, 7, 119, 2, 2, 410, 411, 7, 110, 2, 2, 411, 412, 7, 118, 2, 2, 412, 32, 3, 2, 2, 2, 413, 414, 7, 94, 2, 2, 414, 415, 7, 113, 2, 2, 415, 416, 7, 110, 2, 2, 416, 417, 7, 102, 2, 2, 417, 34, 3, 2, 2, 2, 418, 419, 7, 63, 2, 2, 419, 420, 7, 63, 2, 2, 420, 421, 7, 64, 2, 2, 421, 36, 3, 2, 2, 2, 422, 423, 7, 62, 2, 2, 423, 424, 7, 63, 2, 2, 424, 425, 7, 63, 2, 2, 425, 426, 7, 64, 2, 2, 426, 38, 3, 2, 2, 2, 427, 428, 7, 104, 2, 2, 428, 429, 7, 113, 2, 2, 429, 430, 7, 116, 2, 2, 430, 431, 7, 99, 2, 2, 431, 432, 7, 110, 2, 2, 432, 433, 7, 110, 2, 2, 433, 40, 3, 2, 2, 2, 434, 435, 7, 103, 2, 2, 435, 436, 7, 122, 2, 2, 436, 437, 7, 107, 2, 2, 437, 438, 7, 117, 2, 2, 438, 439, 7, 118, 2, 2, 439, 440, 7, 117, 2, 2, 440, 42, 3, 2, 2, 2, 441, 442, 7, 60, 2, 2, 442, 443, 7, 60, 2, 2, 443, 44, 3, 2, 2, 2, 444, 445, 7, 126, 2, 2, 445, 446, 7, 47, 2, 2, 446, 447, 7, 64, 2, 2, 447, 46, 3, 2, 2, 2, 448, 449, 7, 107, 2, 2, 449, 450, 7, 104, 2, 2, 450, 48, 3, 2, 2, 2, 451, 452, 7, 103, 2, 2, 452, 453, 7, 110, 2, 2, 453, 454, 7, 117, 2, 2, 454, 455, 7, 103, 2, 2, 455, 50, 3, 2, 2, 2, 456, 457, 7, 121, 2, 2, 457, 458, 7, 106, 2, 2, 458, 459, 7, 107, 2, 2, 459, 460, 7, 110, 2, 2, 460, 461, 7, 103, 2, 2, 461, 52, 3, 2, 2, 2, 462, 463, 7, 102, 2, 2, 463, 464, 7, 113, 2, 2, 464, 54, 3, 2, 2, 2, 465, 466, 7, 104, 2, 2, 466, 467, 7, 113, 2, 2, 467, 468, 7, 116, 2, 2, 468, 56, 3, 2, 2, 2, 469, 470, 7, 104, 2, 2, 470, 471, 7, 113, 2, 2, 471, 472, 7, 116, 2, 2, 472, 473, 7, 103, 2, 2, 473, 474, 7, 99, 2, 2, 474, 475, 7, 101, 2, 2, 475, 476, 7, 106, 2, 2, 476, 58, 3, 2, 2, 2, 477, 478, 7, 107, 2, 2, 478, 479, 7, 112, 2, 2, 479, 60, 3, 2, 2, 2, 480, 481, 7, 104, 2, 2, 481, 482, 7, 116, 2, 2, 482, 483, 7, 113, 2, 2, 483, 484, 7, 111, 2, 2, 484, 62, 3, 2, 2, 2, 485, 486, 7, 113, 2, 2, 486, 487, 7, 119, 2, 2, 487, 488, 7, 118, 2, 2, 488, 64, 3, 2, 2, 2, 489, 490, 7, 66, 2, 2, 490, 491, 7, 106, 2, 2, 491, 492, 7, 99, 2, 2, 492, 493, 7, 120, 2, 2, 493, 494, 7, 113, 2, 2, 494, 495, 7, 101, 2, 2, 495, 66, 3, 2, 2, 2, 496, 497, 7, 101, 2, 2, 497, 498, 7, 106, 2, 2, 498, 499, 7, 113, 2, 2, 499, 500, 7, 113, 2, 2, 500, 501, 7, 117, 2, 2, 501, 502, 7, 103, 2, 2, 502, 68, 3, 2, 2, 2, 503, 504, 7, 119, 2, 2, 504, 505, 7, 112, 2, 2, 505, 506, 7, 107, 2, 2, 506, 507, 7, 104, 2, 2, 507, 508, 7, 113, 2, 2, 508, 509, 7, 116, 2, 2, 509, 510, 7, 111, 2, 2, 510, 70, 3, 2, 2, 2, 511, 512, 7, 116, 2, 2, 512, 513, 7, 103, 2, 2, 513, 514, 7, 114, 2, 2, 514, 515, 7, 103, 2, 2, 515, 516, 7, 99, 2, 2, 516, 517, 7, 118, 2, 2, 517, 72, 3, 2, 2, 2, 518, 519, 7, 116, 2, 2, 519, 520, 7, 103, 2, 2, 520, 521, 7, 118, 2, 2, 521, 522, 7, 119, 2, 2, 522, 523, 7, 116, 2, 2, 523, 524, 7, 112, 2, 2, 524, 74, 3, 2, 2, 2, 525, 526, 7, 117, 2, 2, 526, 527, 7, 119, 2, 2, 527, 528, 7, 101, 2, 2, 528, 529, 7, 101, 2, 2, 529, 530, 7, 103, 2, 2, 530, 531, 7, 117, 2, 2, 531, 532, 7, 117, 2, 2, 532, 76, 3, 2, 2, 2, 533, 534, 7, 119, 2, 2, 534, 535, 7, 112, 2, 2, 535, 536, 7, 118, 2, 2, 536, 537, 7, 107, 2, 2, 537, 538, 7, 110, 2, 2, 538, 78, 3, 2, 2, 2, 539, 540, 7, 104, 2, 2, 540, 541, 7, 99, 2, 2, 541, 542, 7, 107, 2, 2, 542, 543, 7, 110, 2, 2, 543, 544, 7, 119, 2, 2, 544, 545, 7, 116, 2, 2, 545, 546, 7, 103, 2, 2, 546, 80, 3, 2, 2, 2, 547, 548, 7, 101, 2, 2, 548, 549, 7, 113, 2, 2, 549, 550, 7, 112, 2, 2, 550, 551, 7, 118, 2, 2, 551, 552, 7, 107, 2, 2, 552, 553, 7, 112, 2, 2, 553, 554, 7, 119, 2, 2, 554, 555, 7, 103, 2, 2, 555, 82, 3, 2, 2, 2, 556, 557, 7, 100, 2, 2, 557, 558, 7, 116, 2, 2, 558, 559, 7, 103, 2, 2, 559, 560, 7, 99, 2, 2, 560, 561, 7, 109, 2, 2, 561, 84, 3, 2, 2, 2, 562, 563, 7, 103, 2, 2, 563, 564, 7, 111, 2, 2, 564, 565, 7, 114, 2, 2, 565, 566, 7, 118, 2, 2, 566, 567, 7, 123, 2, 2, 567, 568, 7, 79, 2, 2, 568, 569, 7, 99, 2, 2, 569, 570, 7, 114, 2, 2, 570, 86, 3, 2, 2, 2, 571, 572, 7, 103, 2, 2, 572, 573, 7, 111, 2, 2, 573, 574, 7, 114, 2, 2, 574, 575, 7, 118, 2, 2, 575, 576, 7, 123, 2, 2, 576, 577, 7, 85, 2, 2, 577, 578, 7, 103, 2, 2, 578, 579, 7, 118, 2, 2, 579, 88, 3, 2, 2, 2, 580, 581, 7, 103, 2, 2, 581, 582, 7, 111, 2, 2, 582, 583, 7, 114, 2, 2, 583, 584, 7, 118, 2, 2, 584, 585, 7, 123, 2, 2, 585, 586, 7, 78, 2, 2, 586, 587, 7, 107, 2, 2, 587, 588, 7, 117, 2, 2, 588, 589, 7, 118, 2, 2, 589, 90, 3, 2, 2, 2, 590, 591, 7, 103, 2, 2, 591, 592, 7, 111, 2, 2, 592, 593, 7, 114, 2, 2, 593, 594, 7, 118, 2, 2, 594, 595, 7, 123, 2, 2, 595, 596, 7, 85, 2, 2, 596, 597, 7, 118, 2, 2, 597, 598, 7, 116, 2, 2, 598, 599, 7, 119, 2, 2, 599, 600, 7, 101, 2, 2, 600, 601, 7, 118, 2, 2, 601, 602, 7, 119, 2, 2, 602, 603, 7, 116, 2, 2, 603, 604, 7, 103, 2, 2, 604, 92, 3, 2, 2, 2, 605, 606, 7, 111, 2, 2, 606, 607, 7, 113, 2, 2, 607, 608, 7, 102, 2, 2, 608, 609, 7, 107, 2, 2, 609, 610, 7, 104, 2, 2, 610, 611, 7, 107, 2, 2, 611, 612, 7, 103, 2, 2, 612, 613, 7, 117, 2, 2, 613, 94, 3, 2, 2, 2, 614, 615, 7, 119, 2, 2, 615, 616, 7, 117, 2, 2, 616, 617, 7, 103, 2, 2, 617, 618, 7, 117, 2, 2, 618, 96, 3, 2, 2, 2, 619, 620, 7, 107, 2, 2, 620, 621, 7, 112, 2, 2, 621, 622, 7, 101, 2, 2, 622, 623, 7, 110, 2, 2, 623, 624, 7, 119, 2, 2, 624, 625, 7, 102, 2, 2, 625, 626, 7, 103, 2, 2, 626, 98, 3, 2, 2, 2, 627, 628, 7, 122, 2, 2, 628, 629, 7, 113, 2, 2, 629, 630, 7, 116, 2, 2, 630, 100, 3, 2, 2, 2, 631, 632, 7, 99, 2, 2, 632, 633, 7, 100, 2, 2, 633, 634, 7, 117, 2, 2, 634, 102, 3, 2, 2, 2, 635, 636, 7, 99, 2, 2, 636, 637, 7, 101, 2, 2, 637, 638, 7, 113, 2, 2, 638, 639, 7, 117, 2, 2, 639, 104, 3, 2, 2, 2, 640, 641, 7, 99, 2, 2, 641, 642, 7, 117, 2, 2, 642, 643, 7, 107, 2, 2, 643, 644, 7, 112, 2, 2, 644, 106, 3, 2, 2, 2, 645, 646, 7, 99, 2, 2, 646, 647, 7, 118, 2, 2, 647, 648, 7, 99, 2, 2, 648, 649, 7, 112, 2, 2, 649, 108, 3, 2, 2, 2, 650, 651, 7, 101, 2, 2, 651, 652, 7, 113, 2, 2, 652, 653, 7, 117, 2, 2, 653, 110, 3, 2, 2, 2, 654, 655, 7, 110, 2, 2, 655, 656, 7, 113, 2, 2, 656, 657, 7, 105, 2, 2, 657, 112, 3, 2, 2, 2, 658, 659, 7, 114, 2, 2, 659, 660, 7, 107, 2, 2, 660, 114, 3, 2, 2, 2, 661, 662, 7, 114, 2, 2, 662, 663, 7, 113, 2, 2, 663, 664, 7, 121, 2, 2, 664, 116, 3, 2, 2, 2, 665, 666, 7, 117, 2, 2, 666, 667, 7, 107, 2, 2, 667, 668, 7, 112, 2, 2, 668, 118, 3, 2, 2, 2, 669, 670, 7, 117, 2, 2, 670, 671, 7, 115, 2, 2, 671, 672, 7, 116, 2, 2, 672, 673, 7, 118, 2, 2, 673, 120, 3, 2, 2, 2, 674, 675, 7, 118, 2, 2, 675, 676, 7, 99, 2, 2, 676, 677, 7, 112, 2, 2, 677, 122, 3, 2, 2, 2, 678, 679, 7, 110, 2, 2, 679, 680, 7, 103, 2, 2, 680, 681, 7, 112, 2, 2, 681, 124, 3, 2, 2, 2, 682, 683, 7, 99, 2, 2, 683, 684, 7, 116, 2, 2, 684, 685, 7, 116, 2, 2, 685, 686, 7, 99, 2, 2, 686, 687, 7, 123, 2, 2, 687, 126, 3, 2, 2, 2, 688, 689, 7, 117, 2, 2, 689, 690, 7, 103, 2, 2, 690, 691, 7, 118, 2, 2, 691, 128, 3, 2, 2, 2, 692, 693, 7, 99, 2, 2, 693, 694, 7, 118, 2, 2, 694, 130, 3, 2, 2, 2, 695, 696, 7, 100, 2, 2, 696, 697, 7, 103, 2, 2, 697, 698, 7, 110, 2, 2, 698, 699, 7, 113, 2, 2, 699, 700, 7, 112, 2, 2, 700, 701, 7, 105, 2, 2, 701, 702, 7, 117, 2, 2, 702, 703, 7, 86, 2, 2, 703, 704, 7, 113, 2, 2, 704, 132, 3, 2, 2, 2, 705, 706, 7, 102, 2, 2, 706, 707, 7, 103, 2, 2, 707, 708, 7, 110, 2, 2, 708, 709, 7, 103, 2, 2, 709, 710, 7, 118, 2, 2, 710, 711, 7, 103, 2, 2, 711, 134, 3, 2, 2, 2, 712, 713, 7, 103, 2, 2, 713, 714, 7, 111, 2, 2, 714, 715, 7, 114, 2, 2, 715, 716, 7, 118, 2, 2, 716, 717, 7, 123, 2, 2, 717, 136, 3, 2, 2, 2, 718, 719, 7, 103, 2, 2, 719, 720, 7, 112, 2, 2, 720, 721, 7, 102, 2, 2, 721, 138, 3, 2, 2, 2, 722, 723, 7, 104, 2, 2, 723, 724, 7, 107, 2, 2, 724, 725, 7, 116, 2, 2, 725, 726, 7, 117, 2, 2, 726, 727, 7, 118, 2, 2, 727, 140, 3, 2, 2, 2, 728, 729, 7, 104, 2, 2, 729, 730, 7, 110, 2, 2, 730, 731, 7, 113, 2, 2, 731, 732, 7, 99, 2, 2, 732, 733, 7, 118, 2, 2, 733, 142, 3, 2, 2, 2, 734, 735, 7, 107, 2, 2, 735, 736, 7, 112, 2, 2, 736, 737, 7, 117, 2, 2, 737, 738, 7, 103, 2, 2, 738, 739, 7, 116, 2, 2, 739, 740, 7, 118, 2, 2, 740, 144, 3, 2, 2, 2, 741, 742, 7, 109, 2, 2, 742, 743, 7, 103, 2, 2, 743, 744, 7, 123, 2, 2, 744, 745, 7, 117, 2, 2, 745, 146, 3, 2, 2, 2, 746, 747, 7, 107, 2, 2, 747, 748, 7, 112, 2, 2, 748, 749, 7, 118, 2, 2, 749, 148, 3, 2, 2, 2, 750, 751, 7, 100, 2, 2, 751, 752, 7, 113, 2, 2, 752, 753, 7, 113, 2, 2, 753, 754, 7, 110, 2, 2, 754, 755, 7, 103, 2, 2, 755, 756, 7, 99, 2, 2, 756, 757, 7, 112, 2, 2, 757, 150, 3, 2, 2, 2, 758, 759, 7, 114, 2, 2, 759, 760, 7, 116, 2, 2, 760, 761, 7, 107, 2, 2, 761, 762, 7, 112, 2, 2, 762, 763, 7, 118, 2, 2, 763, 152, 3, 2, 2, 2, 764, 765, 7, 114, 2, 2, 765, 766, 7, 113, 2, 2, 766, 767, 7, 114, 2, 2, 767, 768, 7, 68, 2, 2, 768, 769, 7, 99, 2, 2, 769, 770, 7, 101, 2, 2, 770, 771, 7, 109, 2, 2, 771, 154, 3, 2, 2, 2, 772, 773, 7, 114, 2, 2, 773, 774, 7, 113, 2, 2, 774, 775, 7, 114, 2, 2, 775, 776, 7, 72, 2, 2, 776, 777, 7, 116, 2, 2, 777, 778, 7, 113, 2, 2, 778, 779, 7, 112, 2, 2, 779, 780, 7, 118, 2, 2, 780, 156, 3, 2, 2, 2, 781, 782, 7, 114, 2, 2, 782, 783, 7, 119, 2, 2, 783, 784, 7, 117, 2, 2, 784, 785, 7, 106, 2, 2, 785, 786, 7, 68, 2, 2, 786, 787, 7, 99, 2, 2, 787, 788, 7, 101, 2, 2, 788, 789, 7, 109, 2, 2, 789, 158, 3, 2, 2, 2, 790, 791, 7, 114, 2, 2, 791, 792, 7, 119, 2, 2, 792, 793, 7, 117, 2, 2, 793, 794, 7, 106, 2, 2, 794, 795, 7, 72, 2, 2, 795, 796, 7, 116, 2, 2, 796, 797, 7, 113, 2, 2, 797, 798, 7, 112, 2, 2, 798, 799, 7, 118, 2, 2, 799, 160, 3, 2, 2, 2, 800, 801, 7, 116, 2, 2, 801, 802, 7, 103, 2, 2, 802, 803, 7, 111, 2, 2, 803, 804, 7, 113, 2, 2, 804, 805, 7, 120, 2, 2, 805, 806, 7, 103, 2, 2, 806, 162, 3, 2, 2, 2, 807, 808, 7, 116, 2, 2, 808, 809, 7, 103, 2, 2, 809, 810, 7, 111, 2, 2, 810, 811, 7, 113, 2, 2, 811, 812, 7, 120, 2, 2, 812, 813, 7, 103, 2, 2, 813, 814, 7, 67, 2, 2, 814, 815, 7, 110, 2, 2, 815, 816, 7, 110, 2, 2, 816, 817, 7, 71, 2, 2, 817, 818, 7, 115, 2, 2, 818, 819, 7, 86, 2, 2, 819, 820, 7, 113, 2, 2, 820, 164, 3, 2, 2, 2, 821, 822, 7, 116, 2, 2, 822, 823, 7, 103, 2, 2, 823, 824, 7, 111, 2, 2, 824, 825, 7, 113, 2, 2, 825, 826, 7, 120, 2, 2, 826, 827, 7, 103, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 118, 2, 2, 829, 166, 3, 2, 2, 2, 830, 831, 7, 117, 2, 2, 831, 832, 7, 107, 2, 2, 832, 833, 7, 112, 2, 2, 833, 834, 7, 105, 2, 2, 834, 835, 7, 110, 2, 2, 835, 836, 7, 103, 2, 2, 836, 837, 7, 118, 2, 2, 837, 838, 7, 113, 2, 2, 838, 839, 7, 112, 2, 2, 839, 840, 7, 85, 2, 2, 840, 841, 7, 103, 2, 2, 841, 842, 7, 118, 2, 2, 842, 168, 3, 2, 2, 2, 843, 844, 7, 117, 2, 2, 844, 845, 7, 107, 2, 2, 845, 846, 7, 124, 2, 2, 846, 847, 7, 103, 2, 2, 847, 170, 3, 2, 2, 2, 848, 849, 7, 117, 2, 2, 849, 850, 7, 114, 2, 2, 850, 851, 7, 110, 2, 2, 851, 852, 7, 107, 2, 2, 852, 853, 7, 118, 2, 2, 853, 172, 3, 2, 2, 2, 854, 855, 7, 118, 2, 2, 855, 856, 7, 113, 2, 2, 856, 857, 7, 114, 2, 2, 857, 858, 7, 68, 2, 2, 858, 859, 7, 99, 2, 2, 859, 860, 7, 101, 2, 2, 860, 861, 7, 109, 2, 2, 861, 174, 3, 2, 2, 2, 862, 863, 7, 118, 2, 2, 863, 864, 7, 113, 2, 2, 864, 865, 7, 114, 2, 2, 865, 866, 7, 72, 2, 2, 866, 867, 7, 116, 2, 2, 867, 868, 7, 113, 2, 2, 868, 869, 7, 112, 2, 2, 869, 870, 7, 118, 2, 2, 870, 176, 3, 2, 2, 2, 871, 872, 7, 119, 2, 2, 872, 873, 7, 114, 2, 2, 873, 874, 7, 102, 2, 2, 874, 875, 7, 99, 2, 2, 875, 876, 7, 118, 2, 2, 876, 877, 7, 103, 2, 2, 877, 178, 3, 2, 2, 2, 878, 879, 7, 119, 2, 2, 879, 880, 7, 112, 2, 2, 880, 881, 7, 107, 2, 2, 881, 882, 7, 104, 2, 2, 882, 883, 7, 113, 2, 2, 883, 884, 7, 116, 2, 2, 884, 885, 7, 111, 2, 2, 885, 886, 7, 80, 2, 2, 886, 887, 7, 99, 2, 2, 887, 888, 7, 118, 2, 2, 888, 180, 3, 2, 2, 2, 889, 890, 7, 104, 2, 2, 890, 891, 7, 110, 2, 2, 891, 892, 7, 107, 2, 2, 892, 893, 7, 114, 2, 2, 893, 182, 3, 2, 2, 2, 894, 895, 7, 119, 2, 2, 895, 896, 7, 112, 2, 2, 896, 897, 7, 107, 2, 2, 897, 898, 7, 104, 2, 2, 898, 899, 7, 113, 2, 2, 899, 900, 7, 116, 2, 2, 900, 901, 7, 111, 2, 2, 901, 902, 7, 72, 2, 2, 902, 903, 7, 110, 2, 2, 903, 904, 7, 113, 2, 2, 904, 905, 7, 99, 2, 2, 905, 906, 7, 118, 2, 2, 906, 184, 3, 2, 2, 2, 907, 908, 7, 119, 2, 2, 908, 909, 7, 112, 2, 2, 909, 910, 7, 107, 2, 2, 910, 911, 7, 104, 2, 2, 911, 912, 7, 113, 2, 2, 912, 913, 7, 116, 2, 2, 913, 914, 7, 111, 2, 2, 914, 915, 7, 82, 2, 2, 915, 916, 7, 103, 2, 2, 916, 917, 7, 116, 2, 2, 917, 918, 7, 111, 2, 2, 918, 186, 3, 2, 2, 2, 919, 920, 7, 117, 2, 2, 920, 921, 7, 48, 2, 2, 921, 922, 7, 118, 2, 2, 922, 923, 7, 48, 2, 2, 923, 188, 3, 2, 2, 2, 924, 925, 7, 38, 2, 2, 925, 190, 3, 2, 2, 2, 926, 927, 7, 47, 2, 2, 927, 928, 7, 64, 2, 2, 928, 192, 3, 2, 2, 2, 929, 930, 7, 37, 2, 2, 930, 194, 3, 2, 2, 2, 931, 932, 7, 66, 2, 2, 932, 196, 3, 2, 2, 2, 933, 934, 7, 69, 2, 2, 934, 935, 7, 113, 2, 2, 935, 936, 7, 119, 2, 2, 936, 937, 7, 112, 2, 2, 937, 938, 7, 118, 2, 2, 938, 198, 3, 2, 2, 2, 939, 940, 7, 87, 2, 2, 940, 200, 3, 2, 2, 2, 941, 942, 7, 96, 2, 2, 942, 202, 3, 2, 2, 2, 943, 944, 7, 94, 2, 2, 944, 204, 3, 2, 2, 2, 945, 947, 9, 5, 2, 2, 946, 945, 3, 2, 2, 2, 947, 948, 3, 2, 2, 2, 948, 946, 3, 2, 2, 2, 948, 949, 3, 2, 2, 2, 949, 206, 3, 2, 2, 2, 950, 952, 9, 5, 2, 2, 951, 950, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 951, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 955, 3, 2, 2, 2, 955, 957, 5, 277, 139, 2, 956, 958, 9, 5, 2, 2, 957, 956, 3, 2, 2, 2, 958, 959, 3, 2, 2, 2, 959, 957, 3, 2, 2, 2, 959, 960, 3, 2, 2, 2, 960, 208, 3, 2, 2, 2, 961, 962, 7, 118, 2, 2, 962, 963, 7, 116, 2, 2, 963, 964, 7, 119, 2, 2, 964, 971, 7, 103, 2, 2, 965, 966, 7, 104, 2, 2, 966, 967, 7, 99, 2, 2, 967, 968, 7, 110, 2, 2, 968, 969, 7, 117, 2, 2, 969, 971, 7, 103, 2, 2, 970, 961, 3, 2, 2, 2, 970, 965, 3, 2, 2, 2, 971, 210, 3, 2, 2, 2, 972, 977, 5, 9, 5, 2, 973, 976, 5, 11, 6, 2, 974, 976, 5, 9, 5, 2, 975, 973, 3, 2, 2, 2, 975, 974, 3, 2, 2, 2, 976, 979, 3, 2, 2, 2, 977, 975, 3, 2, 2, 2, 977, 978, 3, 2, 2, 2, 978, 212, 3, 2, 2, 2, 979, 977, 3, 2, 2, 2, 980, 981, 7, 45, 2, 2, 981, 982, 7, 45, 2, 2, 982, 214, 3, 2, 2, 2, 983, 984, 7, 47, 2, 2, 984, 985, 7, 47, 2, 2, 985, 216, 3, 2, 2, 2, 986, 987, 7, 40, 2, 2, 987, 218, 3, 2, 2, 2, 988, 989, 7, 45, 2, 2, 989, 990, 7, 39, 2, 2, 990, 220, 3, 2, 2, 2, 991, 992, 7, 47, 2, 2, 992, 993, 7, 39, 2, 2, 993, 222, 3, 2, 2, 2, 994, 995, 7, 45, 2, 2, 995, 996, 7, 45, 2, 2, 996, 997, 7, 39, 2, 2, 997, 224, 3, 2, 2, 2, 998, 999, 7, 47, 2, 2, 999, 1000, 7, 47, 2, 2, 1000, 1001, 7, 39, 2, 2, 1001, 226, 3, 2, 2, 2, 1002, 1003, 7, 62, 2, 2, 1003, 228, 3, 2, 2, 2, 1004, 1005, 7, 64, 2, 2, 1005, 230, 3, 2, 2, 2, 1006, 1007, 7, 62, 2, 2, 1007, 1008, 7, 63, 2, 2, 1008, 232, 3, 2, 2, 2, 1009, 1010, 7, 64, 2, 2, 1010, 1011, 7, 63, 2, 2, 1011, 234, 3, 2, 2, 2, 1012, 1013, 7, 63, 2, 2, 1013, 1014, 7, 63, 2, 2, 1014, 236, 3, 2, 2, 2, 1015, 1016, 7, 35, 2, 2, 1016, 1017, 7, 63, 2, 2, 1017, 238, 3, 2, 2, 2, 1018, 1040, 7, 63, 2, 2, 1019, 1020, 7, 45, 2, 2, 1020, 1040, 7, 63, 2, 2, 1021, 1022, 7, 47, 2, 2, 1022, 1040, 7, 63, 2, 2, 1023, 1024, 7, 44, 2, 2, 1024, 1040, 7, 63, 2, 2, 1025, 1026, 7, 49, 2, 2, 1026, 1040, 7, 63, 2, 2, 1027, 1028, 7, 39, 2, 2, 1028, 1040, 7, 63, 2, 2, 1029, 1030, 7, 62, 2, 2, 1030, 1031, 7, 62, 2, 2, 1031, 1040, 7, 63, 2, 2, 1032, 1033, 7, 64, 2, 2, 1033, 1034, 7, 64, 2, 2, 1034, 1040, 7, 63, 2, 2, 1035, 1036, 7, 40, 2, 2, 1036, 1040, 7, 63, 2, 2, 1037, 1038, 7, 126, 2, 2, 1038, 1040, 7, 63, 2, 2, 1039, 1018, 3, 2, 2, 2, 1039, 1019, 3, 2, 2, 2, 1039, 1021, 3, 2, 2, 2, 1039, 1023, 3, 2, 2, 2, 1039, 1025, 3, 2, 2, 2, 1039, 1027, 3, 2, 2, 2, 1039, 1029, 3, 2, 2, 2, 1039, 1032, 3, 2, 2, 2, 1039, 1035, 3, 2, 2, 2, 1039, 1037, 3, 2, 2, 2, 1040, 240, 3, 2, 2, 2, 1041, 1042, 7, 47, 2, 2, 1042, 242, 3, 2, 2, 2, 1043, 1044, 7, 45, 2, 2, 1044, 244, 3, 2, 2, 2, 1045, 1046, 7, 44, 2, 2, 1046, 246, 3, 2, 2, 2, 1047, 1048, 7, 49, 2, 2, 1048, 248, 3, 2, 2, 2, 1049, 1050, 7, 39, 2, 2, 1050, 250, 3, 2, 2, 2, 1051, 1052, 7, 42, 2, 2, 1052, 252, 3, 2, 2, 2, 1053, 1054, 7, 43, 2, 2, 1054, 254, 3, 2, 2, 2, 1055, 1056, 7, 62, 2, 2, 1056, 1057, 7, 62, 2, 2, 1057, 256, 3, 2, 2, 2, 1058, 1059, 7, 64, 2, 2, 1059, 1060, 7, 64, 2, 2, 1060, 258, 3, 2, 2, 2, 1061, 1062, 7, 126, 2, 2, 1062, 1063, 7, 126, 2, 2, 1063, 260, 3, 2, 2, 2, 1064, 1065, 7, 40, 2, 2, 1065, 1066, 7, 40, 2, 2, 1066, 262, 3, 2, 2, 2, 1067, 1068, 7, 35, 2, 2, 1068, 264, 3, 2, 2, 2, 1069, 1070, 7, 61, 2, 2, 1070, 266, 3, 2, 2, 2, 1071, 1072, 7, 60, 2, 2, 1072, 268, 3, 2, 2, 2, 1073, 1074, 7, 126, 2, 2, 1074, 270, 3, 2, 2, 2, 1075, 1076, 7, 125, 2, 2, 1076, 272, 3, 2, 2, 2, 1077, 1078, 7, 127, 2, 2, 1078, 274, 3, 2, 2, 2, 1079, 1080, 7, 46, 2, 2, 1080, 276, 3, 2, 2, 2, 1081, 1082, 7, 48, 2, 2, 1082, 278, 3, 2, 2, 2, 1083, 1084, 7, 93, 2, 2, 1084, 280, 3, 2, 2, 2, 1085, 1086, 7, 95, 2, 2, 1086, 282, 3, 2, 2, 2, 1087, 1088, 7, 36, 2, 2, 1088, 284, 3, 2, 2, 2, 1089, 1090, 7, 65, 2, 2, 1090, 286, 3, 2, 2, 2, 1091, 1095, 7, 36, 2, 2, 1092, 1094, 10, 7, 2, 2, 1093, 1092, 3, 2, 2, 2, 1094, 1097, 3, 2, 2, 2, 1095, 1093, 3, 2, 2, 2, 1095, 1096, 3, 2, 2, 2, 1096, 1098, 3, 2, 2, 2, 1097, 1095, 3, 2, 2, 2, 1098, 1099, 7, 36, 2, 2, 1099, 288, 3, 2, 2, 2, 14, 2, 292, 302, 316, 948, 953, 959, 970, 975, 977, 1039, 1095, 3, 8, 2, 2]
\ No newline at end of file
diff --git a/src/main/java/grammar/alkLexer.java b/src/main/java/grammar/alkLexer.java
index df6d9c9a..826a75db 100644
--- a/src/main/java/grammar/alkLexer.java
+++ b/src/main/java/grammar/alkLexer.java
@@ -20,26 +20,26 @@ public class alkLexer extends Lexer {
new PredictionContextCache();
public static final int
WS=1, COMMENT=2, LINE_COMMENT=3, ASSERT=4, ASSUME=5, SYMBOLIC=6, INVARIANT=7,
- REQURIES=8, ENSURES=9, WHILEMODIFIES=10, RESULT=11, IMPLIES=12, EQUIV=13,
- FORALL=14, EXISTS=15, QUANTIFIER_SEPARATOR=16, TO=17, IF=18, ELSE=19,
- WHILE=20, DO=21, FOR=22, FOREACH=23, IN=24, FROM=25, OUT=26, HAVOC=27,
- CHOOSE=28, UNIFORM=29, REPEAT=30, RETURN=31, SUCCESS=32, UNTIL=33, FAILURE=34,
- CONTINUE=35, BREAK=36, EMPTYMAP=37, EMPTYSET=38, EMPTYLIST=39, EMPTYSTRUCTURE=40,
- MODIFIES=41, USES=42, INCLDUE=43, XOR=44, ABS=45, ACOS=46, ASIN=47, ATAN=48,
- COS=49, LOG=50, PI=51, POW=52, SIN=53, SQRT=54, TAN=55, LEN=56, ARRAY=57,
- SET=58, AT=59, BELONGSTO=60, DELETE=61, EMPTY=62, END=63, FIRST=64, FLOAT=65,
- INSERT=66, KEYS=67, INTEGER=68, BOOLEAN=69, PRINT=70, POPBACK=71, POPFRONT=72,
- PUSHBACK=73, PUSHFRONT=74, REMOVE=75, REMOVEALLEQTO=76, REMOVEAT=77, SINGLETONSET=78,
- SIZE=79, SPLIT=80, TOPBACK=81, TOPFRONT=82, UPDATE=83, UNIFORMNAT=84,
- FLIP=85, UNIFORMFLOAT=86, UNIFORMPERM=87, SOTHAT=88, SYM=89, ARROW=90,
- NUMSIGN=91, ANNO=92, COUNT=93, UNION=94, INTERSECT=95, SUBTRACT=96, INT=97,
- DOUBLE=98, BOOL=99, ID=100, PLUSPLUS=101, MINUSMINUS=102, BITWISE_AND=103,
- PLUSMOD=104, MINUSMOD=105, PLUSPLUSMOD=106, MINUSMINUSMOD=107, LOWER=108,
- GREATER=109, LOWEREQ=110, GREATEREQ=111, ISEQUAL=112, NOTEQUAL=113, ASSIGNMENT_OPERATOR=114,
- MINUS=115, PLUS=116, MUL=117, DIV=118, MOD=119, LPAR=120, RPAR=121, LEFTSHIFT=122,
- RIGHTSHIFT=123, OR=124, AND=125, NOT=126, SEMICOLON=127, DPOINT=128, VBAR=129,
- LCB=130, RCB=131, COMMA=132, POINT=133, LBRA=134, RBRA=135, QUOTE=136,
- QUESTION=137, STRING=138;
+ REQURIES=8, ENSURES=9, LOOPASSESRT=10, WHILEMODIFIES=11, RESULT=12, OLD=13,
+ IMPLIES=14, EQUIV=15, FORALL=16, EXISTS=17, QUANTIFIER_SEPARATOR=18, TO=19,
+ IF=20, ELSE=21, WHILE=22, DO=23, FOR=24, FOREACH=25, IN=26, FROM=27, OUT=28,
+ HAVOC=29, CHOOSE=30, UNIFORM=31, REPEAT=32, RETURN=33, SUCCESS=34, UNTIL=35,
+ FAILURE=36, CONTINUE=37, BREAK=38, EMPTYMAP=39, EMPTYSET=40, EMPTYLIST=41,
+ EMPTYSTRUCTURE=42, MODIFIES=43, USES=44, INCLDUE=45, XOR=46, ABS=47, ACOS=48,
+ ASIN=49, ATAN=50, COS=51, LOG=52, PI=53, POW=54, SIN=55, SQRT=56, TAN=57,
+ LEN=58, ARRAY=59, SET=60, AT=61, BELONGSTO=62, DELETE=63, EMPTY=64, END=65,
+ FIRST=66, FLOAT=67, INSERT=68, KEYS=69, INTEGER=70, BOOLEAN=71, PRINT=72,
+ POPBACK=73, POPFRONT=74, PUSHBACK=75, PUSHFRONT=76, REMOVE=77, REMOVEALLEQTO=78,
+ REMOVEAT=79, SINGLETONSET=80, SIZE=81, SPLIT=82, TOPBACK=83, TOPFRONT=84,
+ UPDATE=85, UNIFORMNAT=86, FLIP=87, UNIFORMFLOAT=88, UNIFORMPERM=89, SOTHAT=90,
+ SYM=91, ARROW=92, NUMSIGN=93, ANNO=94, COUNT=95, UNION=96, INTERSECT=97,
+ SUBTRACT=98, INT=99, DOUBLE=100, BOOL=101, ID=102, PLUSPLUS=103, MINUSMINUS=104,
+ BITWISE_AND=105, PLUSMOD=106, MINUSMOD=107, PLUSPLUSMOD=108, MINUSMINUSMOD=109,
+ LOWER=110, GREATER=111, LOWEREQ=112, GREATEREQ=113, ISEQUAL=114, NOTEQUAL=115,
+ ASSIGNMENT_OPERATOR=116, MINUS=117, PLUS=118, MUL=119, DIV=120, MOD=121,
+ LPAR=122, RPAR=123, LEFTSHIFT=124, RIGHTSHIFT=125, OR=126, AND=127, NOT=128,
+ SEMICOLON=129, DPOINT=130, VBAR=131, LCB=132, RCB=133, COMMA=134, POINT=135,
+ LBRA=136, RBRA=137, QUOTE=138, QUESTION=139, STRING=140;
public static String[] channelNames = {
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
};
@@ -50,8 +50,53 @@ public class alkLexer extends Lexer {
public static final String[] ruleNames = {
"WS", "COMMENT", "LINE_COMMENT", "NONDIGIT", "DIGIT", "NONZERODIGIT",
- "ASSERT", "ASSUME", "SYMBOLIC", "INVARIANT", "REQURIES", "ENSURES", "WHILEMODIFIES",
- "RESULT", "IMPLIES", "EQUIV", "FORALL", "EXISTS", "QUANTIFIER_SEPARATOR",
+ "ASSERT", "ASSUME", "SYMBOLIC", "INVARIANT", "REQURIES", "ENSURES", "LOOPASSESRT",
+ "WHILEMODIFIES", "RESULT", "OLD", "IMPLIES", "EQUIV", "FORALL", "EXISTS",
+ "QUANTIFIER_SEPARATOR", "TO", "IF", "ELSE", "WHILE", "DO", "FOR", "FOREACH",
+ "IN", "FROM", "OUT", "HAVOC", "CHOOSE", "UNIFORM", "REPEAT", "RETURN",
+ "SUCCESS", "UNTIL", "FAILURE", "CONTINUE", "BREAK", "EMPTYMAP", "EMPTYSET",
+ "EMPTYLIST", "EMPTYSTRUCTURE", "MODIFIES", "USES", "INCLDUE", "XOR", "ABS",
+ "ACOS", "ASIN", "ATAN", "COS", "LOG", "PI", "POW", "SIN", "SQRT", "TAN",
+ "LEN", "ARRAY", "SET", "AT", "BELONGSTO", "DELETE", "EMPTY", "END", "FIRST",
+ "FLOAT", "INSERT", "KEYS", "INTEGER", "BOOLEAN", "PRINT", "POPBACK", "POPFRONT",
+ "PUSHBACK", "PUSHFRONT", "REMOVE", "REMOVEALLEQTO", "REMOVEAT", "SINGLETONSET",
+ "SIZE", "SPLIT", "TOPBACK", "TOPFRONT", "UPDATE", "UNIFORMNAT", "FLIP",
+ "UNIFORMFLOAT", "UNIFORMPERM", "SOTHAT", "SYM", "ARROW", "NUMSIGN", "ANNO",
+ "COUNT", "UNION", "INTERSECT", "SUBTRACT", "INT", "DOUBLE", "BOOL", "ID",
+ "PLUSPLUS", "MINUSMINUS", "BITWISE_AND", "PLUSMOD", "MINUSMOD", "PLUSPLUSMOD",
+ "MINUSMINUSMOD", "LOWER", "GREATER", "LOWEREQ", "GREATEREQ", "ISEQUAL",
+ "NOTEQUAL", "ASSIGNMENT_OPERATOR", "MINUS", "PLUS", "MUL", "DIV", "MOD",
+ "LPAR", "RPAR", "LEFTSHIFT", "RIGHTSHIFT", "OR", "AND", "NOT", "SEMICOLON",
+ "DPOINT", "VBAR", "LCB", "RCB", "COMMA", "POINT", "LBRA", "RBRA", "QUOTE",
+ "QUESTION", "STRING"
+ };
+
+ private static final String[] _LITERAL_NAMES = {
+ null, null, null, null, "'@assert'", "'@assume'", "'@symbolic'", "'@invariant'",
+ "'@requires'", "'@ensures'", "'@loopassert'", "'@modifies'", "'\\result'",
+ "'\\old'", "'==>'", "'<==>'", "'forall'", "'exists'", "'::'", "'|->'",
+ "'if'", "'else'", "'while'", "'do'", "'for'", "'foreach'", "'in'", "'from'",
+ "'out'", "'@havoc'", "'choose'", "'uniform'", "'repeat'", "'return'",
+ "'success'", "'until'", "'failure'", "'continue'", "'break'", "'emptyMap'",
+ "'emptySet'", "'emptyList'", "'emptyStructure'", "'modifies'", "'uses'",
+ "'include'", "'xor'", "'abs'", "'acos'", "'asin'", "'atan'", "'cos'",
+ "'log'", "'pi'", "'pow'", "'sin'", "'sqrt'", "'tan'", "'len'", "'array'",
+ "'set'", "'at'", "'belongsTo'", "'delete'", "'empty'", "'end'", "'first'",
+ "'float'", "'insert'", "'keys'", "'int'", "'boolean'", "'print'", "'popBack'",
+ "'popFront'", "'pushBack'", "'pushFront'", "'remove'", "'removeAllEqTo'",
+ "'removeAt'", "'singletonSet'", "'size'", "'split'", "'topBack'", "'topFront'",
+ "'update'", "'uniformNat'", "'flip'", "'uniformFloat'", "'uniformPerm'",
+ "'s.t.'", "'$'", "'->'", "'#'", "'@'", "'Count'", "'U'", "'^'", "'\\'",
+ null, null, null, null, "'++'", "'--'", "'&'", "'+%'", "'-%'", "'++%'",
+ "'--%'", "'<'", "'>'", "'<='", "'>='", "'=='", "'!='", null, "'-'", "'+'",
+ "'*'", "'/'", "'%'", "'('", "')'", "'<<'", "'>>'", "'||'", "'&&'", "'!'",
+ "';'", "':'", "'|'", "'{'", "'}'", "','", "'.'", "'['", "']'", "'\"'",
+ "'?'"
+ };
+ private static final String[] _SYMBOLIC_NAMES = {
+ null, "WS", "COMMENT", "LINE_COMMENT", "ASSERT", "ASSUME", "SYMBOLIC",
+ "INVARIANT", "REQURIES", "ENSURES", "LOOPASSESRT", "WHILEMODIFIES", "RESULT",
+ "OLD", "IMPLIES", "EQUIV", "FORALL", "EXISTS", "QUANTIFIER_SEPARATOR",
"TO", "IF", "ELSE", "WHILE", "DO", "FOR", "FOREACH", "IN", "FROM", "OUT",
"HAVOC", "CHOOSE", "UNIFORM", "REPEAT", "RETURN", "SUCCESS", "UNTIL",
"FAILURE", "CONTINUE", "BREAK", "EMPTYMAP", "EMPTYSET", "EMPTYLIST", "EMPTYSTRUCTURE",
@@ -69,49 +114,6 @@ public class alkLexer extends Lexer {
"OR", "AND", "NOT", "SEMICOLON", "DPOINT", "VBAR", "LCB", "RCB", "COMMA",
"POINT", "LBRA", "RBRA", "QUOTE", "QUESTION", "STRING"
};
-
- private static final String[] _LITERAL_NAMES = {
- null, null, null, null, "'@assert'", "'@assume'", "'@symbolic'", "'@invariant'",
- "'@requires'", "'@ensures'", "'@modifies'", "'\\result'", "'==>'", "'<==>'",
- "'forall'", "'exists'", "'::'", "'|->'", "'if'", "'else'", "'while'",
- "'do'", "'for'", "'foreach'", "'in'", "'from'", "'out'", "'@havoc'", "'choose'",
- "'uniform'", "'repeat'", "'return'", "'success'", "'until'", "'failure'",
- "'continue'", "'break'", "'emptyMap'", "'emptySet'", "'emptyList'", "'emptyStructure'",
- "'modifies'", "'uses'", "'include'", "'xor'", "'abs'", "'acos'", "'asin'",
- "'atan'", "'cos'", "'log'", "'pi'", "'pow'", "'sin'", "'sqrt'", "'tan'",
- "'len'", "'array'", "'set'", "'at'", "'belongsTo'", "'delete'", "'empty'",
- "'end'", "'first'", "'float'", "'insert'", "'keys'", "'int'", "'boolean'",
- "'print'", "'popBack'", "'popFront'", "'pushBack'", "'pushFront'", "'remove'",
- "'removeAllEqTo'", "'removeAt'", "'singletonSet'", "'size'", "'split'",
- "'topBack'", "'topFront'", "'update'", "'uniformNat'", "'flip'", "'uniformFloat'",
- "'uniformPerm'", "'s.t.'", "'$'", "'->'", "'#'", "'@'", "'Count'", "'U'",
- "'^'", "'\\'", null, null, null, null, "'++'", "'--'", "'&'", "'+%'",
- "'-%'", "'++%'", "'--%'", "'<'", "'>'", "'<='", "'>='", "'=='", "'!='",
- null, "'-'", "'+'", "'*'", "'/'", "'%'", "'('", "')'", "'<<'", "'>>'",
- "'||'", "'&&'", "'!'", "';'", "':'", "'|'", "'{'", "'}'", "','", "'.'",
- "'['", "']'", "'\"'", "'?'"
- };
- private static final String[] _SYMBOLIC_NAMES = {
- null, "WS", "COMMENT", "LINE_COMMENT", "ASSERT", "ASSUME", "SYMBOLIC",
- "INVARIANT", "REQURIES", "ENSURES", "WHILEMODIFIES", "RESULT", "IMPLIES",
- "EQUIV", "FORALL", "EXISTS", "QUANTIFIER_SEPARATOR", "TO", "IF", "ELSE",
- "WHILE", "DO", "FOR", "FOREACH", "IN", "FROM", "OUT", "HAVOC", "CHOOSE",
- "UNIFORM", "REPEAT", "RETURN", "SUCCESS", "UNTIL", "FAILURE", "CONTINUE",
- "BREAK", "EMPTYMAP", "EMPTYSET", "EMPTYLIST", "EMPTYSTRUCTURE", "MODIFIES",
- "USES", "INCLDUE", "XOR", "ABS", "ACOS", "ASIN", "ATAN", "COS", "LOG",
- "PI", "POW", "SIN", "SQRT", "TAN", "LEN", "ARRAY", "SET", "AT", "BELONGSTO",
- "DELETE", "EMPTY", "END", "FIRST", "FLOAT", "INSERT", "KEYS", "INTEGER",
- "BOOLEAN", "PRINT", "POPBACK", "POPFRONT", "PUSHBACK", "PUSHFRONT", "REMOVE",
- "REMOVEALLEQTO", "REMOVEAT", "SINGLETONSET", "SIZE", "SPLIT", "TOPBACK",
- "TOPFRONT", "UPDATE", "UNIFORMNAT", "FLIP", "UNIFORMFLOAT", "UNIFORMPERM",
- "SOTHAT", "SYM", "ARROW", "NUMSIGN", "ANNO", "COUNT", "UNION", "INTERSECT",
- "SUBTRACT", "INT", "DOUBLE", "BOOL", "ID", "PLUSPLUS", "MINUSMINUS", "BITWISE_AND",
- "PLUSMOD", "MINUSMOD", "PLUSPLUSMOD", "MINUSMINUSMOD", "LOWER", "GREATER",
- "LOWEREQ", "GREATEREQ", "ISEQUAL", "NOTEQUAL", "ASSIGNMENT_OPERATOR",
- "MINUS", "PLUS", "MUL", "DIV", "MOD", "LPAR", "RPAR", "LEFTSHIFT", "RIGHTSHIFT",
- "OR", "AND", "NOT", "SEMICOLON", "DPOINT", "VBAR", "LCB", "RCB", "COMMA",
- "POINT", "LBRA", "RBRA", "QUOTE", "QUESTION", "STRING"
- };
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
/**
@@ -170,7 +172,7 @@ public alkLexer(CharStream input) {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u008c\u0437\b\1\4"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u008e\u044c\b\1\4"+
"\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+
"\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+
"\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+
@@ -187,51 +189,53 @@ public alkLexer(CharStream input) {
"\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+
"\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+
"\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+
- "\4\u008e\t\u008e\3\2\6\2\u011f\n\2\r\2\16\2\u0120\3\2\3\2\3\3\3\3\3\3"+
- "\3\3\7\3\u0129\n\3\f\3\16\3\u012c\13\3\3\3\3\3\3\3\3\3\3\3\3\4\3\4\3\4"+
- "\3\4\7\4\u0137\n\4\f\4\16\4\u013a\13\4\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7"+
- "\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3"+
- "\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13"+
- "\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3"+
- "\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16"+
- "\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\21"+
- "\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23"+
- "\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\26\3\26\3\26"+
- "\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3\31"+
- "\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34"+
- "\3\34\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\37\3\37\3\37\3\37"+
- "\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3!\3!\3!\3!\3!\3!\3!\3\"\3\"\3"+
- "\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%"+
- "\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
- "\'\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*\3*\3*\3"+
- "*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3"+
- ",\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3"+
- "/\3/\3/\3\60\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3"+
- "\62\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3"+
- "\65\3\66\3\66\3\66\3\66\3\67\3\67\3\67\38\38\38\38\39\39\39\39\3:\3:\3"+
- ":\3:\3:\3;\3;\3;\3;\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3?\3?\3"+
- "?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3"+
- "B\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3"+
- "F\3G\3G\3G\3G\3G\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3"+
- "J\3K\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3"+
- "M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3"+
- "P\3P\3P\3P\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3"+
- "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3U\3"+
- "U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3"+
- "X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3"+
- "Z\3Z\3Z\3Z\3Z\3Z\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3\\\3\\\3\\\3\\\3"+
- "\\\3]\3]\3^\3^\3^\3_\3_\3`\3`\3a\3a\3a\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\6"+
- "e\u039e\ne\re\16e\u039f\3f\6f\u03a3\nf\rf\16f\u03a4\3f\3f\6f\u03a9\nf"+
- "\rf\16f\u03aa\3g\3g\3g\3g\3g\3g\3g\3g\3g\5g\u03b6\ng\3h\3h\3h\7h\u03bb"+
- "\nh\fh\16h\u03be\13h\3i\3i\3i\3j\3j\3j\3k\3k\3l\3l\3l\3m\3m\3m\3n\3n\3"+
- "n\3n\3o\3o\3o\3o\3p\3p\3q\3q\3r\3r\3r\3s\3s\3s\3t\3t\3t\3u\3u\3u\3v\3"+
- "v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\3v\5v\u03fb\n"+
- "v\3w\3w\3x\3x\3y\3y\3z\3z\3{\3{\3|\3|\3}\3}\3~\3~\3~\3\177\3\177\3\177"+
- "\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0082\3\u0082\3\u0083"+
- "\3\u0083\3\u0084\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0087\3\u0087"+
- "\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008b\3\u008b\3\u008c"+
- "\3\u008c\3\u008d\3\u008d\3\u008e\3\u008e\7\u008e\u0431\n\u008e\f\u008e"+
- "\16\u008e\u0434\13\u008e\3\u008e\3\u008e\3\u012a\2\u008f\3\3\5\4\7\5\t"+
+ "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\3\2\6\2\u0123\n\2\r\2"+
+ "\16\2\u0124\3\2\3\2\3\3\3\3\3\3\3\3\7\3\u012d\n\3\f\3\16\3\u0130\13\3"+
+ "\3\3\3\3\3\3\3\3\3\3\3\4\3\4\3\4\3\4\7\4\u013b\n\4\f\4\16\4\u013e\13\4"+
+ "\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3"+
+ "\t\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\13"+
+ "\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f"+
+ "\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16"+
+ "\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17"+
+ "\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21"+
+ "\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\24"+
+ "\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26"+
+ "\3\26\3\26\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31"+
+ "\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\35"+
+ "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3\37\3\37"+
+ "\3\37\3 \3 \3 \3 \3!\3!\3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#"+
+ "\3#\3#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3%\3%\3%\3%\3&\3&"+
+ "\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3)"+
+ "\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+"+
+ "\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3.\3.\3.\3."+
+ "\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60"+
+ "\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62"+
+ "\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65"+
+ "\3\65\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\38\38\38\38\39\39\3"+
+ "9\3:\3:\3:\3:\3;\3;\3;\3;\3<\3<\3<\3<\3<\3=\3=\3=\3=\3>\3>\3>\3>\3?\3"+
+ "?\3?\3?\3?\3?\3@\3@\3@\3@\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3C\3"+
+ "C\3C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3G\3"+
+ "G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3J\3J\3J\3J\3K\3K\3"+
+ "K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3"+
+ "N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3P\3"+
+ "P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+
+ "S\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3"+
+ "U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3"+
+ "X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3[\3"+
+ "[\3[\3[\3[\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3]\3]\3"+
+ "]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3^\3^\3^\3^\3^\3_\3_\3`\3`\3`\3a\3a\3b\3"+
+ "b\3c\3c\3c\3c\3c\3c\3d\3d\3e\3e\3f\3f\3g\6g\u03b3\ng\rg\16g\u03b4\3h\6"+
+ "h\u03b8\nh\rh\16h\u03b9\3h\3h\6h\u03be\nh\rh\16h\u03bf\3i\3i\3i\3i\3i"+
+ "\3i\3i\3i\3i\5i\u03cb\ni\3j\3j\3j\7j\u03d0\nj\fj\16j\u03d3\13j\3k\3k\3"+
+ "k\3l\3l\3l\3m\3m\3n\3n\3n\3o\3o\3o\3p\3p\3p\3p\3q\3q\3q\3q\3r\3r\3s\3"+
+ "s\3t\3t\3t\3u\3u\3u\3v\3v\3v\3w\3w\3w\3x\3x\3x\3x\3x\3x\3x\3x\3x\3x\3"+
+ "x\3x\3x\3x\3x\3x\3x\3x\3x\3x\3x\5x\u0410\nx\3y\3y\3z\3z\3{\3{\3|\3|\3"+
+ "}\3}\3~\3~\3\177\3\177\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081"+
+ "\3\u0082\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0084\3\u0084\3\u0085"+
+ "\3\u0085\3\u0086\3\u0086\3\u0087\3\u0087\3\u0088\3\u0088\3\u0089\3\u0089"+
+ "\3\u008a\3\u008a\3\u008b\3\u008b\3\u008c\3\u008c\3\u008d\3\u008d\3\u008e"+
+ "\3\u008e\3\u008f\3\u008f\3\u0090\3\u0090\7\u0090\u0446\n\u0090\f\u0090"+
+ "\16\u0090\u0449\13\u0090\3\u0090\3\u0090\3\u012e\2\u0091\3\3\5\4\7\5\t"+
"\2\13\2\r\2\17\6\21\7\23\b\25\t\27\n\31\13\33\f\35\r\37\16!\17#\20%\21"+
"\'\22)\23+\24-\25/\26\61\27\63\30\65\31\67\329\33;\34=\35?\36A\37C E!"+
"G\"I#K$M%O&Q\'S(U)W*Y+[,]-_.a/c\60e\61g\62i\63k\64m\65o\66q\67s8u9w:y"+
@@ -243,291 +247,297 @@ public alkLexer(CharStream input) {
"o\u00e3p\u00e5q\u00e7r\u00e9s\u00ebt\u00edu\u00efv\u00f1w\u00f3x\u00f5"+
"y\u00f7z\u00f9{\u00fb|\u00fd}\u00ff~\u0101\177\u0103\u0080\u0105\u0081"+
"\u0107\u0082\u0109\u0083\u010b\u0084\u010d\u0085\u010f\u0086\u0111\u0087"+
- "\u0113\u0088\u0115\u0089\u0117\u008a\u0119\u008b\u011b\u008c\3\2\b\5\2"+
- "\13\f\17\17\"\"\4\2\f\f\17\17\5\2C\\aac|\3\2\62;\3\2\63;\5\2\f\f\17\17"+
- "$$\2\u0446\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2"+
- "\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2"+
- "\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2"+
- "\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2"+
- "\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2"+
- "\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M"+
- "\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2"+
- "\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2"+
- "\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s"+
- "\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177"+
- "\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2"+
- "\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091"+
- "\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2"+
- "\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3"+
- "\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2"+
- "\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5"+
- "\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2"+
- "\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7"+
- "\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2"+
- "\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9"+
- "\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2"+
- "\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2\2\2\u00eb"+
- "\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2\2\2\u00f3\3\2\2"+
- "\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb\3\2\2\2\2\u00fd"+
- "\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2\2\2\u0105\3\2\2"+
- "\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d\3\2\2\2\2\u010f"+
- "\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2\2\2\u0117\3\2\2"+
- "\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\3\u011e\3\2\2\2\5\u0124\3\2\2\2\7\u0132"+
- "\3\2\2\2\t\u013d\3\2\2\2\13\u013f\3\2\2\2\r\u0141\3\2\2\2\17\u0143\3\2"+
- "\2\2\21\u014b\3\2\2\2\23\u0153\3\2\2\2\25\u015d\3\2\2\2\27\u0168\3\2\2"+
- "\2\31\u0172\3\2\2\2\33\u017b\3\2\2\2\35\u0185\3\2\2\2\37\u018d\3\2\2\2"+
- "!\u0191\3\2\2\2#\u0196\3\2\2\2%\u019d\3\2\2\2\'\u01a4\3\2\2\2)\u01a7\3"+
- "\2\2\2+\u01ab\3\2\2\2-\u01ae\3\2\2\2/\u01b3\3\2\2\2\61\u01b9\3\2\2\2\63"+
- "\u01bc\3\2\2\2\65\u01c0\3\2\2\2\67\u01c8\3\2\2\29\u01cb\3\2\2\2;\u01d0"+
- "\3\2\2\2=\u01d4\3\2\2\2?\u01db\3\2\2\2A\u01e2\3\2\2\2C\u01ea\3\2\2\2E"+
- "\u01f1\3\2\2\2G\u01f8\3\2\2\2I\u0200\3\2\2\2K\u0206\3\2\2\2M\u020e\3\2"+
- "\2\2O\u0217\3\2\2\2Q\u021d\3\2\2\2S\u0226\3\2\2\2U\u022f\3\2\2\2W\u0239"+
- "\3\2\2\2Y\u0248\3\2\2\2[\u0251\3\2\2\2]\u0256\3\2\2\2_\u025e\3\2\2\2a"+
- "\u0262\3\2\2\2c\u0266\3\2\2\2e\u026b\3\2\2\2g\u0270\3\2\2\2i\u0275\3\2"+
- "\2\2k\u0279\3\2\2\2m\u027d\3\2\2\2o\u0280\3\2\2\2q\u0284\3\2\2\2s\u0288"+
- "\3\2\2\2u\u028d\3\2\2\2w\u0291\3\2\2\2y\u0295\3\2\2\2{\u029b\3\2\2\2}"+
- "\u029f\3\2\2\2\177\u02a2\3\2\2\2\u0081\u02ac\3\2\2\2\u0083\u02b3\3\2\2"+
- "\2\u0085\u02b9\3\2\2\2\u0087\u02bd\3\2\2\2\u0089\u02c3\3\2\2\2\u008b\u02c9"+
- "\3\2\2\2\u008d\u02d0\3\2\2\2\u008f\u02d5\3\2\2\2\u0091\u02d9\3\2\2\2\u0093"+
- "\u02e1\3\2\2\2\u0095\u02e7\3\2\2\2\u0097\u02ef\3\2\2\2\u0099\u02f8\3\2"+
- "\2\2\u009b\u0301\3\2\2\2\u009d\u030b\3\2\2\2\u009f\u0312\3\2\2\2\u00a1"+
- "\u0320\3\2\2\2\u00a3\u0329\3\2\2\2\u00a5\u0336\3\2\2\2\u00a7\u033b\3\2"+
- "\2\2\u00a9\u0341\3\2\2\2\u00ab\u0349\3\2\2\2\u00ad\u0352\3\2\2\2\u00af"+
- "\u0359\3\2\2\2\u00b1\u0364\3\2\2\2\u00b3\u0369\3\2\2\2\u00b5\u0376\3\2"+
- "\2\2\u00b7\u0382\3\2\2\2\u00b9\u0387\3\2\2\2\u00bb\u0389\3\2\2\2\u00bd"+
- "\u038c\3\2\2\2\u00bf\u038e\3\2\2\2\u00c1\u0390\3\2\2\2\u00c3\u0396\3\2"+
- "\2\2\u00c5\u0398\3\2\2\2\u00c7\u039a\3\2\2\2\u00c9\u039d\3\2\2\2\u00cb"+
- "\u03a2\3\2\2\2\u00cd\u03b5\3\2\2\2\u00cf\u03b7\3\2\2\2\u00d1\u03bf\3\2"+
- "\2\2\u00d3\u03c2\3\2\2\2\u00d5\u03c5\3\2\2\2\u00d7\u03c7\3\2\2\2\u00d9"+
- "\u03ca\3\2\2\2\u00db\u03cd\3\2\2\2\u00dd\u03d1\3\2\2\2\u00df\u03d5\3\2"+
- "\2\2\u00e1\u03d7\3\2\2\2\u00e3\u03d9\3\2\2\2\u00e5\u03dc\3\2\2\2\u00e7"+
- "\u03df\3\2\2\2\u00e9\u03e2\3\2\2\2\u00eb\u03fa\3\2\2\2\u00ed\u03fc\3\2"+
- "\2\2\u00ef\u03fe\3\2\2\2\u00f1\u0400\3\2\2\2\u00f3\u0402\3\2\2\2\u00f5"+
- "\u0404\3\2\2\2\u00f7\u0406\3\2\2\2\u00f9\u0408\3\2\2\2\u00fb\u040a\3\2"+
- "\2\2\u00fd\u040d\3\2\2\2\u00ff\u0410\3\2\2\2\u0101\u0413\3\2\2\2\u0103"+
- "\u0416\3\2\2\2\u0105\u0418\3\2\2\2\u0107\u041a\3\2\2\2\u0109\u041c\3\2"+
- "\2\2\u010b\u041e\3\2\2\2\u010d\u0420\3\2\2\2\u010f\u0422\3\2\2\2\u0111"+
- "\u0424\3\2\2\2\u0113\u0426\3\2\2\2\u0115\u0428\3\2\2\2\u0117\u042a\3\2"+
- "\2\2\u0119\u042c\3\2\2\2\u011b\u042e\3\2\2\2\u011d\u011f\t\2\2\2\u011e"+
- "\u011d\3\2\2\2\u011f\u0120\3\2\2\2\u0120\u011e\3\2\2\2\u0120\u0121\3\2"+
- "\2\2\u0121\u0122\3\2\2\2\u0122\u0123\b\2\2\2\u0123\4\3\2\2\2\u0124\u0125"+
- "\7\61\2\2\u0125\u0126\7,\2\2\u0126\u012a\3\2\2\2\u0127\u0129\13\2\2\2"+
- "\u0128\u0127\3\2\2\2\u0129\u012c\3\2\2\2\u012a\u012b\3\2\2\2\u012a\u0128"+
- "\3\2\2\2\u012b\u012d\3\2\2\2\u012c\u012a\3\2\2\2\u012d\u012e\7,\2\2\u012e"+
- "\u012f\7\61\2\2\u012f\u0130\3\2\2\2\u0130\u0131\b\3\2\2\u0131\6\3\2\2"+
- "\2\u0132\u0133\7\61\2\2\u0133\u0134\7\61\2\2\u0134\u0138\3\2\2\2\u0135"+
- "\u0137\n\3\2\2\u0136\u0135\3\2\2\2\u0137\u013a\3\2\2\2\u0138\u0136\3\2"+
- "\2\2\u0138\u0139\3\2\2\2\u0139\u013b\3\2\2\2\u013a\u0138\3\2\2\2\u013b"+
- "\u013c\b\4\2\2\u013c\b\3\2\2\2\u013d\u013e\t\4\2\2\u013e\n\3\2\2\2\u013f"+
- "\u0140\t\5\2\2\u0140\f\3\2\2\2\u0141\u0142\t\6\2\2\u0142\16\3\2\2\2\u0143"+
- "\u0144\7B\2\2\u0144\u0145\7c\2\2\u0145\u0146\7u\2\2\u0146\u0147\7u\2\2"+
- "\u0147\u0148\7g\2\2\u0148\u0149\7t\2\2\u0149\u014a\7v\2\2\u014a\20\3\2"+
- "\2\2\u014b\u014c\7B\2\2\u014c\u014d\7c\2\2\u014d\u014e\7u\2\2\u014e\u014f"+
- "\7u\2\2\u014f\u0150\7w\2\2\u0150\u0151\7o\2\2\u0151\u0152\7g\2\2\u0152"+
- "\22\3\2\2\2\u0153\u0154\7B\2\2\u0154\u0155\7u\2\2\u0155\u0156\7{\2\2\u0156"+
- "\u0157\7o\2\2\u0157\u0158\7d\2\2\u0158\u0159\7q\2\2\u0159\u015a\7n\2\2"+
- "\u015a\u015b\7k\2\2\u015b\u015c\7e\2\2\u015c\24\3\2\2\2\u015d\u015e\7"+
- "B\2\2\u015e\u015f\7k\2\2\u015f\u0160\7p\2\2\u0160\u0161\7x\2\2\u0161\u0162"+
- "\7c\2\2\u0162\u0163\7t\2\2\u0163\u0164\7k\2\2\u0164\u0165\7c\2\2\u0165"+
- "\u0166\7p\2\2\u0166\u0167\7v\2\2\u0167\26\3\2\2\2\u0168\u0169\7B\2\2\u0169"+
- "\u016a\7t\2\2\u016a\u016b\7g\2\2\u016b\u016c\7s\2\2\u016c\u016d\7w\2\2"+
- "\u016d\u016e\7k\2\2\u016e\u016f\7t\2\2\u016f\u0170\7g\2\2\u0170\u0171"+
- "\7u\2\2\u0171\30\3\2\2\2\u0172\u0173\7B\2\2\u0173\u0174\7g\2\2\u0174\u0175"+
- "\7p\2\2\u0175\u0176\7u\2\2\u0176\u0177\7w\2\2\u0177\u0178\7t\2\2\u0178"+
- "\u0179\7g\2\2\u0179\u017a\7u\2\2\u017a\32\3\2\2\2\u017b\u017c\7B\2\2\u017c"+
- "\u017d\7o\2\2\u017d\u017e\7q\2\2\u017e\u017f\7f\2\2\u017f\u0180\7k\2\2"+
- "\u0180\u0181\7h\2\2\u0181\u0182\7k\2\2\u0182\u0183\7g\2\2\u0183\u0184"+
- "\7u\2\2\u0184\34\3\2\2\2\u0185\u0186\7^\2\2\u0186\u0187\7t\2\2\u0187\u0188"+
- "\7g\2\2\u0188\u0189\7u\2\2\u0189\u018a\7w\2\2\u018a\u018b\7n\2\2\u018b"+
- "\u018c\7v\2\2\u018c\36\3\2\2\2\u018d\u018e\7?\2\2\u018e\u018f\7?\2\2\u018f"+
- "\u0190\7@\2\2\u0190 \3\2\2\2\u0191\u0192\7>\2\2\u0192\u0193\7?\2\2\u0193"+
- "\u0194\7?\2\2\u0194\u0195\7@\2\2\u0195\"\3\2\2\2\u0196\u0197\7h\2\2\u0197"+
- "\u0198\7q\2\2\u0198\u0199\7t\2\2\u0199\u019a\7c\2\2\u019a\u019b\7n\2\2"+
- "\u019b\u019c\7n\2\2\u019c$\3\2\2\2\u019d\u019e\7g\2\2\u019e\u019f\7z\2"+
- "\2\u019f\u01a0\7k\2\2\u01a0\u01a1\7u\2\2\u01a1\u01a2\7v\2\2\u01a2\u01a3"+
- "\7u\2\2\u01a3&\3\2\2\2\u01a4\u01a5\7<\2\2\u01a5\u01a6\7<\2\2\u01a6(\3"+
- "\2\2\2\u01a7\u01a8\7~\2\2\u01a8\u01a9\7/\2\2\u01a9\u01aa\7@\2\2\u01aa"+
- "*\3\2\2\2\u01ab\u01ac\7k\2\2\u01ac\u01ad\7h\2\2\u01ad,\3\2\2\2\u01ae\u01af"+
- "\7g\2\2\u01af\u01b0\7n\2\2\u01b0\u01b1\7u\2\2\u01b1\u01b2\7g\2\2\u01b2"+
- ".\3\2\2\2\u01b3\u01b4\7y\2\2\u01b4\u01b5\7j\2\2\u01b5\u01b6\7k\2\2\u01b6"+
- "\u01b7\7n\2\2\u01b7\u01b8\7g\2\2\u01b8\60\3\2\2\2\u01b9\u01ba\7f\2\2\u01ba"+
- "\u01bb\7q\2\2\u01bb\62\3\2\2\2\u01bc\u01bd\7h\2\2\u01bd\u01be\7q\2\2\u01be"+
- "\u01bf\7t\2\2\u01bf\64\3\2\2\2\u01c0\u01c1\7h\2\2\u01c1\u01c2\7q\2\2\u01c2"+
- "\u01c3\7t\2\2\u01c3\u01c4\7g\2\2\u01c4\u01c5\7c\2\2\u01c5\u01c6\7e\2\2"+
- "\u01c6\u01c7\7j\2\2\u01c7\66\3\2\2\2\u01c8\u01c9\7k\2\2\u01c9\u01ca\7"+
- "p\2\2\u01ca8\3\2\2\2\u01cb\u01cc\7h\2\2\u01cc\u01cd\7t\2\2\u01cd\u01ce"+
- "\7q\2\2\u01ce\u01cf\7o\2\2\u01cf:\3\2\2\2\u01d0\u01d1\7q\2\2\u01d1\u01d2"+
- "\7w\2\2\u01d2\u01d3\7v\2\2\u01d3<\3\2\2\2\u01d4\u01d5\7B\2\2\u01d5\u01d6"+
- "\7j\2\2\u01d6\u01d7\7c\2\2\u01d7\u01d8\7x\2\2\u01d8\u01d9\7q\2\2\u01d9"+
- "\u01da\7e\2\2\u01da>\3\2\2\2\u01db\u01dc\7e\2\2\u01dc\u01dd\7j\2\2\u01dd"+
- "\u01de\7q\2\2\u01de\u01df\7q\2\2\u01df\u01e0\7u\2\2\u01e0\u01e1\7g\2\2"+
- "\u01e1@\3\2\2\2\u01e2\u01e3\7w\2\2\u01e3\u01e4\7p\2\2\u01e4\u01e5\7k\2"+
- "\2\u01e5\u01e6\7h\2\2\u01e6\u01e7\7q\2\2\u01e7\u01e8\7t\2\2\u01e8\u01e9"+
- "\7o\2\2\u01e9B\3\2\2\2\u01ea\u01eb\7t\2\2\u01eb\u01ec\7g\2\2\u01ec\u01ed"+
- "\7r\2\2\u01ed\u01ee\7g\2\2\u01ee\u01ef\7c\2\2\u01ef\u01f0\7v\2\2\u01f0"+
- "D\3\2\2\2\u01f1\u01f2\7t\2\2\u01f2\u01f3\7g\2\2\u01f3\u01f4\7v\2\2\u01f4"+
- "\u01f5\7w\2\2\u01f5\u01f6\7t\2\2\u01f6\u01f7\7p\2\2\u01f7F\3\2\2\2\u01f8"+
- "\u01f9\7u\2\2\u01f9\u01fa\7w\2\2\u01fa\u01fb\7e\2\2\u01fb\u01fc\7e\2\2"+
- "\u01fc\u01fd\7g\2\2\u01fd\u01fe\7u\2\2\u01fe\u01ff\7u\2\2\u01ffH\3\2\2"+
- "\2\u0200\u0201\7w\2\2\u0201\u0202\7p\2\2\u0202\u0203\7v\2\2\u0203\u0204"+
- "\7k\2\2\u0204\u0205\7n\2\2\u0205J\3\2\2\2\u0206\u0207\7h\2\2\u0207\u0208"+
- "\7c\2\2\u0208\u0209\7k\2\2\u0209\u020a\7n\2\2\u020a\u020b\7w\2\2\u020b"+
- "\u020c\7t\2\2\u020c\u020d\7g\2\2\u020dL\3\2\2\2\u020e\u020f\7e\2\2\u020f"+
- "\u0210\7q\2\2\u0210\u0211\7p\2\2\u0211\u0212\7v\2\2\u0212\u0213\7k\2\2"+
- "\u0213\u0214\7p\2\2\u0214\u0215\7w\2\2\u0215\u0216\7g\2\2\u0216N\3\2\2"+
- "\2\u0217\u0218\7d\2\2\u0218\u0219\7t\2\2\u0219\u021a\7g\2\2\u021a\u021b"+
- "\7c\2\2\u021b\u021c\7m\2\2\u021cP\3\2\2\2\u021d\u021e\7g\2\2\u021e\u021f"+
- "\7o\2\2\u021f\u0220\7r\2\2\u0220\u0221\7v\2\2\u0221\u0222\7{\2\2\u0222"+
- "\u0223\7O\2\2\u0223\u0224\7c\2\2\u0224\u0225\7r\2\2\u0225R\3\2\2\2\u0226"+
- "\u0227\7g\2\2\u0227\u0228\7o\2\2\u0228\u0229\7r\2\2\u0229\u022a\7v\2\2"+
- "\u022a\u022b\7{\2\2\u022b\u022c\7U\2\2\u022c\u022d\7g\2\2\u022d\u022e"+
- "\7v\2\2\u022eT\3\2\2\2\u022f\u0230\7g\2\2\u0230\u0231\7o\2\2\u0231\u0232"+
- "\7r\2\2\u0232\u0233\7v\2\2\u0233\u0234\7{\2\2\u0234\u0235\7N\2\2\u0235"+
- "\u0236\7k\2\2\u0236\u0237\7u\2\2\u0237\u0238\7v\2\2\u0238V\3\2\2\2\u0239"+
- "\u023a\7g\2\2\u023a\u023b\7o\2\2\u023b\u023c\7r\2\2\u023c\u023d\7v\2\2"+
- "\u023d\u023e\7{\2\2\u023e\u023f\7U\2\2\u023f\u0240\7v\2\2\u0240\u0241"+
- "\7t\2\2\u0241\u0242\7w\2\2\u0242\u0243\7e\2\2\u0243\u0244\7v\2\2\u0244"+
- "\u0245\7w\2\2\u0245\u0246\7t\2\2\u0246\u0247\7g\2\2\u0247X\3\2\2\2\u0248"+
- "\u0249\7o\2\2\u0249\u024a\7q\2\2\u024a\u024b\7f\2\2\u024b\u024c\7k\2\2"+
- "\u024c\u024d\7h\2\2\u024d\u024e\7k\2\2\u024e\u024f\7g\2\2\u024f\u0250"+
- "\7u\2\2\u0250Z\3\2\2\2\u0251\u0252\7w\2\2\u0252\u0253\7u\2\2\u0253\u0254"+
- "\7g\2\2\u0254\u0255\7u\2\2\u0255\\\3\2\2\2\u0256\u0257\7k\2\2\u0257\u0258"+
- "\7p\2\2\u0258\u0259\7e\2\2\u0259\u025a\7n\2\2\u025a\u025b\7w\2\2\u025b"+
- "\u025c\7f\2\2\u025c\u025d\7g\2\2\u025d^\3\2\2\2\u025e\u025f\7z\2\2\u025f"+
- "\u0260\7q\2\2\u0260\u0261\7t\2\2\u0261`\3\2\2\2\u0262\u0263\7c\2\2\u0263"+
- "\u0264\7d\2\2\u0264\u0265\7u\2\2\u0265b\3\2\2\2\u0266\u0267\7c\2\2\u0267"+
- "\u0268\7e\2\2\u0268\u0269\7q\2\2\u0269\u026a\7u\2\2\u026ad\3\2\2\2\u026b"+
- "\u026c\7c\2\2\u026c\u026d\7u\2\2\u026d\u026e\7k\2\2\u026e\u026f\7p\2\2"+
- "\u026ff\3\2\2\2\u0270\u0271\7c\2\2\u0271\u0272\7v\2\2\u0272\u0273\7c\2"+
- "\2\u0273\u0274\7p\2\2\u0274h\3\2\2\2\u0275\u0276\7e\2\2\u0276\u0277\7"+
- "q\2\2\u0277\u0278\7u\2\2\u0278j\3\2\2\2\u0279\u027a\7n\2\2\u027a\u027b"+
- "\7q\2\2\u027b\u027c\7i\2\2\u027cl\3\2\2\2\u027d\u027e\7r\2\2\u027e\u027f"+
- "\7k\2\2\u027fn\3\2\2\2\u0280\u0281\7r\2\2\u0281\u0282\7q\2\2\u0282\u0283"+
- "\7y\2\2\u0283p\3\2\2\2\u0284\u0285\7u\2\2\u0285\u0286\7k\2\2\u0286\u0287"+
- "\7p\2\2\u0287r\3\2\2\2\u0288\u0289\7u\2\2\u0289\u028a\7s\2\2\u028a\u028b"+
- "\7t\2\2\u028b\u028c\7v\2\2\u028ct\3\2\2\2\u028d\u028e\7v\2\2\u028e\u028f"+
- "\7c\2\2\u028f\u0290\7p\2\2\u0290v\3\2\2\2\u0291\u0292\7n\2\2\u0292\u0293"+
- "\7g\2\2\u0293\u0294\7p\2\2\u0294x\3\2\2\2\u0295\u0296\7c\2\2\u0296\u0297"+
- "\7t\2\2\u0297\u0298\7t\2\2\u0298\u0299\7c\2\2\u0299\u029a\7{\2\2\u029a"+
- "z\3\2\2\2\u029b\u029c\7u\2\2\u029c\u029d\7g\2\2\u029d\u029e\7v\2\2\u029e"+
- "|\3\2\2\2\u029f\u02a0\7c\2\2\u02a0\u02a1\7v\2\2\u02a1~\3\2\2\2\u02a2\u02a3"+
- "\7d\2\2\u02a3\u02a4\7g\2\2\u02a4\u02a5\7n\2\2\u02a5\u02a6\7q\2\2\u02a6"+
- "\u02a7\7p\2\2\u02a7\u02a8\7i\2\2\u02a8\u02a9\7u\2\2\u02a9\u02aa\7V\2\2"+
- "\u02aa\u02ab\7q\2\2\u02ab\u0080\3\2\2\2\u02ac\u02ad\7f\2\2\u02ad\u02ae"+
- "\7g\2\2\u02ae\u02af\7n\2\2\u02af\u02b0\7g\2\2\u02b0\u02b1\7v\2\2\u02b1"+
- "\u02b2\7g\2\2\u02b2\u0082\3\2\2\2\u02b3\u02b4\7g\2\2\u02b4\u02b5\7o\2"+
- "\2\u02b5\u02b6\7r\2\2\u02b6\u02b7\7v\2\2\u02b7\u02b8\7{\2\2\u02b8\u0084"+
- "\3\2\2\2\u02b9\u02ba\7g\2\2\u02ba\u02bb\7p\2\2\u02bb\u02bc\7f\2\2\u02bc"+
- "\u0086\3\2\2\2\u02bd\u02be\7h\2\2\u02be\u02bf\7k\2\2\u02bf\u02c0\7t\2"+
- "\2\u02c0\u02c1\7u\2\2\u02c1\u02c2\7v\2\2\u02c2\u0088\3\2\2\2\u02c3\u02c4"+
- "\7h\2\2\u02c4\u02c5\7n\2\2\u02c5\u02c6\7q\2\2\u02c6\u02c7\7c\2\2\u02c7"+
- "\u02c8\7v\2\2\u02c8\u008a\3\2\2\2\u02c9\u02ca\7k\2\2\u02ca\u02cb\7p\2"+
- "\2\u02cb\u02cc\7u\2\2\u02cc\u02cd\7g\2\2\u02cd\u02ce\7t\2\2\u02ce\u02cf"+
- "\7v\2\2\u02cf\u008c\3\2\2\2\u02d0\u02d1\7m\2\2\u02d1\u02d2\7g\2\2\u02d2"+
- "\u02d3\7{\2\2\u02d3\u02d4\7u\2\2\u02d4\u008e\3\2\2\2\u02d5\u02d6\7k\2"+
- "\2\u02d6\u02d7\7p\2\2\u02d7\u02d8\7v\2\2\u02d8\u0090\3\2\2\2\u02d9\u02da"+
- "\7d\2\2\u02da\u02db\7q\2\2\u02db\u02dc\7q\2\2\u02dc\u02dd\7n\2\2\u02dd"+
- "\u02de\7g\2\2\u02de\u02df\7c\2\2\u02df\u02e0\7p\2\2\u02e0\u0092\3\2\2"+
- "\2\u02e1\u02e2\7r\2\2\u02e2\u02e3\7t\2\2\u02e3\u02e4\7k\2\2\u02e4\u02e5"+
- "\7p\2\2\u02e5\u02e6\7v\2\2\u02e6\u0094\3\2\2\2\u02e7\u02e8\7r\2\2\u02e8"+
- "\u02e9\7q\2\2\u02e9\u02ea\7r\2\2\u02ea\u02eb\7D\2\2\u02eb\u02ec\7c\2\2"+
- "\u02ec\u02ed\7e\2\2\u02ed\u02ee\7m\2\2\u02ee\u0096\3\2\2\2\u02ef\u02f0"+
- "\7r\2\2\u02f0\u02f1\7q\2\2\u02f1\u02f2\7r\2\2\u02f2\u02f3\7H\2\2\u02f3"+
- "\u02f4\7t\2\2\u02f4\u02f5\7q\2\2\u02f5\u02f6\7p\2\2\u02f6\u02f7\7v\2\2"+
- "\u02f7\u0098\3\2\2\2\u02f8\u02f9\7r\2\2\u02f9\u02fa\7w\2\2\u02fa\u02fb"+
- "\7u\2\2\u02fb\u02fc\7j\2\2\u02fc\u02fd\7D\2\2\u02fd\u02fe\7c\2\2\u02fe"+
- "\u02ff\7e\2\2\u02ff\u0300\7m\2\2\u0300\u009a\3\2\2\2\u0301\u0302\7r\2"+
- "\2\u0302\u0303\7w\2\2\u0303\u0304\7u\2\2\u0304\u0305\7j\2\2\u0305\u0306"+
- "\7H\2\2\u0306\u0307\7t\2\2\u0307\u0308\7q\2\2\u0308\u0309\7p\2\2\u0309"+
- "\u030a\7v\2\2\u030a\u009c\3\2\2\2\u030b\u030c\7t\2\2\u030c\u030d\7g\2"+
- "\2\u030d\u030e\7o\2\2\u030e\u030f\7q\2\2\u030f\u0310\7x\2\2\u0310\u0311"+
- "\7g\2\2\u0311\u009e\3\2\2\2\u0312\u0313\7t\2\2\u0313\u0314\7g\2\2\u0314"+
- "\u0315\7o\2\2\u0315\u0316\7q\2\2\u0316\u0317\7x\2\2\u0317\u0318\7g\2\2"+
- "\u0318\u0319\7C\2\2\u0319\u031a\7n\2\2\u031a\u031b\7n\2\2\u031b\u031c"+
- "\7G\2\2\u031c\u031d\7s\2\2\u031d\u031e\7V\2\2\u031e\u031f\7q\2\2\u031f"+
- "\u00a0\3\2\2\2\u0320\u0321\7t\2\2\u0321\u0322\7g\2\2\u0322\u0323\7o\2"+
- "\2\u0323\u0324\7q\2\2\u0324\u0325\7x\2\2\u0325\u0326\7g\2\2\u0326\u0327"+
- "\7C\2\2\u0327\u0328\7v\2\2\u0328\u00a2\3\2\2\2\u0329\u032a\7u\2\2\u032a"+
- "\u032b\7k\2\2\u032b\u032c\7p\2\2\u032c\u032d\7i\2\2\u032d\u032e\7n\2\2"+
- "\u032e\u032f\7g\2\2\u032f\u0330\7v\2\2\u0330\u0331\7q\2\2\u0331\u0332"+
- "\7p\2\2\u0332\u0333\7U\2\2\u0333\u0334\7g\2\2\u0334\u0335\7v\2\2\u0335"+
- "\u00a4\3\2\2\2\u0336\u0337\7u\2\2\u0337\u0338\7k\2\2\u0338\u0339\7|\2"+
- "\2\u0339\u033a\7g\2\2\u033a\u00a6\3\2\2\2\u033b\u033c\7u\2\2\u033c\u033d"+
- "\7r\2\2\u033d\u033e\7n\2\2\u033e\u033f\7k\2\2\u033f\u0340\7v\2\2\u0340"+
- "\u00a8\3\2\2\2\u0341\u0342\7v\2\2\u0342\u0343\7q\2\2\u0343\u0344\7r\2"+
- "\2\u0344\u0345\7D\2\2\u0345\u0346\7c\2\2\u0346\u0347\7e\2\2\u0347\u0348"+
- "\7m\2\2\u0348\u00aa\3\2\2\2\u0349\u034a\7v\2\2\u034a\u034b\7q\2\2\u034b"+
- "\u034c\7r\2\2\u034c\u034d\7H\2\2\u034d\u034e\7t\2\2\u034e\u034f\7q\2\2"+
- "\u034f\u0350\7p\2\2\u0350\u0351\7v\2\2\u0351\u00ac\3\2\2\2\u0352\u0353"+
- "\7w\2\2\u0353\u0354\7r\2\2\u0354\u0355\7f\2\2\u0355\u0356\7c\2\2\u0356"+
- "\u0357\7v\2\2\u0357\u0358\7g\2\2\u0358\u00ae\3\2\2\2\u0359\u035a\7w\2"+
- "\2\u035a\u035b\7p\2\2\u035b\u035c\7k\2\2\u035c\u035d\7h\2\2\u035d\u035e"+
- "\7q\2\2\u035e\u035f\7t\2\2\u035f\u0360\7o\2\2\u0360\u0361\7P\2\2\u0361"+
- "\u0362\7c\2\2\u0362\u0363\7v\2\2\u0363\u00b0\3\2\2\2\u0364\u0365\7h\2"+
- "\2\u0365\u0366\7n\2\2\u0366\u0367\7k\2\2\u0367\u0368\7r\2\2\u0368\u00b2"+
- "\3\2\2\2\u0369\u036a\7w\2\2\u036a\u036b\7p\2\2\u036b\u036c\7k\2\2\u036c"+
- "\u036d\7h\2\2\u036d\u036e\7q\2\2\u036e\u036f\7t\2\2\u036f\u0370\7o\2\2"+
- "\u0370\u0371\7H\2\2\u0371\u0372\7n\2\2\u0372\u0373\7q\2\2\u0373\u0374"+
- "\7c\2\2\u0374\u0375\7v\2\2\u0375\u00b4\3\2\2\2\u0376\u0377\7w\2\2\u0377"+
- "\u0378\7p\2\2\u0378\u0379\7k\2\2\u0379\u037a\7h\2\2\u037a\u037b\7q\2\2"+
- "\u037b\u037c\7t\2\2\u037c\u037d\7o\2\2\u037d\u037e\7R\2\2\u037e\u037f"+
- "\7g\2\2\u037f\u0380\7t\2\2\u0380\u0381\7o\2\2\u0381\u00b6\3\2\2\2\u0382"+
- "\u0383\7u\2\2\u0383\u0384\7\60\2\2\u0384\u0385\7v\2\2\u0385\u0386\7\60"+
- "\2\2\u0386\u00b8\3\2\2\2\u0387\u0388\7&\2\2\u0388\u00ba\3\2\2\2\u0389"+
- "\u038a\7/\2\2\u038a\u038b\7@\2\2\u038b\u00bc\3\2\2\2\u038c\u038d\7%\2"+
- "\2\u038d\u00be\3\2\2\2\u038e\u038f\7B\2\2\u038f\u00c0\3\2\2\2\u0390\u0391"+
- "\7E\2\2\u0391\u0392\7q\2\2\u0392\u0393\7w\2\2\u0393\u0394\7p\2\2\u0394"+
- "\u0395\7v\2\2\u0395\u00c2\3\2\2\2\u0396\u0397\7W\2\2\u0397\u00c4\3\2\2"+
- "\2\u0398\u0399\7`\2\2\u0399\u00c6\3\2\2\2\u039a\u039b\7^\2\2\u039b\u00c8"+
- "\3\2\2\2\u039c\u039e\t\5\2\2\u039d\u039c\3\2\2\2\u039e\u039f\3\2\2\2\u039f"+
- "\u039d\3\2\2\2\u039f\u03a0\3\2\2\2\u03a0\u00ca\3\2\2\2\u03a1\u03a3\t\5"+
- "\2\2\u03a2\u03a1\3\2\2\2\u03a3\u03a4\3\2\2\2\u03a4\u03a2\3\2\2\2\u03a4"+
- "\u03a5\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u03a8\5\u0111\u0089\2\u03a7\u03a9"+
- "\t\5\2\2\u03a8\u03a7\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa\u03a8\3\2\2\2\u03aa"+
- "\u03ab\3\2\2\2\u03ab\u00cc\3\2\2\2\u03ac\u03ad\7v\2\2\u03ad\u03ae\7t\2"+
- "\2\u03ae\u03af\7w\2\2\u03af\u03b6\7g\2\2\u03b0\u03b1\7h\2\2\u03b1\u03b2"+
- "\7c\2\2\u03b2\u03b3\7n\2\2\u03b3\u03b4\7u\2\2\u03b4\u03b6\7g\2\2\u03b5"+
- "\u03ac\3\2\2\2\u03b5\u03b0\3\2\2\2\u03b6\u00ce\3\2\2\2\u03b7\u03bc\5\t"+
- "\5\2\u03b8\u03bb\5\13\6\2\u03b9\u03bb\5\t\5\2\u03ba\u03b8\3\2\2\2\u03ba"+
- "\u03b9\3\2\2\2\u03bb\u03be\3\2\2\2\u03bc\u03ba\3\2\2\2\u03bc\u03bd\3\2"+
- "\2\2\u03bd\u00d0\3\2\2\2\u03be\u03bc\3\2\2\2\u03bf\u03c0\7-\2\2\u03c0"+
- "\u03c1\7-\2\2\u03c1\u00d2\3\2\2\2\u03c2\u03c3\7/\2\2\u03c3\u03c4\7/\2"+
- "\2\u03c4\u00d4\3\2\2\2\u03c5\u03c6\7(\2\2\u03c6\u00d6\3\2\2\2\u03c7\u03c8"+
- "\7-\2\2\u03c8\u03c9\7\'\2\2\u03c9\u00d8\3\2\2\2\u03ca\u03cb\7/\2\2\u03cb"+
- "\u03cc\7\'\2\2\u03cc\u00da\3\2\2\2\u03cd\u03ce\7-\2\2\u03ce\u03cf\7-\2"+
- "\2\u03cf\u03d0\7\'\2\2\u03d0\u00dc\3\2\2\2\u03d1\u03d2\7/\2\2\u03d2\u03d3"+
- "\7/\2\2\u03d3\u03d4\7\'\2\2\u03d4\u00de\3\2\2\2\u03d5\u03d6\7>\2\2\u03d6"+
- "\u00e0\3\2\2\2\u03d7\u03d8\7@\2\2\u03d8\u00e2\3\2\2\2\u03d9\u03da\7>\2"+
- "\2\u03da\u03db\7?\2\2\u03db\u00e4\3\2\2\2\u03dc\u03dd\7@\2\2\u03dd\u03de"+
- "\7?\2\2\u03de\u00e6\3\2\2\2\u03df\u03e0\7?\2\2\u03e0\u03e1\7?\2\2\u03e1"+
- "\u00e8\3\2\2\2\u03e2\u03e3\7#\2\2\u03e3\u03e4\7?\2\2\u03e4\u00ea\3\2\2"+
- "\2\u03e5\u03fb\7?\2\2\u03e6\u03e7\7-\2\2\u03e7\u03fb\7?\2\2\u03e8\u03e9"+
- "\7/\2\2\u03e9\u03fb\7?\2\2\u03ea\u03eb\7,\2\2\u03eb\u03fb\7?\2\2\u03ec"+
- "\u03ed\7\61\2\2\u03ed\u03fb\7?\2\2\u03ee\u03ef\7\'\2\2\u03ef\u03fb\7?"+
- "\2\2\u03f0\u03f1\7>\2\2\u03f1\u03f2\7>\2\2\u03f2\u03fb\7?\2\2\u03f3\u03f4"+
- "\7@\2\2\u03f4\u03f5\7@\2\2\u03f5\u03fb\7?\2\2\u03f6\u03f7\7(\2\2\u03f7"+
- "\u03fb\7?\2\2\u03f8\u03f9\7~\2\2\u03f9\u03fb\7?\2\2\u03fa\u03e5\3\2\2"+
- "\2\u03fa\u03e6\3\2\2\2\u03fa\u03e8\3\2\2\2\u03fa\u03ea\3\2\2\2\u03fa\u03ec"+
- "\3\2\2\2\u03fa\u03ee\3\2\2\2\u03fa\u03f0\3\2\2\2\u03fa\u03f3\3\2\2\2\u03fa"+
- "\u03f6\3\2\2\2\u03fa\u03f8\3\2\2\2\u03fb\u00ec\3\2\2\2\u03fc\u03fd\7/"+
- "\2\2\u03fd\u00ee\3\2\2\2\u03fe\u03ff\7-\2\2\u03ff\u00f0\3\2\2\2\u0400"+
- "\u0401\7,\2\2\u0401\u00f2\3\2\2\2\u0402\u0403\7\61\2\2\u0403\u00f4\3\2"+
- "\2\2\u0404\u0405\7\'\2\2\u0405\u00f6\3\2\2\2\u0406\u0407\7*\2\2\u0407"+
- "\u00f8\3\2\2\2\u0408\u0409\7+\2\2\u0409\u00fa\3\2\2\2\u040a\u040b\7>\2"+
- "\2\u040b\u040c\7>\2\2\u040c\u00fc\3\2\2\2\u040d\u040e\7@\2\2\u040e\u040f"+
- "\7@\2\2\u040f\u00fe\3\2\2\2\u0410\u0411\7~\2\2\u0411\u0412\7~\2\2\u0412"+
- "\u0100\3\2\2\2\u0413\u0414\7(\2\2\u0414\u0415\7(\2\2\u0415\u0102\3\2\2"+
- "\2\u0416\u0417\7#\2\2\u0417\u0104\3\2\2\2\u0418\u0419\7=\2\2\u0419\u0106"+
- "\3\2\2\2\u041a\u041b\7<\2\2\u041b\u0108\3\2\2\2\u041c\u041d\7~\2\2\u041d"+
- "\u010a\3\2\2\2\u041e\u041f\7}\2\2\u041f\u010c\3\2\2\2\u0420\u0421\7\177"+
- "\2\2\u0421\u010e\3\2\2\2\u0422\u0423\7.\2\2\u0423\u0110\3\2\2\2\u0424"+
- "\u0425\7\60\2\2\u0425\u0112\3\2\2\2\u0426\u0427\7]\2\2\u0427\u0114\3\2"+
- "\2\2\u0428\u0429\7_\2\2\u0429\u0116\3\2\2\2\u042a\u042b\7$\2\2\u042b\u0118"+
- "\3\2\2\2\u042c\u042d\7A\2\2\u042d\u011a\3\2\2\2\u042e\u0432\7$\2\2\u042f"+
- "\u0431\n\7\2\2\u0430\u042f\3\2\2\2\u0431\u0434\3\2\2\2\u0432\u0430\3\2"+
- "\2\2\u0432\u0433\3\2\2\2\u0433\u0435\3\2\2\2\u0434\u0432\3\2\2\2\u0435"+
- "\u0436\7$\2\2\u0436\u011c\3\2\2\2\16\2\u0120\u012a\u0138\u039f\u03a4\u03aa"+
- "\u03b5\u03ba\u03bc\u03fa\u0432\3\b\2\2";
+ "\u0113\u0088\u0115\u0089\u0117\u008a\u0119\u008b\u011b\u008c\u011d\u008d"+
+ "\u011f\u008e\3\2\b\5\2\13\f\17\17\"\"\4\2\f\f\17\17\5\2C\\aac|\3\2\62"+
+ ";\3\2\63;\5\2\f\f\17\17$$\2\u045b\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2"+
+ "\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31"+
+ "\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2"+
+ "\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2"+
+ "\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2"+
+ "\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2"+
+ "I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3"+
+ "\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2"+
+ "\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2"+
+ "o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3"+
+ "\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085"+
+ "\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2"+
+ "\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097"+
+ "\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2"+
+ "\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9"+
+ "\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2"+
+ "\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb"+
+ "\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2"+
+ "\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd"+
+ "\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2"+
+ "\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df"+
+ "\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2"+
+ "\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1"+
+ "\3\2\2\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2"+
+ "\2\2\u00fb\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103"+
+ "\3\2\2\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2"+
+ "\2\2\u010d\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115"+
+ "\3\2\2\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2"+
+ "\2\2\u011f\3\2\2\2\3\u0122\3\2\2\2\5\u0128\3\2\2\2\7\u0136\3\2\2\2\t\u0141"+
+ "\3\2\2\2\13\u0143\3\2\2\2\r\u0145\3\2\2\2\17\u0147\3\2\2\2\21\u014f\3"+
+ "\2\2\2\23\u0157\3\2\2\2\25\u0161\3\2\2\2\27\u016c\3\2\2\2\31\u0176\3\2"+
+ "\2\2\33\u017f\3\2\2\2\35\u018b\3\2\2\2\37\u0195\3\2\2\2!\u019d\3\2\2\2"+
+ "#\u01a2\3\2\2\2%\u01a6\3\2\2\2\'\u01ab\3\2\2\2)\u01b2\3\2\2\2+\u01b9\3"+
+ "\2\2\2-\u01bc\3\2\2\2/\u01c0\3\2\2\2\61\u01c3\3\2\2\2\63\u01c8\3\2\2\2"+
+ "\65\u01ce\3\2\2\2\67\u01d1\3\2\2\29\u01d5\3\2\2\2;\u01dd\3\2\2\2=\u01e0"+
+ "\3\2\2\2?\u01e5\3\2\2\2A\u01e9\3\2\2\2C\u01f0\3\2\2\2E\u01f7\3\2\2\2G"+
+ "\u01ff\3\2\2\2I\u0206\3\2\2\2K\u020d\3\2\2\2M\u0215\3\2\2\2O\u021b\3\2"+
+ "\2\2Q\u0223\3\2\2\2S\u022c\3\2\2\2U\u0232\3\2\2\2W\u023b\3\2\2\2Y\u0244"+
+ "\3\2\2\2[\u024e\3\2\2\2]\u025d\3\2\2\2_\u0266\3\2\2\2a\u026b\3\2\2\2c"+
+ "\u0273\3\2\2\2e\u0277\3\2\2\2g\u027b\3\2\2\2i\u0280\3\2\2\2k\u0285\3\2"+
+ "\2\2m\u028a\3\2\2\2o\u028e\3\2\2\2q\u0292\3\2\2\2s\u0295\3\2\2\2u\u0299"+
+ "\3\2\2\2w\u029d\3\2\2\2y\u02a2\3\2\2\2{\u02a6\3\2\2\2}\u02aa\3\2\2\2\177"+
+ "\u02b0\3\2\2\2\u0081\u02b4\3\2\2\2\u0083\u02b7\3\2\2\2\u0085\u02c1\3\2"+
+ "\2\2\u0087\u02c8\3\2\2\2\u0089\u02ce\3\2\2\2\u008b\u02d2\3\2\2\2\u008d"+
+ "\u02d8\3\2\2\2\u008f\u02de\3\2\2\2\u0091\u02e5\3\2\2\2\u0093\u02ea\3\2"+
+ "\2\2\u0095\u02ee\3\2\2\2\u0097\u02f6\3\2\2\2\u0099\u02fc\3\2\2\2\u009b"+
+ "\u0304\3\2\2\2\u009d\u030d\3\2\2\2\u009f\u0316\3\2\2\2\u00a1\u0320\3\2"+
+ "\2\2\u00a3\u0327\3\2\2\2\u00a5\u0335\3\2\2\2\u00a7\u033e\3\2\2\2\u00a9"+
+ "\u034b\3\2\2\2\u00ab\u0350\3\2\2\2\u00ad\u0356\3\2\2\2\u00af\u035e\3\2"+
+ "\2\2\u00b1\u0367\3\2\2\2\u00b3\u036e\3\2\2\2\u00b5\u0379\3\2\2\2\u00b7"+
+ "\u037e\3\2\2\2\u00b9\u038b\3\2\2\2\u00bb\u0397\3\2\2\2\u00bd\u039c\3\2"+
+ "\2\2\u00bf\u039e\3\2\2\2\u00c1\u03a1\3\2\2\2\u00c3\u03a3\3\2\2\2\u00c5"+
+ "\u03a5\3\2\2\2\u00c7\u03ab\3\2\2\2\u00c9\u03ad\3\2\2\2\u00cb\u03af\3\2"+
+ "\2\2\u00cd\u03b2\3\2\2\2\u00cf\u03b7\3\2\2\2\u00d1\u03ca\3\2\2\2\u00d3"+
+ "\u03cc\3\2\2\2\u00d5\u03d4\3\2\2\2\u00d7\u03d7\3\2\2\2\u00d9\u03da\3\2"+
+ "\2\2\u00db\u03dc\3\2\2\2\u00dd\u03df\3\2\2\2\u00df\u03e2\3\2\2\2\u00e1"+
+ "\u03e6\3\2\2\2\u00e3\u03ea\3\2\2\2\u00e5\u03ec\3\2\2\2\u00e7\u03ee\3\2"+
+ "\2\2\u00e9\u03f1\3\2\2\2\u00eb\u03f4\3\2\2\2\u00ed\u03f7\3\2\2\2\u00ef"+
+ "\u040f\3\2\2\2\u00f1\u0411\3\2\2\2\u00f3\u0413\3\2\2\2\u00f5\u0415\3\2"+
+ "\2\2\u00f7\u0417\3\2\2\2\u00f9\u0419\3\2\2\2\u00fb\u041b\3\2\2\2\u00fd"+
+ "\u041d\3\2\2\2\u00ff\u041f\3\2\2\2\u0101\u0422\3\2\2\2\u0103\u0425\3\2"+
+ "\2\2\u0105\u0428\3\2\2\2\u0107\u042b\3\2\2\2\u0109\u042d\3\2\2\2\u010b"+
+ "\u042f\3\2\2\2\u010d\u0431\3\2\2\2\u010f\u0433\3\2\2\2\u0111\u0435\3\2"+
+ "\2\2\u0113\u0437\3\2\2\2\u0115\u0439\3\2\2\2\u0117\u043b\3\2\2\2\u0119"+
+ "\u043d\3\2\2\2\u011b\u043f\3\2\2\2\u011d\u0441\3\2\2\2\u011f\u0443\3\2"+
+ "\2\2\u0121\u0123\t\2\2\2\u0122\u0121\3\2\2\2\u0123\u0124\3\2\2\2\u0124"+
+ "\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125\u0126\3\2\2\2\u0126\u0127\b\2"+
+ "\2\2\u0127\4\3\2\2\2\u0128\u0129\7\61\2\2\u0129\u012a\7,\2\2\u012a\u012e"+
+ "\3\2\2\2\u012b\u012d\13\2\2\2\u012c\u012b\3\2\2\2\u012d\u0130\3\2\2\2"+
+ "\u012e\u012f\3\2\2\2\u012e\u012c\3\2\2\2\u012f\u0131\3\2\2\2\u0130\u012e"+
+ "\3\2\2\2\u0131\u0132\7,\2\2\u0132\u0133\7\61\2\2\u0133\u0134\3\2\2\2\u0134"+
+ "\u0135\b\3\2\2\u0135\6\3\2\2\2\u0136\u0137\7\61\2\2\u0137\u0138\7\61\2"+
+ "\2\u0138\u013c\3\2\2\2\u0139\u013b\n\3\2\2\u013a\u0139\3\2\2\2\u013b\u013e"+
+ "\3\2\2\2\u013c\u013a\3\2\2\2\u013c\u013d\3\2\2\2\u013d\u013f\3\2\2\2\u013e"+
+ "\u013c\3\2\2\2\u013f\u0140\b\4\2\2\u0140\b\3\2\2\2\u0141\u0142\t\4\2\2"+
+ "\u0142\n\3\2\2\2\u0143\u0144\t\5\2\2\u0144\f\3\2\2\2\u0145\u0146\t\6\2"+
+ "\2\u0146\16\3\2\2\2\u0147\u0148\7B\2\2\u0148\u0149\7c\2\2\u0149\u014a"+
+ "\7u\2\2\u014a\u014b\7u\2\2\u014b\u014c\7g\2\2\u014c\u014d\7t\2\2\u014d"+
+ "\u014e\7v\2\2\u014e\20\3\2\2\2\u014f\u0150\7B\2\2\u0150\u0151\7c\2\2\u0151"+
+ "\u0152\7u\2\2\u0152\u0153\7u\2\2\u0153\u0154\7w\2\2\u0154\u0155\7o\2\2"+
+ "\u0155\u0156\7g\2\2\u0156\22\3\2\2\2\u0157\u0158\7B\2\2\u0158\u0159\7"+
+ "u\2\2\u0159\u015a\7{\2\2\u015a\u015b\7o\2\2\u015b\u015c\7d\2\2\u015c\u015d"+
+ "\7q\2\2\u015d\u015e\7n\2\2\u015e\u015f\7k\2\2\u015f\u0160\7e\2\2\u0160"+
+ "\24\3\2\2\2\u0161\u0162\7B\2\2\u0162\u0163\7k\2\2\u0163\u0164\7p\2\2\u0164"+
+ "\u0165\7x\2\2\u0165\u0166\7c\2\2\u0166\u0167\7t\2\2\u0167\u0168\7k\2\2"+
+ "\u0168\u0169\7c\2\2\u0169\u016a\7p\2\2\u016a\u016b\7v\2\2\u016b\26\3\2"+
+ "\2\2\u016c\u016d\7B\2\2\u016d\u016e\7t\2\2\u016e\u016f\7g\2\2\u016f\u0170"+
+ "\7s\2\2\u0170\u0171\7w\2\2\u0171\u0172\7k\2\2\u0172\u0173\7t\2\2\u0173"+
+ "\u0174\7g\2\2\u0174\u0175\7u\2\2\u0175\30\3\2\2\2\u0176\u0177\7B\2\2\u0177"+
+ "\u0178\7g\2\2\u0178\u0179\7p\2\2\u0179\u017a\7u\2\2\u017a\u017b\7w\2\2"+
+ "\u017b\u017c\7t\2\2\u017c\u017d\7g\2\2\u017d\u017e\7u\2\2\u017e\32\3\2"+
+ "\2\2\u017f\u0180\7B\2\2\u0180\u0181\7n\2\2\u0181\u0182\7q\2\2\u0182\u0183"+
+ "\7q\2\2\u0183\u0184\7r\2\2\u0184\u0185\7c\2\2\u0185\u0186\7u\2\2\u0186"+
+ "\u0187\7u\2\2\u0187\u0188\7g\2\2\u0188\u0189\7t\2\2\u0189\u018a\7v\2\2"+
+ "\u018a\34\3\2\2\2\u018b\u018c\7B\2\2\u018c\u018d\7o\2\2\u018d\u018e\7"+
+ "q\2\2\u018e\u018f\7f\2\2\u018f\u0190\7k\2\2\u0190\u0191\7h\2\2\u0191\u0192"+
+ "\7k\2\2\u0192\u0193\7g\2\2\u0193\u0194\7u\2\2\u0194\36\3\2\2\2\u0195\u0196"+
+ "\7^\2\2\u0196\u0197\7t\2\2\u0197\u0198\7g\2\2\u0198\u0199\7u\2\2\u0199"+
+ "\u019a\7w\2\2\u019a\u019b\7n\2\2\u019b\u019c\7v\2\2\u019c \3\2\2\2\u019d"+
+ "\u019e\7^\2\2\u019e\u019f\7q\2\2\u019f\u01a0\7n\2\2\u01a0\u01a1\7f\2\2"+
+ "\u01a1\"\3\2\2\2\u01a2\u01a3\7?\2\2\u01a3\u01a4\7?\2\2\u01a4\u01a5\7@"+
+ "\2\2\u01a5$\3\2\2\2\u01a6\u01a7\7>\2\2\u01a7\u01a8\7?\2\2\u01a8\u01a9"+
+ "\7?\2\2\u01a9\u01aa\7@\2\2\u01aa&\3\2\2\2\u01ab\u01ac\7h\2\2\u01ac\u01ad"+
+ "\7q\2\2\u01ad\u01ae\7t\2\2\u01ae\u01af\7c\2\2\u01af\u01b0\7n\2\2\u01b0"+
+ "\u01b1\7n\2\2\u01b1(\3\2\2\2\u01b2\u01b3\7g\2\2\u01b3\u01b4\7z\2\2\u01b4"+
+ "\u01b5\7k\2\2\u01b5\u01b6\7u\2\2\u01b6\u01b7\7v\2\2\u01b7\u01b8\7u\2\2"+
+ "\u01b8*\3\2\2\2\u01b9\u01ba\7<\2\2\u01ba\u01bb\7<\2\2\u01bb,\3\2\2\2\u01bc"+
+ "\u01bd\7~\2\2\u01bd\u01be\7/\2\2\u01be\u01bf\7@\2\2\u01bf.\3\2\2\2\u01c0"+
+ "\u01c1\7k\2\2\u01c1\u01c2\7h\2\2\u01c2\60\3\2\2\2\u01c3\u01c4\7g\2\2\u01c4"+
+ "\u01c5\7n\2\2\u01c5\u01c6\7u\2\2\u01c6\u01c7\7g\2\2\u01c7\62\3\2\2\2\u01c8"+
+ "\u01c9\7y\2\2\u01c9\u01ca\7j\2\2\u01ca\u01cb\7k\2\2\u01cb\u01cc\7n\2\2"+
+ "\u01cc\u01cd\7g\2\2\u01cd\64\3\2\2\2\u01ce\u01cf\7f\2\2\u01cf\u01d0\7"+
+ "q\2\2\u01d0\66\3\2\2\2\u01d1\u01d2\7h\2\2\u01d2\u01d3\7q\2\2\u01d3\u01d4"+
+ "\7t\2\2\u01d48\3\2\2\2\u01d5\u01d6\7h\2\2\u01d6\u01d7\7q\2\2\u01d7\u01d8"+
+ "\7t\2\2\u01d8\u01d9\7g\2\2\u01d9\u01da\7c\2\2\u01da\u01db\7e\2\2\u01db"+
+ "\u01dc\7j\2\2\u01dc:\3\2\2\2\u01dd\u01de\7k\2\2\u01de\u01df\7p\2\2\u01df"+
+ "<\3\2\2\2\u01e0\u01e1\7h\2\2\u01e1\u01e2\7t\2\2\u01e2\u01e3\7q\2\2\u01e3"+
+ "\u01e4\7o\2\2\u01e4>\3\2\2\2\u01e5\u01e6\7q\2\2\u01e6\u01e7\7w\2\2\u01e7"+
+ "\u01e8\7v\2\2\u01e8@\3\2\2\2\u01e9\u01ea\7B\2\2\u01ea\u01eb\7j\2\2\u01eb"+
+ "\u01ec\7c\2\2\u01ec\u01ed\7x\2\2\u01ed\u01ee\7q\2\2\u01ee\u01ef\7e\2\2"+
+ "\u01efB\3\2\2\2\u01f0\u01f1\7e\2\2\u01f1\u01f2\7j\2\2\u01f2\u01f3\7q\2"+
+ "\2\u01f3\u01f4\7q\2\2\u01f4\u01f5\7u\2\2\u01f5\u01f6\7g\2\2\u01f6D\3\2"+
+ "\2\2\u01f7\u01f8\7w\2\2\u01f8\u01f9\7p\2\2\u01f9\u01fa\7k\2\2\u01fa\u01fb"+
+ "\7h\2\2\u01fb\u01fc\7q\2\2\u01fc\u01fd\7t\2\2\u01fd\u01fe\7o\2\2\u01fe"+
+ "F\3\2\2\2\u01ff\u0200\7t\2\2\u0200\u0201\7g\2\2\u0201\u0202\7r\2\2\u0202"+
+ "\u0203\7g\2\2\u0203\u0204\7c\2\2\u0204\u0205\7v\2\2\u0205H\3\2\2\2\u0206"+
+ "\u0207\7t\2\2\u0207\u0208\7g\2\2\u0208\u0209\7v\2\2\u0209\u020a\7w\2\2"+
+ "\u020a\u020b\7t\2\2\u020b\u020c\7p\2\2\u020cJ\3\2\2\2\u020d\u020e\7u\2"+
+ "\2\u020e\u020f\7w\2\2\u020f\u0210\7e\2\2\u0210\u0211\7e\2\2\u0211\u0212"+
+ "\7g\2\2\u0212\u0213\7u\2\2\u0213\u0214\7u\2\2\u0214L\3\2\2\2\u0215\u0216"+
+ "\7w\2\2\u0216\u0217\7p\2\2\u0217\u0218\7v\2\2\u0218\u0219\7k\2\2\u0219"+
+ "\u021a\7n\2\2\u021aN\3\2\2\2\u021b\u021c\7h\2\2\u021c\u021d\7c\2\2\u021d"+
+ "\u021e\7k\2\2\u021e\u021f\7n\2\2\u021f\u0220\7w\2\2\u0220\u0221\7t\2\2"+
+ "\u0221\u0222\7g\2\2\u0222P\3\2\2\2\u0223\u0224\7e\2\2\u0224\u0225\7q\2"+
+ "\2\u0225\u0226\7p\2\2\u0226\u0227\7v\2\2\u0227\u0228\7k\2\2\u0228\u0229"+
+ "\7p\2\2\u0229\u022a\7w\2\2\u022a\u022b\7g\2\2\u022bR\3\2\2\2\u022c\u022d"+
+ "\7d\2\2\u022d\u022e\7t\2\2\u022e\u022f\7g\2\2\u022f\u0230\7c\2\2\u0230"+
+ "\u0231\7m\2\2\u0231T\3\2\2\2\u0232\u0233\7g\2\2\u0233\u0234\7o\2\2\u0234"+
+ "\u0235\7r\2\2\u0235\u0236\7v\2\2\u0236\u0237\7{\2\2\u0237\u0238\7O\2\2"+
+ "\u0238\u0239\7c\2\2\u0239\u023a\7r\2\2\u023aV\3\2\2\2\u023b\u023c\7g\2"+
+ "\2\u023c\u023d\7o\2\2\u023d\u023e\7r\2\2\u023e\u023f\7v\2\2\u023f\u0240"+
+ "\7{\2\2\u0240\u0241\7U\2\2\u0241\u0242\7g\2\2\u0242\u0243\7v\2\2\u0243"+
+ "X\3\2\2\2\u0244\u0245\7g\2\2\u0245\u0246\7o\2\2\u0246\u0247\7r\2\2\u0247"+
+ "\u0248\7v\2\2\u0248\u0249\7{\2\2\u0249\u024a\7N\2\2\u024a\u024b\7k\2\2"+
+ "\u024b\u024c\7u\2\2\u024c\u024d\7v\2\2\u024dZ\3\2\2\2\u024e\u024f\7g\2"+
+ "\2\u024f\u0250\7o\2\2\u0250\u0251\7r\2\2\u0251\u0252\7v\2\2\u0252\u0253"+
+ "\7{\2\2\u0253\u0254\7U\2\2\u0254\u0255\7v\2\2\u0255\u0256\7t\2\2\u0256"+
+ "\u0257\7w\2\2\u0257\u0258\7e\2\2\u0258\u0259\7v\2\2\u0259\u025a\7w\2\2"+
+ "\u025a\u025b\7t\2\2\u025b\u025c\7g\2\2\u025c\\\3\2\2\2\u025d\u025e\7o"+
+ "\2\2\u025e\u025f\7q\2\2\u025f\u0260\7f\2\2\u0260\u0261\7k\2\2\u0261\u0262"+
+ "\7h\2\2\u0262\u0263\7k\2\2\u0263\u0264\7g\2\2\u0264\u0265\7u\2\2\u0265"+
+ "^\3\2\2\2\u0266\u0267\7w\2\2\u0267\u0268\7u\2\2\u0268\u0269\7g\2\2\u0269"+
+ "\u026a\7u\2\2\u026a`\3\2\2\2\u026b\u026c\7k\2\2\u026c\u026d\7p\2\2\u026d"+
+ "\u026e\7e\2\2\u026e\u026f\7n\2\2\u026f\u0270\7w\2\2\u0270\u0271\7f\2\2"+
+ "\u0271\u0272\7g\2\2\u0272b\3\2\2\2\u0273\u0274\7z\2\2\u0274\u0275\7q\2"+
+ "\2\u0275\u0276\7t\2\2\u0276d\3\2\2\2\u0277\u0278\7c\2\2\u0278\u0279\7"+
+ "d\2\2\u0279\u027a\7u\2\2\u027af\3\2\2\2\u027b\u027c\7c\2\2\u027c\u027d"+
+ "\7e\2\2\u027d\u027e\7q\2\2\u027e\u027f\7u\2\2\u027fh\3\2\2\2\u0280\u0281"+
+ "\7c\2\2\u0281\u0282\7u\2\2\u0282\u0283\7k\2\2\u0283\u0284\7p\2\2\u0284"+
+ "j\3\2\2\2\u0285\u0286\7c\2\2\u0286\u0287\7v\2\2\u0287\u0288\7c\2\2\u0288"+
+ "\u0289\7p\2\2\u0289l\3\2\2\2\u028a\u028b\7e\2\2\u028b\u028c\7q\2\2\u028c"+
+ "\u028d\7u\2\2\u028dn\3\2\2\2\u028e\u028f\7n\2\2\u028f\u0290\7q\2\2\u0290"+
+ "\u0291\7i\2\2\u0291p\3\2\2\2\u0292\u0293\7r\2\2\u0293\u0294\7k\2\2\u0294"+
+ "r\3\2\2\2\u0295\u0296\7r\2\2\u0296\u0297\7q\2\2\u0297\u0298\7y\2\2\u0298"+
+ "t\3\2\2\2\u0299\u029a\7u\2\2\u029a\u029b\7k\2\2\u029b\u029c\7p\2\2\u029c"+
+ "v\3\2\2\2\u029d\u029e\7u\2\2\u029e\u029f\7s\2\2\u029f\u02a0\7t\2\2\u02a0"+
+ "\u02a1\7v\2\2\u02a1x\3\2\2\2\u02a2\u02a3\7v\2\2\u02a3\u02a4\7c\2\2\u02a4"+
+ "\u02a5\7p\2\2\u02a5z\3\2\2\2\u02a6\u02a7\7n\2\2\u02a7\u02a8\7g\2\2\u02a8"+
+ "\u02a9\7p\2\2\u02a9|\3\2\2\2\u02aa\u02ab\7c\2\2\u02ab\u02ac\7t\2\2\u02ac"+
+ "\u02ad\7t\2\2\u02ad\u02ae\7c\2\2\u02ae\u02af\7{\2\2\u02af~\3\2\2\2\u02b0"+
+ "\u02b1\7u\2\2\u02b1\u02b2\7g\2\2\u02b2\u02b3\7v\2\2\u02b3\u0080\3\2\2"+
+ "\2\u02b4\u02b5\7c\2\2\u02b5\u02b6\7v\2\2\u02b6\u0082\3\2\2\2\u02b7\u02b8"+
+ "\7d\2\2\u02b8\u02b9\7g\2\2\u02b9\u02ba\7n\2\2\u02ba\u02bb\7q\2\2\u02bb"+
+ "\u02bc\7p\2\2\u02bc\u02bd\7i\2\2\u02bd\u02be\7u\2\2\u02be\u02bf\7V\2\2"+
+ "\u02bf\u02c0\7q\2\2\u02c0\u0084\3\2\2\2\u02c1\u02c2\7f\2\2\u02c2\u02c3"+
+ "\7g\2\2\u02c3\u02c4\7n\2\2\u02c4\u02c5\7g\2\2\u02c5\u02c6\7v\2\2\u02c6"+
+ "\u02c7\7g\2\2\u02c7\u0086\3\2\2\2\u02c8\u02c9\7g\2\2\u02c9\u02ca\7o\2"+
+ "\2\u02ca\u02cb\7r\2\2\u02cb\u02cc\7v\2\2\u02cc\u02cd\7{\2\2\u02cd\u0088"+
+ "\3\2\2\2\u02ce\u02cf\7g\2\2\u02cf\u02d0\7p\2\2\u02d0\u02d1\7f\2\2\u02d1"+
+ "\u008a\3\2\2\2\u02d2\u02d3\7h\2\2\u02d3\u02d4\7k\2\2\u02d4\u02d5\7t\2"+
+ "\2\u02d5\u02d6\7u\2\2\u02d6\u02d7\7v\2\2\u02d7\u008c\3\2\2\2\u02d8\u02d9"+
+ "\7h\2\2\u02d9\u02da\7n\2\2\u02da\u02db\7q\2\2\u02db\u02dc\7c\2\2\u02dc"+
+ "\u02dd\7v\2\2\u02dd\u008e\3\2\2\2\u02de\u02df\7k\2\2\u02df\u02e0\7p\2"+
+ "\2\u02e0\u02e1\7u\2\2\u02e1\u02e2\7g\2\2\u02e2\u02e3\7t\2\2\u02e3\u02e4"+
+ "\7v\2\2\u02e4\u0090\3\2\2\2\u02e5\u02e6\7m\2\2\u02e6\u02e7\7g\2\2\u02e7"+
+ "\u02e8\7{\2\2\u02e8\u02e9\7u\2\2\u02e9\u0092\3\2\2\2\u02ea\u02eb\7k\2"+
+ "\2\u02eb\u02ec\7p\2\2\u02ec\u02ed\7v\2\2\u02ed\u0094\3\2\2\2\u02ee\u02ef"+
+ "\7d\2\2\u02ef\u02f0\7q\2\2\u02f0\u02f1\7q\2\2\u02f1\u02f2\7n\2\2\u02f2"+
+ "\u02f3\7g\2\2\u02f3\u02f4\7c\2\2\u02f4\u02f5\7p\2\2\u02f5\u0096\3\2\2"+
+ "\2\u02f6\u02f7\7r\2\2\u02f7\u02f8\7t\2\2\u02f8\u02f9\7k\2\2\u02f9\u02fa"+
+ "\7p\2\2\u02fa\u02fb\7v\2\2\u02fb\u0098\3\2\2\2\u02fc\u02fd\7r\2\2\u02fd"+
+ "\u02fe\7q\2\2\u02fe\u02ff\7r\2\2\u02ff\u0300\7D\2\2\u0300\u0301\7c\2\2"+
+ "\u0301\u0302\7e\2\2\u0302\u0303\7m\2\2\u0303\u009a\3\2\2\2\u0304\u0305"+
+ "\7r\2\2\u0305\u0306\7q\2\2\u0306\u0307\7r\2\2\u0307\u0308\7H\2\2\u0308"+
+ "\u0309\7t\2\2\u0309\u030a\7q\2\2\u030a\u030b\7p\2\2\u030b\u030c\7v\2\2"+
+ "\u030c\u009c\3\2\2\2\u030d\u030e\7r\2\2\u030e\u030f\7w\2\2\u030f\u0310"+
+ "\7u\2\2\u0310\u0311\7j\2\2\u0311\u0312\7D\2\2\u0312\u0313\7c\2\2\u0313"+
+ "\u0314\7e\2\2\u0314\u0315\7m\2\2\u0315\u009e\3\2\2\2\u0316\u0317\7r\2"+
+ "\2\u0317\u0318\7w\2\2\u0318\u0319\7u\2\2\u0319\u031a\7j\2\2\u031a\u031b"+
+ "\7H\2\2\u031b\u031c\7t\2\2\u031c\u031d\7q\2\2\u031d\u031e\7p\2\2\u031e"+
+ "\u031f\7v\2\2\u031f\u00a0\3\2\2\2\u0320\u0321\7t\2\2\u0321\u0322\7g\2"+
+ "\2\u0322\u0323\7o\2\2\u0323\u0324\7q\2\2\u0324\u0325\7x\2\2\u0325\u0326"+
+ "\7g\2\2\u0326\u00a2\3\2\2\2\u0327\u0328\7t\2\2\u0328\u0329\7g\2\2\u0329"+
+ "\u032a\7o\2\2\u032a\u032b\7q\2\2\u032b\u032c\7x\2\2\u032c\u032d\7g\2\2"+
+ "\u032d\u032e\7C\2\2\u032e\u032f\7n\2\2\u032f\u0330\7n\2\2\u0330\u0331"+
+ "\7G\2\2\u0331\u0332\7s\2\2\u0332\u0333\7V\2\2\u0333\u0334\7q\2\2\u0334"+
+ "\u00a4\3\2\2\2\u0335\u0336\7t\2\2\u0336\u0337\7g\2\2\u0337\u0338\7o\2"+
+ "\2\u0338\u0339\7q\2\2\u0339\u033a\7x\2\2\u033a\u033b\7g\2\2\u033b\u033c"+
+ "\7C\2\2\u033c\u033d\7v\2\2\u033d\u00a6\3\2\2\2\u033e\u033f\7u\2\2\u033f"+
+ "\u0340\7k\2\2\u0340\u0341\7p\2\2\u0341\u0342\7i\2\2\u0342\u0343\7n\2\2"+
+ "\u0343\u0344\7g\2\2\u0344\u0345\7v\2\2\u0345\u0346\7q\2\2\u0346\u0347"+
+ "\7p\2\2\u0347\u0348\7U\2\2\u0348\u0349\7g\2\2\u0349\u034a\7v\2\2\u034a"+
+ "\u00a8\3\2\2\2\u034b\u034c\7u\2\2\u034c\u034d\7k\2\2\u034d\u034e\7|\2"+
+ "\2\u034e\u034f\7g\2\2\u034f\u00aa\3\2\2\2\u0350\u0351\7u\2\2\u0351\u0352"+
+ "\7r\2\2\u0352\u0353\7n\2\2\u0353\u0354\7k\2\2\u0354\u0355\7v\2\2\u0355"+
+ "\u00ac\3\2\2\2\u0356\u0357\7v\2\2\u0357\u0358\7q\2\2\u0358\u0359\7r\2"+
+ "\2\u0359\u035a\7D\2\2\u035a\u035b\7c\2\2\u035b\u035c\7e\2\2\u035c\u035d"+
+ "\7m\2\2\u035d\u00ae\3\2\2\2\u035e\u035f\7v\2\2\u035f\u0360\7q\2\2\u0360"+
+ "\u0361\7r\2\2\u0361\u0362\7H\2\2\u0362\u0363\7t\2\2\u0363\u0364\7q\2\2"+
+ "\u0364\u0365\7p\2\2\u0365\u0366\7v\2\2\u0366\u00b0\3\2\2\2\u0367\u0368"+
+ "\7w\2\2\u0368\u0369\7r\2\2\u0369\u036a\7f\2\2\u036a\u036b\7c\2\2\u036b"+
+ "\u036c\7v\2\2\u036c\u036d\7g\2\2\u036d\u00b2\3\2\2\2\u036e\u036f\7w\2"+
+ "\2\u036f\u0370\7p\2\2\u0370\u0371\7k\2\2\u0371\u0372\7h\2\2\u0372\u0373"+
+ "\7q\2\2\u0373\u0374\7t\2\2\u0374\u0375\7o\2\2\u0375\u0376\7P\2\2\u0376"+
+ "\u0377\7c\2\2\u0377\u0378\7v\2\2\u0378\u00b4\3\2\2\2\u0379\u037a\7h\2"+
+ "\2\u037a\u037b\7n\2\2\u037b\u037c\7k\2\2\u037c\u037d\7r\2\2\u037d\u00b6"+
+ "\3\2\2\2\u037e\u037f\7w\2\2\u037f\u0380\7p\2\2\u0380\u0381\7k\2\2\u0381"+
+ "\u0382\7h\2\2\u0382\u0383\7q\2\2\u0383\u0384\7t\2\2\u0384\u0385\7o\2\2"+
+ "\u0385\u0386\7H\2\2\u0386\u0387\7n\2\2\u0387\u0388\7q\2\2\u0388\u0389"+
+ "\7c\2\2\u0389\u038a\7v\2\2\u038a\u00b8\3\2\2\2\u038b\u038c\7w\2\2\u038c"+
+ "\u038d\7p\2\2\u038d\u038e\7k\2\2\u038e\u038f\7h\2\2\u038f\u0390\7q\2\2"+
+ "\u0390\u0391\7t\2\2\u0391\u0392\7o\2\2\u0392\u0393\7R\2\2\u0393\u0394"+
+ "\7g\2\2\u0394\u0395\7t\2\2\u0395\u0396\7o\2\2\u0396\u00ba\3\2\2\2\u0397"+
+ "\u0398\7u\2\2\u0398\u0399\7\60\2\2\u0399\u039a\7v\2\2\u039a\u039b\7\60"+
+ "\2\2\u039b\u00bc\3\2\2\2\u039c\u039d\7&\2\2\u039d\u00be\3\2\2\2\u039e"+
+ "\u039f\7/\2\2\u039f\u03a0\7@\2\2\u03a0\u00c0\3\2\2\2\u03a1\u03a2\7%\2"+
+ "\2\u03a2\u00c2\3\2\2\2\u03a3\u03a4\7B\2\2\u03a4\u00c4\3\2\2\2\u03a5\u03a6"+
+ "\7E\2\2\u03a6\u03a7\7q\2\2\u03a7\u03a8\7w\2\2\u03a8\u03a9\7p\2\2\u03a9"+
+ "\u03aa\7v\2\2\u03aa\u00c6\3\2\2\2\u03ab\u03ac\7W\2\2\u03ac\u00c8\3\2\2"+
+ "\2\u03ad\u03ae\7`\2\2\u03ae\u00ca\3\2\2\2\u03af\u03b0\7^\2\2\u03b0\u00cc"+
+ "\3\2\2\2\u03b1\u03b3\t\5\2\2\u03b2\u03b1\3\2\2\2\u03b3\u03b4\3\2\2\2\u03b4"+
+ "\u03b2\3\2\2\2\u03b4\u03b5\3\2\2\2\u03b5\u00ce\3\2\2\2\u03b6\u03b8\t\5"+
+ "\2\2\u03b7\u03b6\3\2\2\2\u03b8\u03b9\3\2\2\2\u03b9\u03b7\3\2\2\2\u03b9"+
+ "\u03ba\3\2\2\2\u03ba\u03bb\3\2\2\2\u03bb\u03bd\5\u0115\u008b\2\u03bc\u03be"+
+ "\t\5\2\2\u03bd\u03bc\3\2\2\2\u03be\u03bf\3\2\2\2\u03bf\u03bd\3\2\2\2\u03bf"+
+ "\u03c0\3\2\2\2\u03c0\u00d0\3\2\2\2\u03c1\u03c2\7v\2\2\u03c2\u03c3\7t\2"+
+ "\2\u03c3\u03c4\7w\2\2\u03c4\u03cb\7g\2\2\u03c5\u03c6\7h\2\2\u03c6\u03c7"+
+ "\7c\2\2\u03c7\u03c8\7n\2\2\u03c8\u03c9\7u\2\2\u03c9\u03cb\7g\2\2\u03ca"+
+ "\u03c1\3\2\2\2\u03ca\u03c5\3\2\2\2\u03cb\u00d2\3\2\2\2\u03cc\u03d1\5\t"+
+ "\5\2\u03cd\u03d0\5\13\6\2\u03ce\u03d0\5\t\5\2\u03cf\u03cd\3\2\2\2\u03cf"+
+ "\u03ce\3\2\2\2\u03d0\u03d3\3\2\2\2\u03d1\u03cf\3\2\2\2\u03d1\u03d2\3\2"+
+ "\2\2\u03d2\u00d4\3\2\2\2\u03d3\u03d1\3\2\2\2\u03d4\u03d5\7-\2\2\u03d5"+
+ "\u03d6\7-\2\2\u03d6\u00d6\3\2\2\2\u03d7\u03d8\7/\2\2\u03d8\u03d9\7/\2"+
+ "\2\u03d9\u00d8\3\2\2\2\u03da\u03db\7(\2\2\u03db\u00da\3\2\2\2\u03dc\u03dd"+
+ "\7-\2\2\u03dd\u03de\7\'\2\2\u03de\u00dc\3\2\2\2\u03df\u03e0\7/\2\2\u03e0"+
+ "\u03e1\7\'\2\2\u03e1\u00de\3\2\2\2\u03e2\u03e3\7-\2\2\u03e3\u03e4\7-\2"+
+ "\2\u03e4\u03e5\7\'\2\2\u03e5\u00e0\3\2\2\2\u03e6\u03e7\7/\2\2\u03e7\u03e8"+
+ "\7/\2\2\u03e8\u03e9\7\'\2\2\u03e9\u00e2\3\2\2\2\u03ea\u03eb\7>\2\2\u03eb"+
+ "\u00e4\3\2\2\2\u03ec\u03ed\7@\2\2\u03ed\u00e6\3\2\2\2\u03ee\u03ef\7>\2"+
+ "\2\u03ef\u03f0\7?\2\2\u03f0\u00e8\3\2\2\2\u03f1\u03f2\7@\2\2\u03f2\u03f3"+
+ "\7?\2\2\u03f3\u00ea\3\2\2\2\u03f4\u03f5\7?\2\2\u03f5\u03f6\7?\2\2\u03f6"+
+ "\u00ec\3\2\2\2\u03f7\u03f8\7#\2\2\u03f8\u03f9\7?\2\2\u03f9\u00ee\3\2\2"+
+ "\2\u03fa\u0410\7?\2\2\u03fb\u03fc\7-\2\2\u03fc\u0410\7?\2\2\u03fd\u03fe"+
+ "\7/\2\2\u03fe\u0410\7?\2\2\u03ff\u0400\7,\2\2\u0400\u0410\7?\2\2\u0401"+
+ "\u0402\7\61\2\2\u0402\u0410\7?\2\2\u0403\u0404\7\'\2\2\u0404\u0410\7?"+
+ "\2\2\u0405\u0406\7>\2\2\u0406\u0407\7>\2\2\u0407\u0410\7?\2\2\u0408\u0409"+
+ "\7@\2\2\u0409\u040a\7@\2\2\u040a\u0410\7?\2\2\u040b\u040c\7(\2\2\u040c"+
+ "\u0410\7?\2\2\u040d\u040e\7~\2\2\u040e\u0410\7?\2\2\u040f\u03fa\3\2\2"+
+ "\2\u040f\u03fb\3\2\2\2\u040f\u03fd\3\2\2\2\u040f\u03ff\3\2\2\2\u040f\u0401"+
+ "\3\2\2\2\u040f\u0403\3\2\2\2\u040f\u0405\3\2\2\2\u040f\u0408\3\2\2\2\u040f"+
+ "\u040b\3\2\2\2\u040f\u040d\3\2\2\2\u0410\u00f0\3\2\2\2\u0411\u0412\7/"+
+ "\2\2\u0412\u00f2\3\2\2\2\u0413\u0414\7-\2\2\u0414\u00f4\3\2\2\2\u0415"+
+ "\u0416\7,\2\2\u0416\u00f6\3\2\2\2\u0417\u0418\7\61\2\2\u0418\u00f8\3\2"+
+ "\2\2\u0419\u041a\7\'\2\2\u041a\u00fa\3\2\2\2\u041b\u041c\7*\2\2\u041c"+
+ "\u00fc\3\2\2\2\u041d\u041e\7+\2\2\u041e\u00fe\3\2\2\2\u041f\u0420\7>\2"+
+ "\2\u0420\u0421\7>\2\2\u0421\u0100\3\2\2\2\u0422\u0423\7@\2\2\u0423\u0424"+
+ "\7@\2\2\u0424\u0102\3\2\2\2\u0425\u0426\7~\2\2\u0426\u0427\7~\2\2\u0427"+
+ "\u0104\3\2\2\2\u0428\u0429\7(\2\2\u0429\u042a\7(\2\2\u042a\u0106\3\2\2"+
+ "\2\u042b\u042c\7#\2\2\u042c\u0108\3\2\2\2\u042d\u042e\7=\2\2\u042e\u010a"+
+ "\3\2\2\2\u042f\u0430\7<\2\2\u0430\u010c\3\2\2\2\u0431\u0432\7~\2\2\u0432"+
+ "\u010e\3\2\2\2\u0433\u0434\7}\2\2\u0434\u0110\3\2\2\2\u0435\u0436\7\177"+
+ "\2\2\u0436\u0112\3\2\2\2\u0437\u0438\7.\2\2\u0438\u0114\3\2\2\2\u0439"+
+ "\u043a\7\60\2\2\u043a\u0116\3\2\2\2\u043b\u043c\7]\2\2\u043c\u0118\3\2"+
+ "\2\2\u043d\u043e\7_\2\2\u043e\u011a\3\2\2\2\u043f\u0440\7$\2\2\u0440\u011c"+
+ "\3\2\2\2\u0441\u0442\7A\2\2\u0442\u011e\3\2\2\2\u0443\u0447\7$\2\2\u0444"+
+ "\u0446\n\7\2\2\u0445\u0444\3\2\2\2\u0446\u0449\3\2\2\2\u0447\u0445\3\2"+
+ "\2\2\u0447\u0448\3\2\2\2\u0448\u044a\3\2\2\2\u0449\u0447\3\2\2\2\u044a"+
+ "\u044b\7$\2\2\u044b\u0120\3\2\2\2\16\2\u0124\u012e\u013c\u03b4\u03b9\u03bf"+
+ "\u03ca\u03cf\u03d1\u040f\u0447\3\b\2\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/grammar/alkLexer.tokens b/src/main/java/grammar/alkLexer.tokens
index 0ac5d425..513f093d 100644
--- a/src/main/java/grammar/alkLexer.tokens
+++ b/src/main/java/grammar/alkLexer.tokens
@@ -7,261 +7,265 @@ SYMBOLIC=6
INVARIANT=7
REQURIES=8
ENSURES=9
-WHILEMODIFIES=10
-RESULT=11
-IMPLIES=12
-EQUIV=13
-FORALL=14
-EXISTS=15
-QUANTIFIER_SEPARATOR=16
-TO=17
-IF=18
-ELSE=19
-WHILE=20
-DO=21
-FOR=22
-FOREACH=23
-IN=24
-FROM=25
-OUT=26
-HAVOC=27
-CHOOSE=28
-UNIFORM=29
-REPEAT=30
-RETURN=31
-SUCCESS=32
-UNTIL=33
-FAILURE=34
-CONTINUE=35
-BREAK=36
-EMPTYMAP=37
-EMPTYSET=38
-EMPTYLIST=39
-EMPTYSTRUCTURE=40
-MODIFIES=41
-USES=42
-INCLDUE=43
-XOR=44
-ABS=45
-ACOS=46
-ASIN=47
-ATAN=48
-COS=49
-LOG=50
-PI=51
-POW=52
-SIN=53
-SQRT=54
-TAN=55
-LEN=56
-ARRAY=57
-SET=58
-AT=59
-BELONGSTO=60
-DELETE=61
-EMPTY=62
-END=63
-FIRST=64
-FLOAT=65
-INSERT=66
-KEYS=67
-INTEGER=68
-BOOLEAN=69
-PRINT=70
-POPBACK=71
-POPFRONT=72
-PUSHBACK=73
-PUSHFRONT=74
-REMOVE=75
-REMOVEALLEQTO=76
-REMOVEAT=77
-SINGLETONSET=78
-SIZE=79
-SPLIT=80
-TOPBACK=81
-TOPFRONT=82
-UPDATE=83
-UNIFORMNAT=84
-FLIP=85
-UNIFORMFLOAT=86
-UNIFORMPERM=87
-SOTHAT=88
-SYM=89
-ARROW=90
-NUMSIGN=91
-ANNO=92
-COUNT=93
-UNION=94
-INTERSECT=95
-SUBTRACT=96
-INT=97
-DOUBLE=98
-BOOL=99
-ID=100
-PLUSPLUS=101
-MINUSMINUS=102
-BITWISE_AND=103
-PLUSMOD=104
-MINUSMOD=105
-PLUSPLUSMOD=106
-MINUSMINUSMOD=107
-LOWER=108
-GREATER=109
-LOWEREQ=110
-GREATEREQ=111
-ISEQUAL=112
-NOTEQUAL=113
-ASSIGNMENT_OPERATOR=114
-MINUS=115
-PLUS=116
-MUL=117
-DIV=118
-MOD=119
-LPAR=120
-RPAR=121
-LEFTSHIFT=122
-RIGHTSHIFT=123
-OR=124
-AND=125
-NOT=126
-SEMICOLON=127
-DPOINT=128
-VBAR=129
-LCB=130
-RCB=131
-COMMA=132
-POINT=133
-LBRA=134
-RBRA=135
-QUOTE=136
-QUESTION=137
-STRING=138
+LOOPASSESRT=10
+WHILEMODIFIES=11
+RESULT=12
+OLD=13
+IMPLIES=14
+EQUIV=15
+FORALL=16
+EXISTS=17
+QUANTIFIER_SEPARATOR=18
+TO=19
+IF=20
+ELSE=21
+WHILE=22
+DO=23
+FOR=24
+FOREACH=25
+IN=26
+FROM=27
+OUT=28
+HAVOC=29
+CHOOSE=30
+UNIFORM=31
+REPEAT=32
+RETURN=33
+SUCCESS=34
+UNTIL=35
+FAILURE=36
+CONTINUE=37
+BREAK=38
+EMPTYMAP=39
+EMPTYSET=40
+EMPTYLIST=41
+EMPTYSTRUCTURE=42
+MODIFIES=43
+USES=44
+INCLDUE=45
+XOR=46
+ABS=47
+ACOS=48
+ASIN=49
+ATAN=50
+COS=51
+LOG=52
+PI=53
+POW=54
+SIN=55
+SQRT=56
+TAN=57
+LEN=58
+ARRAY=59
+SET=60
+AT=61
+BELONGSTO=62
+DELETE=63
+EMPTY=64
+END=65
+FIRST=66
+FLOAT=67
+INSERT=68
+KEYS=69
+INTEGER=70
+BOOLEAN=71
+PRINT=72
+POPBACK=73
+POPFRONT=74
+PUSHBACK=75
+PUSHFRONT=76
+REMOVE=77
+REMOVEALLEQTO=78
+REMOVEAT=79
+SINGLETONSET=80
+SIZE=81
+SPLIT=82
+TOPBACK=83
+TOPFRONT=84
+UPDATE=85
+UNIFORMNAT=86
+FLIP=87
+UNIFORMFLOAT=88
+UNIFORMPERM=89
+SOTHAT=90
+SYM=91
+ARROW=92
+NUMSIGN=93
+ANNO=94
+COUNT=95
+UNION=96
+INTERSECT=97
+SUBTRACT=98
+INT=99
+DOUBLE=100
+BOOL=101
+ID=102
+PLUSPLUS=103
+MINUSMINUS=104
+BITWISE_AND=105
+PLUSMOD=106
+MINUSMOD=107
+PLUSPLUSMOD=108
+MINUSMINUSMOD=109
+LOWER=110
+GREATER=111
+LOWEREQ=112
+GREATEREQ=113
+ISEQUAL=114
+NOTEQUAL=115
+ASSIGNMENT_OPERATOR=116
+MINUS=117
+PLUS=118
+MUL=119
+DIV=120
+MOD=121
+LPAR=122
+RPAR=123
+LEFTSHIFT=124
+RIGHTSHIFT=125
+OR=126
+AND=127
+NOT=128
+SEMICOLON=129
+DPOINT=130
+VBAR=131
+LCB=132
+RCB=133
+COMMA=134
+POINT=135
+LBRA=136
+RBRA=137
+QUOTE=138
+QUESTION=139
+STRING=140
'@assert'=4
'@assume'=5
'@symbolic'=6
'@invariant'=7
'@requires'=8
'@ensures'=9
-'@modifies'=10
-'\\result'=11
-'==>'=12
-'<==>'=13
-'forall'=14
-'exists'=15
-'::'=16
-'|->'=17
-'if'=18
-'else'=19
-'while'=20
-'do'=21
-'for'=22
-'foreach'=23
-'in'=24
-'from'=25
-'out'=26
-'@havoc'=27
-'choose'=28
-'uniform'=29
-'repeat'=30
-'return'=31
-'success'=32
-'until'=33
-'failure'=34
-'continue'=35
-'break'=36
-'emptyMap'=37
-'emptySet'=38
-'emptyList'=39
-'emptyStructure'=40
-'modifies'=41
-'uses'=42
-'include'=43
-'xor'=44
-'abs'=45
-'acos'=46
-'asin'=47
-'atan'=48
-'cos'=49
-'log'=50
-'pi'=51
-'pow'=52
-'sin'=53
-'sqrt'=54
-'tan'=55
-'len'=56
-'array'=57
-'set'=58
-'at'=59
-'belongsTo'=60
-'delete'=61
-'empty'=62
-'end'=63
-'first'=64
-'float'=65
-'insert'=66
-'keys'=67
-'int'=68
-'boolean'=69
-'print'=70
-'popBack'=71
-'popFront'=72
-'pushBack'=73
-'pushFront'=74
-'remove'=75
-'removeAllEqTo'=76
-'removeAt'=77
-'singletonSet'=78
-'size'=79
-'split'=80
-'topBack'=81
-'topFront'=82
-'update'=83
-'uniformNat'=84
-'flip'=85
-'uniformFloat'=86
-'uniformPerm'=87
-'s.t.'=88
-'$'=89
-'->'=90
-'#'=91
-'@'=92
-'Count'=93
-'U'=94
-'^'=95
-'\\'=96
-'++'=101
-'--'=102
-'&'=103
-'+%'=104
-'-%'=105
-'++%'=106
-'--%'=107
-'<'=108
-'>'=109
-'<='=110
-'>='=111
-'=='=112
-'!='=113
-'-'=115
-'+'=116
-'*'=117
-'/'=118
-'%'=119
-'('=120
-')'=121
-'<<'=122
-'>>'=123
-'||'=124
-'&&'=125
-'!'=126
-';'=127
-':'=128
-'|'=129
-'{'=130
-'}'=131
-','=132
-'.'=133
-'['=134
-']'=135
-'"'=136
-'?'=137
+'@loopassert'=10
+'@modifies'=11
+'\\result'=12
+'\\old'=13
+'==>'=14
+'<==>'=15
+'forall'=16
+'exists'=17
+'::'=18
+'|->'=19
+'if'=20
+'else'=21
+'while'=22
+'do'=23
+'for'=24
+'foreach'=25
+'in'=26
+'from'=27
+'out'=28
+'@havoc'=29
+'choose'=30
+'uniform'=31
+'repeat'=32
+'return'=33
+'success'=34
+'until'=35
+'failure'=36
+'continue'=37
+'break'=38
+'emptyMap'=39
+'emptySet'=40
+'emptyList'=41
+'emptyStructure'=42
+'modifies'=43
+'uses'=44
+'include'=45
+'xor'=46
+'abs'=47
+'acos'=48
+'asin'=49
+'atan'=50
+'cos'=51
+'log'=52
+'pi'=53
+'pow'=54
+'sin'=55
+'sqrt'=56
+'tan'=57
+'len'=58
+'array'=59
+'set'=60
+'at'=61
+'belongsTo'=62
+'delete'=63
+'empty'=64
+'end'=65
+'first'=66
+'float'=67
+'insert'=68
+'keys'=69
+'int'=70
+'boolean'=71
+'print'=72
+'popBack'=73
+'popFront'=74
+'pushBack'=75
+'pushFront'=76
+'remove'=77
+'removeAllEqTo'=78
+'removeAt'=79
+'singletonSet'=80
+'size'=81
+'split'=82
+'topBack'=83
+'topFront'=84
+'update'=85
+'uniformNat'=86
+'flip'=87
+'uniformFloat'=88
+'uniformPerm'=89
+'s.t.'=90
+'$'=91
+'->'=92
+'#'=93
+'@'=94
+'Count'=95
+'U'=96
+'^'=97
+'\\'=98
+'++'=103
+'--'=104
+'&'=105
+'+%'=106
+'-%'=107
+'++%'=108
+'--%'=109
+'<'=110
+'>'=111
+'<='=112
+'>='=113
+'=='=114
+'!='=115
+'-'=117
+'+'=118
+'*'=119
+'/'=120
+'%'=121
+'('=122
+')'=123
+'<<'=124
+'>>'=125
+'||'=126
+'&&'=127
+'!'=128
+';'=129
+':'=130
+'|'=131
+'{'=132
+'}'=133
+','=134
+'.'=135
+'['=136
+']'=137
+'"'=138
+'?'=139
diff --git a/src/main/java/grammar/alkParser.java b/src/main/java/grammar/alkParser.java
index 60af8f09..d56f324f 100644
--- a/src/main/java/grammar/alkParser.java
+++ b/src/main/java/grammar/alkParser.java
@@ -20,50 +20,52 @@ public class alkParser extends Parser {
new PredictionContextCache();
public static final int
WS=1, COMMENT=2, LINE_COMMENT=3, ASSERT=4, ASSUME=5, SYMBOLIC=6, INVARIANT=7,
- REQURIES=8, ENSURES=9, WHILEMODIFIES=10, RESULT=11, IMPLIES=12, EQUIV=13,
- FORALL=14, EXISTS=15, QUANTIFIER_SEPARATOR=16, TO=17, IF=18, ELSE=19,
- WHILE=20, DO=21, FOR=22, FOREACH=23, IN=24, FROM=25, OUT=26, HAVOC=27,
- CHOOSE=28, UNIFORM=29, REPEAT=30, RETURN=31, SUCCESS=32, UNTIL=33, FAILURE=34,
- CONTINUE=35, BREAK=36, EMPTYMAP=37, EMPTYSET=38, EMPTYLIST=39, EMPTYSTRUCTURE=40,
- MODIFIES=41, USES=42, INCLDUE=43, XOR=44, ABS=45, ACOS=46, ASIN=47, ATAN=48,
- COS=49, LOG=50, PI=51, POW=52, SIN=53, SQRT=54, TAN=55, LEN=56, ARRAY=57,
- SET=58, AT=59, BELONGSTO=60, DELETE=61, EMPTY=62, END=63, FIRST=64, FLOAT=65,
- INSERT=66, KEYS=67, INTEGER=68, BOOLEAN=69, PRINT=70, POPBACK=71, POPFRONT=72,
- PUSHBACK=73, PUSHFRONT=74, REMOVE=75, REMOVEALLEQTO=76, REMOVEAT=77, SINGLETONSET=78,
- SIZE=79, SPLIT=80, TOPBACK=81, TOPFRONT=82, UPDATE=83, UNIFORMNAT=84,
- FLIP=85, UNIFORMFLOAT=86, UNIFORMPERM=87, SOTHAT=88, SYM=89, ARROW=90,
- NUMSIGN=91, ANNO=92, COUNT=93, UNION=94, INTERSECT=95, SUBTRACT=96, INT=97,
- DOUBLE=98, BOOL=99, ID=100, PLUSPLUS=101, MINUSMINUS=102, BITWISE_AND=103,
- PLUSMOD=104, MINUSMOD=105, PLUSPLUSMOD=106, MINUSMINUSMOD=107, LOWER=108,
- GREATER=109, LOWEREQ=110, GREATEREQ=111, ISEQUAL=112, NOTEQUAL=113, ASSIGNMENT_OPERATOR=114,
- MINUS=115, PLUS=116, MUL=117, DIV=118, MOD=119, LPAR=120, RPAR=121, LEFTSHIFT=122,
- RIGHTSHIFT=123, OR=124, AND=125, NOT=126, SEMICOLON=127, DPOINT=128, VBAR=129,
- LCB=130, RCB=131, COMMA=132, POINT=133, LBRA=134, RBRA=135, QUOTE=136,
- QUESTION=137, STRING=138;
+ REQURIES=8, ENSURES=9, LOOPASSESRT=10, WHILEMODIFIES=11, RESULT=12, OLD=13,
+ IMPLIES=14, EQUIV=15, FORALL=16, EXISTS=17, QUANTIFIER_SEPARATOR=18, TO=19,
+ IF=20, ELSE=21, WHILE=22, DO=23, FOR=24, FOREACH=25, IN=26, FROM=27, OUT=28,
+ HAVOC=29, CHOOSE=30, UNIFORM=31, REPEAT=32, RETURN=33, SUCCESS=34, UNTIL=35,
+ FAILURE=36, CONTINUE=37, BREAK=38, EMPTYMAP=39, EMPTYSET=40, EMPTYLIST=41,
+ EMPTYSTRUCTURE=42, MODIFIES=43, USES=44, INCLDUE=45, XOR=46, ABS=47, ACOS=48,
+ ASIN=49, ATAN=50, COS=51, LOG=52, PI=53, POW=54, SIN=55, SQRT=56, TAN=57,
+ LEN=58, ARRAY=59, SET=60, AT=61, BELONGSTO=62, DELETE=63, EMPTY=64, END=65,
+ FIRST=66, FLOAT=67, INSERT=68, KEYS=69, INTEGER=70, BOOLEAN=71, PRINT=72,
+ POPBACK=73, POPFRONT=74, PUSHBACK=75, PUSHFRONT=76, REMOVE=77, REMOVEALLEQTO=78,
+ REMOVEAT=79, SINGLETONSET=80, SIZE=81, SPLIT=82, TOPBACK=83, TOPFRONT=84,
+ UPDATE=85, UNIFORMNAT=86, FLIP=87, UNIFORMFLOAT=88, UNIFORMPERM=89, SOTHAT=90,
+ SYM=91, ARROW=92, NUMSIGN=93, ANNO=94, COUNT=95, UNION=96, INTERSECT=97,
+ SUBTRACT=98, INT=99, DOUBLE=100, BOOL=101, ID=102, PLUSPLUS=103, MINUSMINUS=104,
+ BITWISE_AND=105, PLUSMOD=106, MINUSMOD=107, PLUSPLUSMOD=108, MINUSMINUSMOD=109,
+ LOWER=110, GREATER=111, LOWEREQ=112, GREATEREQ=113, ISEQUAL=114, NOTEQUAL=115,
+ ASSIGNMENT_OPERATOR=116, MINUS=117, PLUS=118, MUL=119, DIV=120, MOD=121,
+ LPAR=122, RPAR=123, LEFTSHIFT=124, RIGHTSHIFT=125, OR=126, AND=127, NOT=128,
+ SEMICOLON=129, DPOINT=130, VBAR=131, LCB=132, RCB=133, COMMA=134, POINT=135,
+ LBRA=136, RBRA=137, QUOTE=138, QUESTION=139, STRING=140;
public static final int
RULE_main = 0, RULE_statement_sequence = 1, RULE_statement = 2, RULE_assumeStmt = 3,
- RULE_assertStmt = 4, RULE_havocStmt = 5, RULE_symbolicStmt = 6, RULE_symbolicDeclarator = 7,
- RULE_directive = 8, RULE_repeat_struct = 9, RULE_statement_block = 10,
- RULE_choose = 11, RULE_while_struct = 12, RULE_while_anno = 13, RULE_do_while_struct = 14,
- RULE_if_struct = 15, RULE_for_struct = 16, RULE_foreach_struct = 17, RULE_function_decl = 18,
- RULE_req_expression = 19, RULE_ens_expression = 20, RULE_param = 21, RULE_expression = 22,
- RULE_assign_expression = 23, RULE_conditional_expression = 24, RULE_logical_or_expression = 25,
- RULE_logical_and_expression = 26, RULE_in_expression = 27, RULE_equality_expression = 28,
- RULE_relational_expression = 29, RULE_set_expression = 30, RULE_bitwise_or = 31,
- RULE_bitwise_and = 32, RULE_shift_expression = 33, RULE_additive_expression = 34,
- RULE_multiplicative_expression = 35, RULE_unary_expression = 36, RULE_postfix_expression = 37,
- RULE_factor = 38, RULE_base_factor = 39, RULE_anno = 40, RULE_value = 41,
- RULE_scalar_value = 42, RULE_ref_name = 43, RULE_data_structure = 44,
- RULE_interval = 45, RULE_spec = 46, RULE_array = 47, RULE_list = 48, RULE_structure = 49,
- RULE_component = 50, RULE_set = 51, RULE_mapping = 52, RULE_mapping_component = 53,
- RULE_function_call = 54, RULE_builtin_function = 55, RULE_builtin_method = 56,
- RULE_dataType = 57, RULE_function_name = 58, RULE_method_name = 59, RULE_configuration = 60;
+ RULE_assertStmt = 4, RULE_havocStmt = 5, RULE_declarator = 6, RULE_symbolicStmt = 7,
+ RULE_symbolicDeclarator = 8, RULE_directive = 9, RULE_repeat_struct = 10,
+ RULE_statement_block = 11, RULE_choose = 12, RULE_while_struct = 13, RULE_while_anno = 14,
+ RULE_modif_factor = 15, RULE_loop_assert = 16, RULE_do_while_struct = 17,
+ RULE_if_struct = 18, RULE_for_struct = 19, RULE_foreach_struct = 20, RULE_function_decl = 21,
+ RULE_req_expression = 22, RULE_ens_expression = 23, RULE_param = 24, RULE_expression = 25,
+ RULE_assign_expression = 26, RULE_conditional_expression = 27, RULE_logical_or_expression = 28,
+ RULE_logical_and_expression = 29, RULE_in_expression = 30, RULE_equality_expression = 31,
+ RULE_relational_expression = 32, RULE_set_expression = 33, RULE_bitwise_or = 34,
+ RULE_bitwise_and = 35, RULE_shift_expression = 36, RULE_additive_expression = 37,
+ RULE_multiplicative_expression = 38, RULE_unary_expression = 39, RULE_postfix_expression = 40,
+ RULE_factor = 41, RULE_base_factor = 42, RULE_anno = 43, RULE_value = 44,
+ RULE_scalar_value = 45, RULE_ref_name = 46, RULE_data_structure = 47,
+ RULE_interval = 48, RULE_spec = 49, RULE_array = 50, RULE_list = 51, RULE_structure = 52,
+ RULE_component = 53, RULE_set = 54, RULE_mapping = 55, RULE_mapping_component = 56,
+ RULE_function_call = 57, RULE_builtin_function = 58, RULE_builtin_method = 59,
+ RULE_dataType = 60, RULE_function_name = 61, RULE_method_name = 62, RULE_configuration = 63;
public static final String[] ruleNames = {
"main", "statement_sequence", "statement", "assumeStmt", "assertStmt",
- "havocStmt", "symbolicStmt", "symbolicDeclarator", "directive", "repeat_struct",
- "statement_block", "choose", "while_struct", "while_anno", "do_while_struct",
- "if_struct", "for_struct", "foreach_struct", "function_decl", "req_expression",
- "ens_expression", "param", "expression", "assign_expression", "conditional_expression",
+ "havocStmt", "declarator", "symbolicStmt", "symbolicDeclarator", "directive",
+ "repeat_struct", "statement_block", "choose", "while_struct", "while_anno",
+ "modif_factor", "loop_assert", "do_while_struct", "if_struct", "for_struct",
+ "foreach_struct", "function_decl", "req_expression", "ens_expression",
+ "param", "expression", "assign_expression", "conditional_expression",
"logical_or_expression", "logical_and_expression", "in_expression", "equality_expression",
"relational_expression", "set_expression", "bitwise_or", "bitwise_and",
"shift_expression", "additive_expression", "multiplicative_expression",
@@ -76,42 +78,43 @@ public class alkParser extends Parser {
private static final String[] _LITERAL_NAMES = {
null, null, null, null, "'@assert'", "'@assume'", "'@symbolic'", "'@invariant'",
- "'@requires'", "'@ensures'", "'@modifies'", "'\\result'", "'==>'", "'<==>'",
- "'forall'", "'exists'", "'::'", "'|->'", "'if'", "'else'", "'while'",
- "'do'", "'for'", "'foreach'", "'in'", "'from'", "'out'", "'@havoc'", "'choose'",
- "'uniform'", "'repeat'", "'return'", "'success'", "'until'", "'failure'",
- "'continue'", "'break'", "'emptyMap'", "'emptySet'", "'emptyList'", "'emptyStructure'",
- "'modifies'", "'uses'", "'include'", "'xor'", "'abs'", "'acos'", "'asin'",
- "'atan'", "'cos'", "'log'", "'pi'", "'pow'", "'sin'", "'sqrt'", "'tan'",
- "'len'", "'array'", "'set'", "'at'", "'belongsTo'", "'delete'", "'empty'",
- "'end'", "'first'", "'float'", "'insert'", "'keys'", "'int'", "'boolean'",
- "'print'", "'popBack'", "'popFront'", "'pushBack'", "'pushFront'", "'remove'",
- "'removeAllEqTo'", "'removeAt'", "'singletonSet'", "'size'", "'split'",
- "'topBack'", "'topFront'", "'update'", "'uniformNat'", "'flip'", "'uniformFloat'",
- "'uniformPerm'", "'s.t.'", "'$'", "'->'", "'#'", "'@'", "'Count'", "'U'",
- "'^'", "'\\'", null, null, null, null, "'++'", "'--'", "'&'", "'+%'",
- "'-%'", "'++%'", "'--%'", "'<'", "'>'", "'<='", "'>='", "'=='", "'!='",
- null, "'-'", "'+'", "'*'", "'/'", "'%'", "'('", "')'", "'<<'", "'>>'",
- "'||'", "'&&'", "'!'", "';'", "':'", "'|'", "'{'", "'}'", "','", "'.'",
- "'['", "']'", "'\"'", "'?'"
+ "'@requires'", "'@ensures'", "'@loopassert'", "'@modifies'", "'\\result'",
+ "'\\old'", "'==>'", "'<==>'", "'forall'", "'exists'", "'::'", "'|->'",
+ "'if'", "'else'", "'while'", "'do'", "'for'", "'foreach'", "'in'", "'from'",
+ "'out'", "'@havoc'", "'choose'", "'uniform'", "'repeat'", "'return'",
+ "'success'", "'until'", "'failure'", "'continue'", "'break'", "'emptyMap'",
+ "'emptySet'", "'emptyList'", "'emptyStructure'", "'modifies'", "'uses'",
+ "'include'", "'xor'", "'abs'", "'acos'", "'asin'", "'atan'", "'cos'",
+ "'log'", "'pi'", "'pow'", "'sin'", "'sqrt'", "'tan'", "'len'", "'array'",
+ "'set'", "'at'", "'belongsTo'", "'delete'", "'empty'", "'end'", "'first'",
+ "'float'", "'insert'", "'keys'", "'int'", "'boolean'", "'print'", "'popBack'",
+ "'popFront'", "'pushBack'", "'pushFront'", "'remove'", "'removeAllEqTo'",
+ "'removeAt'", "'singletonSet'", "'size'", "'split'", "'topBack'", "'topFront'",
+ "'update'", "'uniformNat'", "'flip'", "'uniformFloat'", "'uniformPerm'",
+ "'s.t.'", "'$'", "'->'", "'#'", "'@'", "'Count'", "'U'", "'^'", "'\\'",
+ null, null, null, null, "'++'", "'--'", "'&'", "'+%'", "'-%'", "'++%'",
+ "'--%'", "'<'", "'>'", "'<='", "'>='", "'=='", "'!='", null, "'-'", "'+'",
+ "'*'", "'/'", "'%'", "'('", "')'", "'<<'", "'>>'", "'||'", "'&&'", "'!'",
+ "';'", "':'", "'|'", "'{'", "'}'", "','", "'.'", "'['", "']'", "'\"'",
+ "'?'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, "WS", "COMMENT", "LINE_COMMENT", "ASSERT", "ASSUME", "SYMBOLIC",
- "INVARIANT", "REQURIES", "ENSURES", "WHILEMODIFIES", "RESULT", "IMPLIES",
- "EQUIV", "FORALL", "EXISTS", "QUANTIFIER_SEPARATOR", "TO", "IF", "ELSE",
- "WHILE", "DO", "FOR", "FOREACH", "IN", "FROM", "OUT", "HAVOC", "CHOOSE",
- "UNIFORM", "REPEAT", "RETURN", "SUCCESS", "UNTIL", "FAILURE", "CONTINUE",
- "BREAK", "EMPTYMAP", "EMPTYSET", "EMPTYLIST", "EMPTYSTRUCTURE", "MODIFIES",
- "USES", "INCLDUE", "XOR", "ABS", "ACOS", "ASIN", "ATAN", "COS", "LOG",
- "PI", "POW", "SIN", "SQRT", "TAN", "LEN", "ARRAY", "SET", "AT", "BELONGSTO",
- "DELETE", "EMPTY", "END", "FIRST", "FLOAT", "INSERT", "KEYS", "INTEGER",
- "BOOLEAN", "PRINT", "POPBACK", "POPFRONT", "PUSHBACK", "PUSHFRONT", "REMOVE",
- "REMOVEALLEQTO", "REMOVEAT", "SINGLETONSET", "SIZE", "SPLIT", "TOPBACK",
- "TOPFRONT", "UPDATE", "UNIFORMNAT", "FLIP", "UNIFORMFLOAT", "UNIFORMPERM",
- "SOTHAT", "SYM", "ARROW", "NUMSIGN", "ANNO", "COUNT", "UNION", "INTERSECT",
- "SUBTRACT", "INT", "DOUBLE", "BOOL", "ID", "PLUSPLUS", "MINUSMINUS", "BITWISE_AND",
- "PLUSMOD", "MINUSMOD", "PLUSPLUSMOD", "MINUSMINUSMOD", "LOWER", "GREATER",
- "LOWEREQ", "GREATEREQ", "ISEQUAL", "NOTEQUAL", "ASSIGNMENT_OPERATOR",
+ "INVARIANT", "REQURIES", "ENSURES", "LOOPASSESRT", "WHILEMODIFIES", "RESULT",
+ "OLD", "IMPLIES", "EQUIV", "FORALL", "EXISTS", "QUANTIFIER_SEPARATOR",
+ "TO", "IF", "ELSE", "WHILE", "DO", "FOR", "FOREACH", "IN", "FROM", "OUT",
+ "HAVOC", "CHOOSE", "UNIFORM", "REPEAT", "RETURN", "SUCCESS", "UNTIL",
+ "FAILURE", "CONTINUE", "BREAK", "EMPTYMAP", "EMPTYSET", "EMPTYLIST", "EMPTYSTRUCTURE",
+ "MODIFIES", "USES", "INCLDUE", "XOR", "ABS", "ACOS", "ASIN", "ATAN", "COS",
+ "LOG", "PI", "POW", "SIN", "SQRT", "TAN", "LEN", "ARRAY", "SET", "AT",
+ "BELONGSTO", "DELETE", "EMPTY", "END", "FIRST", "FLOAT", "INSERT", "KEYS",
+ "INTEGER", "BOOLEAN", "PRINT", "POPBACK", "POPFRONT", "PUSHBACK", "PUSHFRONT",
+ "REMOVE", "REMOVEALLEQTO", "REMOVEAT", "SINGLETONSET", "SIZE", "SPLIT",
+ "TOPBACK", "TOPFRONT", "UPDATE", "UNIFORMNAT", "FLIP", "UNIFORMFLOAT",
+ "UNIFORMPERM", "SOTHAT", "SYM", "ARROW", "NUMSIGN", "ANNO", "COUNT", "UNION",
+ "INTERSECT", "SUBTRACT", "INT", "DOUBLE", "BOOL", "ID", "PLUSPLUS", "MINUSMINUS",
+ "BITWISE_AND", "PLUSMOD", "MINUSMOD", "PLUSPLUSMOD", "MINUSMINUSMOD",
+ "LOWER", "GREATER", "LOWEREQ", "GREATEREQ", "ISEQUAL", "NOTEQUAL", "ASSIGNMENT_OPERATOR",
"MINUS", "PLUS", "MUL", "DIV", "MOD", "LPAR", "RPAR", "LEFTSHIFT", "RIGHTSHIFT",
"OR", "AND", "NOT", "SEMICOLON", "DPOINT", "VBAR", "LCB", "RCB", "COMMA",
"POINT", "LBRA", "RBRA", "QUOTE", "QUESTION", "STRING"
@@ -197,17 +200,17 @@ public final MainContext main() throws RecognitionException {
_localctx = new StartPointContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(123);
+ setState(129);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (FLOAT - 65)) | (1L << (INTEGER - 65)) | (1L << (PRINT - 65)) | (1L << (SINGLETONSET - 65)) | (1L << (UNIFORMNAT - 65)) | (1L << (FLIP - 65)) | (1L << (UNIFORMFLOAT - 65)) | (1L << (UNIFORMPERM - 65)) | (1L << (SYM - 65)) | (1L << (NUMSIGN - 65)) | (1L << (ANNO - 65)) | (1L << (INT - 65)) | (1L << (DOUBLE - 65)) | (1L << (BOOL - 65)) | (1L << (ID - 65)) | (1L << (PLUSPLUS - 65)) | (1L << (MINUSMINUS - 65)) | (1L << (PLUSPLUSMOD - 65)) | (1L << (MINUSMINUSMOD - 65)) | (1L << (LOWER - 65)) | (1L << (MINUS - 65)) | (1L << (PLUS - 65)) | (1L << (MUL - 65)) | (1L << (LPAR - 65)) | (1L << (NOT - 65)))) != 0) || ((((_la - 130)) & ~0x3f) == 0 && ((1L << (_la - 130)) & ((1L << (LCB - 130)) | (1L << (LBRA - 130)) | (1L << (QUESTION - 130)) | (1L << (STRING - 130)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << OLD) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 67)) & ~0x3f) == 0 && ((1L << (_la - 67)) & ((1L << (FLOAT - 67)) | (1L << (INTEGER - 67)) | (1L << (PRINT - 67)) | (1L << (SINGLETONSET - 67)) | (1L << (UNIFORMNAT - 67)) | (1L << (FLIP - 67)) | (1L << (UNIFORMFLOAT - 67)) | (1L << (UNIFORMPERM - 67)) | (1L << (SYM - 67)) | (1L << (NUMSIGN - 67)) | (1L << (ANNO - 67)) | (1L << (INT - 67)) | (1L << (DOUBLE - 67)) | (1L << (BOOL - 67)) | (1L << (ID - 67)) | (1L << (PLUSPLUS - 67)) | (1L << (MINUSMINUS - 67)) | (1L << (PLUSPLUSMOD - 67)) | (1L << (MINUSMINUSMOD - 67)) | (1L << (LOWER - 67)) | (1L << (MINUS - 67)) | (1L << (PLUS - 67)) | (1L << (MUL - 67)) | (1L << (LPAR - 67)) | (1L << (NOT - 67)))) != 0) || ((((_la - 132)) & ~0x3f) == 0 && ((1L << (_la - 132)) & ((1L << (LCB - 132)) | (1L << (LBRA - 132)) | (1L << (QUESTION - 132)) | (1L << (STRING - 132)))) != 0)) {
{
- setState(122);
+ setState(128);
statement_sequence();
}
}
- setState(125);
+ setState(131);
match(EOF);
}
}
@@ -256,20 +259,20 @@ public final Statement_sequenceContext statement_sequence() throws RecognitionEx
_localctx = new StatementSeqContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(128);
+ setState(134);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(127);
+ setState(133);
statement();
}
}
- setState(130);
+ setState(136);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (FLOAT - 65)) | (1L << (INTEGER - 65)) | (1L << (PRINT - 65)) | (1L << (SINGLETONSET - 65)) | (1L << (UNIFORMNAT - 65)) | (1L << (FLIP - 65)) | (1L << (UNIFORMFLOAT - 65)) | (1L << (UNIFORMPERM - 65)) | (1L << (SYM - 65)) | (1L << (NUMSIGN - 65)) | (1L << (ANNO - 65)) | (1L << (INT - 65)) | (1L << (DOUBLE - 65)) | (1L << (BOOL - 65)) | (1L << (ID - 65)) | (1L << (PLUSPLUS - 65)) | (1L << (MINUSMINUS - 65)) | (1L << (PLUSPLUSMOD - 65)) | (1L << (MINUSMINUSMOD - 65)) | (1L << (LOWER - 65)) | (1L << (MINUS - 65)) | (1L << (PLUS - 65)) | (1L << (MUL - 65)) | (1L << (LPAR - 65)) | (1L << (NOT - 65)))) != 0) || ((((_la - 130)) & ~0x3f) == 0 && ((1L << (_la - 130)) & ((1L << (LCB - 130)) | (1L << (LBRA - 130)) | (1L << (QUESTION - 130)) | (1L << (STRING - 130)))) != 0) );
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << OLD) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 67)) & ~0x3f) == 0 && ((1L << (_la - 67)) & ((1L << (FLOAT - 67)) | (1L << (INTEGER - 67)) | (1L << (PRINT - 67)) | (1L << (SINGLETONSET - 67)) | (1L << (UNIFORMNAT - 67)) | (1L << (FLIP - 67)) | (1L << (UNIFORMFLOAT - 67)) | (1L << (UNIFORMPERM - 67)) | (1L << (SYM - 67)) | (1L << (NUMSIGN - 67)) | (1L << (ANNO - 67)) | (1L << (INT - 67)) | (1L << (DOUBLE - 67)) | (1L << (BOOL - 67)) | (1L << (ID - 67)) | (1L << (PLUSPLUS - 67)) | (1L << (MINUSMINUS - 67)) | (1L << (PLUSPLUSMOD - 67)) | (1L << (MINUSMINUSMOD - 67)) | (1L << (LOWER - 67)) | (1L << (MINUS - 67)) | (1L << (PLUS - 67)) | (1L << (MUL - 67)) | (1L << (LPAR - 67)) | (1L << (NOT - 67)))) != 0) || ((((_la - 132)) & ~0x3f) == 0 && ((1L << (_la - 132)) & ((1L << (LCB - 132)) | (1L << (LBRA - 132)) | (1L << (QUESTION - 132)) | (1L << (STRING - 132)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -526,14 +529,14 @@ public final StatementContext statement() throws RecognitionException {
enterRule(_localctx, 4, RULE_statement);
int _la;
try {
- setState(176);
+ setState(182);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
case 1:
_localctx = new ToFunctionDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(132);
+ setState(138);
function_decl();
}
break;
@@ -541,19 +544,19 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ReturnStmtContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(133);
+ setState(139);
match(RETURN);
- setState(135);
+ setState(141);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(134);
+ setState(140);
expression();
}
}
- setState(137);
+ setState(143);
match(SEMICOLON);
}
break;
@@ -561,9 +564,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToChooseStmtContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(138);
+ setState(144);
choose();
- setState(139);
+ setState(145);
match(SEMICOLON);
}
break;
@@ -571,9 +574,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new SuccessContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(141);
+ setState(147);
match(SUCCESS);
- setState(142);
+ setState(148);
match(SEMICOLON);
}
break;
@@ -581,9 +584,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new FailureContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(143);
+ setState(149);
match(FAILURE);
- setState(144);
+ setState(150);
match(SEMICOLON);
}
break;
@@ -591,9 +594,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ContinueStmtContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(145);
+ setState(151);
match(CONTINUE);
- setState(146);
+ setState(152);
match(SEMICOLON);
}
break;
@@ -601,9 +604,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new BreakStmtContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(147);
+ setState(153);
match(BREAK);
- setState(148);
+ setState(154);
match(SEMICOLON);
}
break;
@@ -611,7 +614,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToBlockContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(149);
+ setState(155);
statement_block();
}
break;
@@ -619,7 +622,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToDirectiveContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(150);
+ setState(156);
directive();
}
break;
@@ -627,9 +630,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToRepeatContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(151);
+ setState(157);
repeat_struct();
- setState(152);
+ setState(158);
match(SEMICOLON);
}
break;
@@ -637,7 +640,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToWhileContext(_localctx);
enterOuterAlt(_localctx, 11);
{
- setState(154);
+ setState(160);
while_struct();
}
break;
@@ -645,9 +648,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToDoWhileContext(_localctx);
enterOuterAlt(_localctx, 12);
{
- setState(155);
+ setState(161);
do_while_struct();
- setState(156);
+ setState(162);
match(SEMICOLON);
}
break;
@@ -655,7 +658,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToIfContext(_localctx);
enterOuterAlt(_localctx, 13);
{
- setState(158);
+ setState(164);
if_struct();
}
break;
@@ -663,7 +666,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToForContext(_localctx);
enterOuterAlt(_localctx, 14);
{
- setState(159);
+ setState(165);
for_struct();
}
break;
@@ -671,7 +674,7 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToForEachContext(_localctx);
enterOuterAlt(_localctx, 15);
{
- setState(160);
+ setState(166);
foreach_struct();
}
break;
@@ -679,9 +682,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ExpressionStmtContext(_localctx);
enterOuterAlt(_localctx, 16);
{
- setState(161);
+ setState(167);
expression();
- setState(162);
+ setState(168);
match(SEMICOLON);
}
break;
@@ -689,9 +692,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new SymbolicDeclStmtContext(_localctx);
enterOuterAlt(_localctx, 17);
{
- setState(164);
+ setState(170);
symbolicStmt();
- setState(165);
+ setState(171);
match(SEMICOLON);
}
break;
@@ -699,9 +702,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToHavocStmtContext(_localctx);
enterOuterAlt(_localctx, 18);
{
- setState(167);
+ setState(173);
havocStmt();
- setState(168);
+ setState(174);
match(SEMICOLON);
}
break;
@@ -709,9 +712,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToAssumeStmtContext(_localctx);
enterOuterAlt(_localctx, 19);
{
- setState(170);
+ setState(176);
assumeStmt();
- setState(171);
+ setState(177);
match(SEMICOLON);
}
break;
@@ -719,9 +722,9 @@ public final StatementContext statement() throws RecognitionException {
_localctx = new ToAssertStmtContext(_localctx);
enterOuterAlt(_localctx, 20);
{
- setState(173);
+ setState(179);
assertStmt();
- setState(174);
+ setState(180);
match(SEMICOLON);
}
break;
@@ -769,9 +772,9 @@ public final AssumeStmtContext assumeStmt() throws RecognitionException {
_localctx = new AssumeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(178);
+ setState(184);
match(ASSUME);
- setState(179);
+ setState(185);
expression();
}
}
@@ -817,9 +820,9 @@ public final AssertStmtContext assertStmt() throws RecognitionException {
_localctx = new AssertContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(181);
+ setState(187);
match(ASSERT);
- setState(182);
+ setState(188);
expression();
}
}
@@ -847,9 +850,11 @@ public void copyFrom(HavocStmtContext ctx) {
}
public static class HavocContext extends HavocStmtContext {
public TerminalNode HAVOC() { return getToken(alkParser.HAVOC, 0); }
- public List ID() { return getTokens(alkParser.ID); }
- public TerminalNode ID(int i) {
- return getToken(alkParser.ID, i);
+ public List declarator() {
+ return getRuleContexts(DeclaratorContext.class);
+ }
+ public DeclaratorContext declarator(int i) {
+ return getRuleContext(DeclaratorContext.class,i);
}
public List COMMA() { return getTokens(alkParser.COMMA); }
public TerminalNode COMMA(int i) {
@@ -871,23 +876,23 @@ public final HavocStmtContext havocStmt() throws RecognitionException {
_localctx = new HavocContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(184);
- match(HAVOC);
- setState(185);
- match(ID);
setState(190);
+ match(HAVOC);
+ setState(191);
+ declarator();
+ setState(196);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(186);
+ setState(192);
match(COMMA);
- setState(187);
- match(ID);
+ setState(193);
+ declarator();
}
}
- setState(192);
+ setState(198);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -904,6 +909,66 @@ public final HavocStmtContext havocStmt() throws RecognitionException {
return _localctx;
}
+ public static class DeclaratorContext extends ParserRuleContext {
+ public DeclaratorContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_declarator; }
+
+ public DeclaratorContext() { }
+ public void copyFrom(DeclaratorContext ctx) {
+ super.copyFrom(ctx);
+ }
+ }
+ public static class DeclContext extends DeclaratorContext {
+ public TerminalNode ID() { return getToken(alkParser.ID, 0); }
+ public TerminalNode DPOINT() { return getToken(alkParser.DPOINT, 0); }
+ public DataTypeContext dataType() {
+ return getRuleContext(DataTypeContext.class,0);
+ }
+ public DeclContext(DeclaratorContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitDecl(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final DeclaratorContext declarator() throws RecognitionException {
+ DeclaratorContext _localctx = new DeclaratorContext(_ctx, getState());
+ enterRule(_localctx, 12, RULE_declarator);
+ int _la;
+ try {
+ _localctx = new DeclContext(_localctx);
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(199);
+ match(ID);
+ setState(202);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==DPOINT) {
+ {
+ setState(200);
+ match(DPOINT);
+ setState(201);
+ dataType();
+ }
+ }
+
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
public static class SymbolicStmtContext extends ParserRuleContext {
public SymbolicStmtContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -937,29 +1002,29 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SymbolicStmtContext symbolicStmt() throws RecognitionException {
SymbolicStmtContext _localctx = new SymbolicStmtContext(_ctx, getState());
- enterRule(_localctx, 12, RULE_symbolicStmt);
+ enterRule(_localctx, 14, RULE_symbolicStmt);
int _la;
try {
_localctx = new SymbolicDeclsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(193);
+ setState(204);
match(SYMBOLIC);
- setState(194);
+ setState(205);
symbolicDeclarator();
- setState(199);
+ setState(210);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(195);
+ setState(206);
match(COMMA);
- setState(196);
+ setState(207);
symbolicDeclarator();
}
}
- setState(201);
+ setState(212);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -1004,18 +1069,18 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SymbolicDeclaratorContext symbolicDeclarator() throws RecognitionException {
SymbolicDeclaratorContext _localctx = new SymbolicDeclaratorContext(_ctx, getState());
- enterRule(_localctx, 14, RULE_symbolicDeclarator);
+ enterRule(_localctx, 16, RULE_symbolicDeclarator);
try {
_localctx = new SymbolicIdDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(202);
+ setState(213);
match(SYM);
- setState(203);
+ setState(214);
match(ID);
- setState(204);
+ setState(215);
match(DPOINT);
- setState(205);
+ setState(216);
dataType();
}
}
@@ -1055,16 +1120,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DirectiveContext directive() throws RecognitionException {
DirectiveContext _localctx = new DirectiveContext(_ctx, getState());
- enterRule(_localctx, 16, RULE_directive);
+ enterRule(_localctx, 18, RULE_directive);
try {
_localctx = new IncludeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(207);
+ setState(218);
match(NUMSIGN);
- setState(208);
+ setState(219);
match(INCLDUE);
- setState(209);
+ setState(220);
match(STRING);
}
}
@@ -1111,22 +1176,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Repeat_structContext repeat_struct() throws RecognitionException {
Repeat_structContext _localctx = new Repeat_structContext(_ctx, getState());
- enterRule(_localctx, 18, RULE_repeat_struct);
+ enterRule(_localctx, 20, RULE_repeat_struct);
try {
_localctx = new RepeatStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(211);
+ setState(222);
match(REPEAT);
- setState(212);
+ setState(223);
statement();
- setState(213);
+ setState(224);
match(UNTIL);
- setState(214);
+ setState(225);
match(LPAR);
- setState(215);
+ setState(226);
expression();
- setState(216);
+ setState(227);
match(RPAR);
}
}
@@ -1168,25 +1233,25 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Statement_blockContext statement_block() throws RecognitionException {
Statement_blockContext _localctx = new Statement_blockContext(_ctx, getState());
- enterRule(_localctx, 20, RULE_statement_block);
+ enterRule(_localctx, 22, RULE_statement_block);
int _la;
try {
_localctx = new BlockContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(218);
+ setState(229);
match(LCB);
- setState(220);
+ setState(231);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (FLOAT - 65)) | (1L << (INTEGER - 65)) | (1L << (PRINT - 65)) | (1L << (SINGLETONSET - 65)) | (1L << (UNIFORMNAT - 65)) | (1L << (FLIP - 65)) | (1L << (UNIFORMFLOAT - 65)) | (1L << (UNIFORMPERM - 65)) | (1L << (SYM - 65)) | (1L << (NUMSIGN - 65)) | (1L << (ANNO - 65)) | (1L << (INT - 65)) | (1L << (DOUBLE - 65)) | (1L << (BOOL - 65)) | (1L << (ID - 65)) | (1L << (PLUSPLUS - 65)) | (1L << (MINUSMINUS - 65)) | (1L << (PLUSPLUSMOD - 65)) | (1L << (MINUSMINUSMOD - 65)) | (1L << (LOWER - 65)) | (1L << (MINUS - 65)) | (1L << (PLUS - 65)) | (1L << (MUL - 65)) | (1L << (LPAR - 65)) | (1L << (NOT - 65)))) != 0) || ((((_la - 130)) & ~0x3f) == 0 && ((1L << (_la - 130)) & ((1L << (LCB - 130)) | (1L << (LBRA - 130)) | (1L << (QUESTION - 130)) | (1L << (STRING - 130)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASSERT) | (1L << ASSUME) | (1L << SYMBOLIC) | (1L << RESULT) | (1L << OLD) | (1L << FORALL) | (1L << EXISTS) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << FOREACH) | (1L << HAVOC) | (1L << CHOOSE) | (1L << UNIFORM) | (1L << REPEAT) | (1L << RETURN) | (1L << SUCCESS) | (1L << FAILURE) | (1L << CONTINUE) | (1L << BREAK) | (1L << EMPTYMAP) | (1L << EMPTYSET) | (1L << EMPTYLIST) | (1L << EMPTYSTRUCTURE) | (1L << ABS) | (1L << ACOS) | (1L << ASIN) | (1L << ATAN) | (1L << COS) | (1L << LOG) | (1L << PI) | (1L << POW) | (1L << SIN) | (1L << SQRT) | (1L << TAN) | (1L << LEN))) != 0) || ((((_la - 67)) & ~0x3f) == 0 && ((1L << (_la - 67)) & ((1L << (FLOAT - 67)) | (1L << (INTEGER - 67)) | (1L << (PRINT - 67)) | (1L << (SINGLETONSET - 67)) | (1L << (UNIFORMNAT - 67)) | (1L << (FLIP - 67)) | (1L << (UNIFORMFLOAT - 67)) | (1L << (UNIFORMPERM - 67)) | (1L << (SYM - 67)) | (1L << (NUMSIGN - 67)) | (1L << (ANNO - 67)) | (1L << (INT - 67)) | (1L << (DOUBLE - 67)) | (1L << (BOOL - 67)) | (1L << (ID - 67)) | (1L << (PLUSPLUS - 67)) | (1L << (MINUSMINUS - 67)) | (1L << (PLUSPLUSMOD - 67)) | (1L << (MINUSMINUSMOD - 67)) | (1L << (LOWER - 67)) | (1L << (MINUS - 67)) | (1L << (PLUS - 67)) | (1L << (MUL - 67)) | (1L << (LPAR - 67)) | (1L << (NOT - 67)))) != 0) || ((((_la - 132)) & ~0x3f) == 0 && ((1L << (_la - 132)) & ((1L << (LCB - 132)) | (1L << (LBRA - 132)) | (1L << (QUESTION - 132)) | (1L << (STRING - 132)))) != 0)) {
{
- setState(219);
+ setState(230);
statement_sequence();
}
}
- setState(222);
+ setState(233);
match(RCB);
}
}
@@ -1248,32 +1313,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ChooseContext choose() throws RecognitionException {
ChooseContext _localctx = new ChooseContext(_ctx, getState());
- enterRule(_localctx, 22, RULE_choose);
+ enterRule(_localctx, 24, RULE_choose);
int _la;
try {
- setState(237);
+ setState(248);
_errHandler.sync(this);
switch (_input.LA(1)) {
case CHOOSE:
_localctx = new ChooseStmtContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(224);
+ setState(235);
match(CHOOSE);
- setState(225);
+ setState(236);
expression();
- setState(226);
+ setState(237);
match(FROM);
- setState(227);
+ setState(238);
expression();
- setState(230);
+ setState(241);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==SOTHAT) {
{
- setState(228);
+ setState(239);
match(SOTHAT);
- setState(229);
+ setState(240);
expression();
}
}
@@ -1284,13 +1349,13 @@ public final ChooseContext choose() throws RecognitionException {
_localctx = new UniformStmtContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(232);
+ setState(243);
match(UNIFORM);
- setState(233);
+ setState(244);
expression();
- setState(234);
+ setState(245);
match(FROM);
- setState(235);
+ setState(246);
expression();
}
break;
@@ -1336,6 +1401,9 @@ public List while_anno() {
public While_annoContext while_anno(int i) {
return getRuleContext(While_annoContext.class,i);
}
+ public Loop_assertContext loop_assert() {
+ return getRuleContext(Loop_assertContext.class,0);
+ }
public WhileStructureContext(While_structContext ctx) { copyFrom(ctx); }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
@@ -1346,36 +1414,46 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final While_structContext while_struct() throws RecognitionException {
While_structContext _localctx = new While_structContext(_ctx, getState());
- enterRule(_localctx, 24, RULE_while_struct);
+ enterRule(_localctx, 26, RULE_while_struct);
int _la;
try {
_localctx = new WhileStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(239);
+ setState(250);
match(WHILE);
- setState(240);
+ setState(251);
match(LPAR);
- setState(241);
+ setState(252);
expression();
- setState(242);
+ setState(253);
match(RPAR);
- setState(246);
+ setState(257);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==INVARIANT || _la==WHILEMODIFIES) {
{
{
- setState(243);
+ setState(254);
while_anno();
}
}
- setState(248);
+ setState(259);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(249);
+ setState(260);
statement();
+ setState(262);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
+ case 1:
+ {
+ setState(261);
+ loop_assert();
+ }
+ break;
+ }
}
}
catch (RecognitionException re) {
@@ -1415,15 +1493,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
}
public static class ModifiesAnnoContext extends While_annoContext {
public TerminalNode WHILEMODIFIES() { return getToken(alkParser.WHILEMODIFIES, 0); }
- public List ID() { return getTokens(alkParser.ID); }
- public TerminalNode ID(int i) {
- return getToken(alkParser.ID, i);
+ public List modif_factor() {
+ return getRuleContexts(Modif_factorContext.class);
+ }
+ public Modif_factorContext modif_factor(int i) {
+ return getRuleContext(Modif_factorContext.class,i);
}
- public TerminalNode SEMICOLON() { return getToken(alkParser.SEMICOLON, 0); }
public List COMMA() { return getTokens(alkParser.COMMA); }
public TerminalNode COMMA(int i) {
return getToken(alkParser.COMMA, i);
}
+ public TerminalNode SEMICOLON() { return getToken(alkParser.SEMICOLON, 0); }
public ModifiesAnnoContext(While_annoContext ctx) { copyFrom(ctx); }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
@@ -1434,50 +1514,66 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final While_annoContext while_anno() throws RecognitionException {
While_annoContext _localctx = new While_annoContext(_ctx, getState());
- enterRule(_localctx, 26, RULE_while_anno);
+ enterRule(_localctx, 28, RULE_while_anno);
int _la;
try {
- setState(265);
+ setState(281);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INVARIANT:
_localctx = new InvariantAnnoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(251);
+ setState(264);
match(INVARIANT);
- setState(252);
+ setState(265);
expression();
- setState(253);
- match(SEMICOLON);
+ setState(267);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==SEMICOLON) {
+ {
+ setState(266);
+ match(SEMICOLON);
+ }
+ }
+
}
break;
case WHILEMODIFIES:
_localctx = new ModifiesAnnoContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(255);
+ setState(269);
match(WHILEMODIFIES);
- setState(256);
- match(ID);
- setState(261);
+ setState(270);
+ modif_factor();
+ setState(275);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(257);
+ setState(271);
match(COMMA);
- setState(258);
- match(ID);
+ setState(272);
+ modif_factor();
}
}
- setState(263);
+ setState(277);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(264);
- match(SEMICOLON);
+ setState(279);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==SEMICOLON) {
+ {
+ setState(278);
+ match(SEMICOLON);
+ }
+ }
+
}
break;
default:
@@ -1495,6 +1591,138 @@ public final While_annoContext while_anno() throws RecognitionException {
return _localctx;
}
+ public static class Modif_factorContext extends ParserRuleContext {
+ public Modif_factorContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_modif_factor; }
+
+ public Modif_factorContext() { }
+ public void copyFrom(Modif_factorContext ctx) {
+ super.copyFrom(ctx);
+ }
+ }
+ public static class SizeModifContext extends Modif_factorContext {
+ public TerminalNode ID() { return getToken(alkParser.ID, 0); }
+ public TerminalNode POINT() { return getToken(alkParser.POINT, 0); }
+ public TerminalNode SIZE() { return getToken(alkParser.SIZE, 0); }
+ public SizeModifContext(Modif_factorContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitSizeModif(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class IdModifContext extends Modif_factorContext {
+ public TerminalNode ID() { return getToken(alkParser.ID, 0); }
+ public IdModifContext(Modif_factorContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitIdModif(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final Modif_factorContext modif_factor() throws RecognitionException {
+ Modif_factorContext _localctx = new Modif_factorContext(_ctx, getState());
+ enterRule(_localctx, 30, RULE_modif_factor);
+ try {
+ setState(287);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+ case 1:
+ _localctx = new IdModifContext(_localctx);
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(283);
+ match(ID);
+ }
+ break;
+ case 2:
+ _localctx = new SizeModifContext(_localctx);
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(284);
+ match(ID);
+ setState(285);
+ match(POINT);
+ setState(286);
+ match(SIZE);
+ }
+ break;
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class Loop_assertContext extends ParserRuleContext {
+ public Loop_assertContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_loop_assert; }
+
+ public Loop_assertContext() { }
+ public void copyFrom(Loop_assertContext ctx) {
+ super.copyFrom(ctx);
+ }
+ }
+ public static class LoopAssertAnnoContext extends Loop_assertContext {
+ public TerminalNode LOOPASSESRT() { return getToken(alkParser.LOOPASSESRT, 0); }
+ public ExpressionContext expression() {
+ return getRuleContext(ExpressionContext.class,0);
+ }
+ public TerminalNode SEMICOLON() { return getToken(alkParser.SEMICOLON, 0); }
+ public LoopAssertAnnoContext(Loop_assertContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitLoopAssertAnno(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final Loop_assertContext loop_assert() throws RecognitionException {
+ Loop_assertContext _localctx = new Loop_assertContext(_ctx, getState());
+ enterRule(_localctx, 32, RULE_loop_assert);
+ int _la;
+ try {
+ _localctx = new LoopAssertAnnoContext(_localctx);
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(289);
+ match(LOOPASSESRT);
+ setState(290);
+ expression();
+ setState(292);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==SEMICOLON) {
+ {
+ setState(291);
+ match(SEMICOLON);
+ }
+ }
+
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
public static class Do_while_structContext extends ParserRuleContext {
public Do_while_structContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -1527,22 +1755,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Do_while_structContext do_while_struct() throws RecognitionException {
Do_while_structContext _localctx = new Do_while_structContext(_ctx, getState());
- enterRule(_localctx, 28, RULE_do_while_struct);
+ enterRule(_localctx, 34, RULE_do_while_struct);
try {
_localctx = new DoWhileStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(267);
+ setState(294);
match(DO);
- setState(268);
+ setState(295);
statement();
- setState(269);
+ setState(296);
match(WHILE);
- setState(270);
+ setState(297);
match(LPAR);
- setState(271);
+ setState(298);
expression();
- setState(272);
+ setState(299);
match(RPAR);
}
}
@@ -1592,29 +1820,29 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final If_structContext if_struct() throws RecognitionException {
If_structContext _localctx = new If_structContext(_ctx, getState());
- enterRule(_localctx, 30, RULE_if_struct);
+ enterRule(_localctx, 36, RULE_if_struct);
try {
_localctx = new IfStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(274);
+ setState(301);
match(IF);
- setState(275);
+ setState(302);
match(LPAR);
- setState(276);
+ setState(303);
expression();
- setState(277);
+ setState(304);
match(RPAR);
- setState(278);
+ setState(305);
statement();
- setState(281);
+ setState(308);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
case 1:
{
- setState(279);
+ setState(306);
match(ELSE);
- setState(280);
+ setState(307);
statement();
}
break;
@@ -1670,28 +1898,28 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final For_structContext for_struct() throws RecognitionException {
For_structContext _localctx = new For_structContext(_ctx, getState());
- enterRule(_localctx, 32, RULE_for_struct);
+ enterRule(_localctx, 38, RULE_for_struct);
try {
_localctx = new ForStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(283);
+ setState(310);
match(FOR);
- setState(284);
+ setState(311);
match(LPAR);
- setState(285);
+ setState(312);
expression();
- setState(286);
+ setState(313);
match(SEMICOLON);
- setState(287);
+ setState(314);
expression();
- setState(288);
+ setState(315);
match(SEMICOLON);
- setState(289);
+ setState(316);
expression();
- setState(290);
+ setState(317);
match(RPAR);
- setState(291);
+ setState(318);
statement();
}
}
@@ -1737,20 +1965,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Foreach_structContext foreach_struct() throws RecognitionException {
Foreach_structContext _localctx = new Foreach_structContext(_ctx, getState());
- enterRule(_localctx, 34, RULE_foreach_struct);
+ enterRule(_localctx, 40, RULE_foreach_struct);
try {
_localctx = new ForEachStructureContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(293);
+ setState(320);
match(FOREACH);
- setState(294);
+ setState(321);
match(ID);
- setState(295);
+ setState(322);
match(FROM);
- setState(296);
+ setState(323);
expression();
- setState(297);
+ setState(324);
statement();
}
}
@@ -1792,10 +2020,6 @@ public List param() {
public ParamContext param(int i) {
return getRuleContext(ParamContext.class,i);
}
- public TerminalNode DPOINT() { return getToken(alkParser.DPOINT, 0); }
- public DataTypeContext dataType() {
- return getRuleContext(DataTypeContext.class,0);
- }
public List REQURIES() { return getTokens(alkParser.REQURIES); }
public TerminalNode REQURIES(int i) {
return getToken(alkParser.REQURIES, i);
@@ -1822,6 +2046,10 @@ public Ens_expressionContext ens_expression(int i) {
public TerminalNode COMMA(int i) {
return getToken(alkParser.COMMA, i);
}
+ public List SEMICOLON() { return getTokens(alkParser.SEMICOLON); }
+ public TerminalNode SEMICOLON(int i) {
+ return getToken(alkParser.SEMICOLON, i);
+ }
public FunctionDeclContext(Function_declContext ctx) { copyFrom(ctx); }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
@@ -1832,62 +2060,50 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Function_declContext function_decl() throws RecognitionException {
Function_declContext _localctx = new Function_declContext(_ctx, getState());
- enterRule(_localctx, 36, RULE_function_decl);
+ enterRule(_localctx, 42, RULE_function_decl);
int _la;
try {
_localctx = new FunctionDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(299);
+ setState(326);
match(ID);
- setState(300);
+ setState(327);
match(LPAR);
- setState(309);
+ setState(336);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==OUT || _la==ID) {
{
- setState(301);
+ setState(328);
param();
- setState(306);
+ setState(333);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(302);
+ setState(329);
match(COMMA);
- setState(303);
+ setState(330);
param();
}
}
- setState(308);
+ setState(335);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(311);
+ setState(338);
match(RPAR);
- setState(314);
- _errHandler.sync(this);
- _la = _input.LA(1);
- if (_la==DPOINT) {
- {
- setState(312);
- match(DPOINT);
- setState(313);
- dataType();
- }
- }
-
- setState(325);
+ setState(348);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==MODIFIES || _la==USES) {
{
- setState(316);
+ setState(339);
_la = _input.LA(1);
if ( !(_la==MODIFIES || _la==USES) ) {
_errHandler.recoverInline(this);
@@ -1897,60 +2113,80 @@ public final Function_declContext function_decl() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(317);
+ setState(340);
match(ID);
- setState(322);
+ setState(345);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(318);
+ setState(341);
match(COMMA);
- setState(319);
+ setState(342);
match(ID);
}
}
- setState(324);
+ setState(347);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(331);
+ setState(357);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==REQURIES) {
{
{
- setState(327);
+ setState(350);
match(REQURIES);
- setState(328);
+ setState(351);
req_expression();
+ setState(353);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==SEMICOLON) {
+ {
+ setState(352);
+ match(SEMICOLON);
+ }
}
+
}
- setState(333);
+ }
+ setState(359);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(338);
+ setState(367);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==ENSURES) {
{
{
- setState(334);
+ setState(360);
match(ENSURES);
- setState(335);
+ setState(361);
ens_expression();
+ setState(363);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==SEMICOLON) {
+ {
+ setState(362);
+ match(SEMICOLON);
+ }
}
+
}
- setState(340);
+ }
+ setState(369);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(341);
+ setState(370);
statement_block();
}
}
@@ -1987,16 +2223,83 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
+ public static class TypeAssertReqContext extends Req_expressionContext {
+ public List ID() { return getTokens(alkParser.ID); }
+ public TerminalNode ID(int i) {
+ return getToken(alkParser.ID, i);
+ }
+ public List DPOINT() { return getTokens(alkParser.DPOINT); }
+ public TerminalNode DPOINT(int i) {
+ return getToken(alkParser.DPOINT, i);
+ }
+ public List dataType() {
+ return getRuleContexts(DataTypeContext.class);
+ }
+ public DataTypeContext dataType(int i) {
+ return getRuleContext(DataTypeContext.class,i);
+ }
+ public List AND() { return getTokens(alkParser.AND); }
+ public TerminalNode AND(int i) {
+ return getToken(alkParser.AND, i);
+ }
+ public TypeAssertReqContext(Req_expressionContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitTypeAssertReq(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public final Req_expressionContext req_expression() throws RecognitionException {
Req_expressionContext _localctx = new Req_expressionContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_req_expression);
+ enterRule(_localctx, 44, RULE_req_expression);
+ int _la;
try {
- _localctx = new ReqExpressionContext(_localctx);
- enterOuterAlt(_localctx, 1);
- {
- setState(343);
- expression();
+ setState(385);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
+ case 1:
+ _localctx = new ReqExpressionContext(_localctx);
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(372);
+ expression();
+ }
+ break;
+ case 2:
+ _localctx = new TypeAssertReqContext(_localctx);
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(373);
+ match(ID);
+ setState(374);
+ match(DPOINT);
+ setState(375);
+ dataType();
+ setState(382);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==AND) {
+ {
+ {
+ setState(376);
+ match(AND);
+ {
+ setState(377);
+ match(ID);
+ setState(378);
+ match(DPOINT);
+ setState(379);
+ dataType();
+ }
+ }
+ }
+ setState(384);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -2021,6 +2324,19 @@ public void copyFrom(Ens_expressionContext ctx) {
super.copyFrom(ctx);
}
}
+ public static class TypeAssertEnsContext extends Ens_expressionContext {
+ public TerminalNode RESULT() { return getToken(alkParser.RESULT, 0); }
+ public TerminalNode DPOINT() { return getToken(alkParser.DPOINT, 0); }
+ public DataTypeContext dataType() {
+ return getRuleContext(DataTypeContext.class,0);
+ }
+ public TypeAssertEnsContext(Ens_expressionContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitTypeAssertEns(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class EnsExpressionContext extends Ens_expressionContext {
public ExpressionContext expression() {
return getRuleContext(ExpressionContext.class,0);
@@ -2035,13 +2351,31 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Ens_expressionContext ens_expression() throws RecognitionException {
Ens_expressionContext _localctx = new Ens_expressionContext(_ctx, getState());
- enterRule(_localctx, 40, RULE_ens_expression);
+ enterRule(_localctx, 46, RULE_ens_expression);
try {
- _localctx = new EnsExpressionContext(_localctx);
- enterOuterAlt(_localctx, 1);
- {
- setState(345);
- expression();
+ setState(391);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
+ case 1:
+ _localctx = new EnsExpressionContext(_localctx);
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(387);
+ expression();
+ }
+ break;
+ case 2:
+ _localctx = new TypeAssertEnsContext(_localctx);
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(388);
+ match(RESULT);
+ setState(389);
+ match(DPOINT);
+ setState(390);
+ dataType();
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -2069,10 +2403,6 @@ public void copyFrom(ParamContext ctx) {
public static class ParamDefinitionContext extends ParamContext {
public TerminalNode ID() { return getToken(alkParser.ID, 0); }
public TerminalNode OUT() { return getToken(alkParser.OUT, 0); }
- public TerminalNode DPOINT() { return getToken(alkParser.DPOINT, 0); }
- public DataTypeContext dataType() {
- return getRuleContext(DataTypeContext.class,0);
- }
public ParamDefinitionContext(ParamContext ctx) { copyFrom(ctx); }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
@@ -2083,36 +2413,24 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ParamContext param() throws RecognitionException {
ParamContext _localctx = new ParamContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_param);
+ enterRule(_localctx, 48, RULE_param);
int _la;
try {
_localctx = new ParamDefinitionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(348);
+ setState(394);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==OUT) {
{
- setState(347);
+ setState(393);
match(OUT);
}
}
- setState(350);
+ setState(396);
match(ID);
- setState(353);
- _errHandler.sync(this);
- _la = _input.LA(1);
- if (_la==DPOINT) {
- {
- setState(351);
- match(DPOINT);
- setState(352);
- dataType();
- }
- }
-
}
}
catch (RecognitionException re) {
@@ -2243,21 +2561,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ExpressionContext expression() throws RecognitionException {
ExpressionContext _localctx = new ExpressionContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_expression);
+ enterRule(_localctx, 50, RULE_expression);
int _la;
try {
- setState(396);
+ setState(439);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
case 1:
_localctx = new ImpliesExprContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(355);
+ setState(398);
assign_expression();
- setState(356);
+ setState(399);
match(IMPLIES);
- setState(357);
+ setState(400);
expression();
}
break;
@@ -2265,11 +2583,11 @@ public final ExpressionContext expression() throws RecognitionException {
_localctx = new EquivExprContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(359);
+ setState(402);
assign_expression();
- setState(360);
+ setState(403);
match(EQUIV);
- setState(361);
+ setState(404);
expression();
}
break;
@@ -2277,39 +2595,39 @@ public final ExpressionContext expression() throws RecognitionException {
_localctx = new ForallExprContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(363);
+ setState(406);
match(FORALL);
{
- setState(364);
+ setState(407);
match(ID);
- setState(365);
+ setState(408);
match(DPOINT);
- setState(366);
+ setState(409);
dataType();
- setState(373);
+ setState(416);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(367);
+ setState(410);
match(COMMA);
- setState(368);
+ setState(411);
match(ID);
- setState(369);
+ setState(412);
match(DPOINT);
- setState(370);
+ setState(413);
dataType();
}
}
- setState(375);
+ setState(418);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
- setState(376);
+ setState(419);
match(QUANTIFIER_SEPARATOR);
- setState(377);
+ setState(420);
expression();
}
break;
@@ -2317,39 +2635,39 @@ public final ExpressionContext expression() throws RecognitionException {
_localctx = new ExistsExprContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(379);
+ setState(422);
match(EXISTS);
{
- setState(380);
+ setState(423);
match(ID);
- setState(381);
+ setState(424);
match(DPOINT);
- setState(382);
+ setState(425);
dataType();
- setState(389);
+ setState(432);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(383);
+ setState(426);
match(COMMA);
- setState(384);
+ setState(427);
match(ID);
- setState(385);
+ setState(428);
match(DPOINT);
- setState(386);
+ setState(429);
dataType();
}
}
- setState(391);
+ setState(434);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
- setState(392);
+ setState(435);
match(QUANTIFIER_SEPARATOR);
- setState(393);
+ setState(436);
expression();
}
break;
@@ -2357,7 +2675,7 @@ public final ExpressionContext expression() throws RecognitionException {
_localctx = new FolToExprContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(395);
+ setState(438);
assign_expression();
}
break;
@@ -2414,20 +2732,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Assign_expressionContext assign_expression() throws RecognitionException {
Assign_expressionContext _localctx = new Assign_expressionContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_assign_expression);
+ enterRule(_localctx, 52, RULE_assign_expression);
try {
- setState(403);
+ setState(446);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
_localctx = new AssignExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(398);
+ setState(441);
factor(0);
- setState(399);
+ setState(442);
match(ASSIGNMENT_OPERATOR);
- setState(400);
+ setState(443);
expression();
}
break;
@@ -2435,7 +2753,7 @@ public final Assign_expressionContext assign_expression() throws RecognitionExce
_localctx = new ToConditionalExprContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(402);
+ setState(445);
conditional_expression();
}
break;
@@ -2485,25 +2803,25 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Conditional_expressionContext conditional_expression() throws RecognitionException {
Conditional_expressionContext _localctx = new Conditional_expressionContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_conditional_expression);
+ enterRule(_localctx, 54, RULE_conditional_expression);
try {
_localctx = new ConditionalExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(405);
+ setState(448);
logical_or_expression();
- setState(411);
+ setState(454);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(406);
+ setState(449);
match(QUESTION);
- setState(407);
+ setState(450);
expression();
- setState(408);
+ setState(451);
match(DPOINT);
- setState(409);
+ setState(452);
expression();
}
break;
@@ -2553,27 +2871,27 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Logical_or_expressionContext logical_or_expression() throws RecognitionException {
Logical_or_expressionContext _localctx = new Logical_or_expressionContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_logical_or_expression);
+ enterRule(_localctx, 56, RULE_logical_or_expression);
int _la;
try {
_localctx = new LogicalOrExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(413);
+ setState(456);
logical_and_expression();
- setState(418);
+ setState(461);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==OR) {
{
{
- setState(414);
+ setState(457);
match(OR);
- setState(415);
+ setState(458);
logical_and_expression();
}
}
- setState(420);
+ setState(463);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2622,27 +2940,27 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Logical_and_expressionContext logical_and_expression() throws RecognitionException {
Logical_and_expressionContext _localctx = new Logical_and_expressionContext(_ctx, getState());
- enterRule(_localctx, 52, RULE_logical_and_expression);
+ enterRule(_localctx, 58, RULE_logical_and_expression);
int _la;
try {
_localctx = new LogicalAndExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(421);
+ setState(464);
in_expression();
- setState(426);
+ setState(469);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==AND) {
{
{
- setState(422);
+ setState(465);
match(AND);
- setState(423);
+ setState(466);
in_expression();
}
}
- setState(428);
+ setState(471);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2691,27 +3009,27 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final In_expressionContext in_expression() throws RecognitionException {
In_expressionContext _localctx = new In_expressionContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_in_expression);
+ enterRule(_localctx, 60, RULE_in_expression);
int _la;
try {
_localctx = new InExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(429);
+ setState(472);
equality_expression();
- setState(434);
+ setState(477);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==IN) {
{
{
- setState(430);
+ setState(473);
match(IN);
- setState(431);
+ setState(474);
equality_expression();
}
}
- setState(436);
+ setState(479);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2764,21 +3082,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Equality_expressionContext equality_expression() throws RecognitionException {
Equality_expressionContext _localctx = new Equality_expressionContext(_ctx, getState());
- enterRule(_localctx, 56, RULE_equality_expression);
+ enterRule(_localctx, 62, RULE_equality_expression);
int _la;
try {
_localctx = new EqualityExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(437);
+ setState(480);
relational_expression();
- setState(442);
+ setState(485);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==ISEQUAL || _la==NOTEQUAL) {
{
{
- setState(438);
+ setState(481);
_la = _input.LA(1);
if ( !(_la==ISEQUAL || _la==NOTEQUAL) ) {
_errHandler.recoverInline(this);
@@ -2788,11 +3106,11 @@ public final Equality_expressionContext equality_expression() throws Recognition
_errHandler.reportMatch(this);
consume();
}
- setState(439);
+ setState(482);
relational_expression();
}
}
- setState(444);
+ setState(487);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2853,25 +3171,25 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Relational_expressionContext relational_expression() throws RecognitionException {
Relational_expressionContext _localctx = new Relational_expressionContext(_ctx, getState());
- enterRule(_localctx, 58, RULE_relational_expression);
+ enterRule(_localctx, 64, RULE_relational_expression);
int _la;
try {
int _alt;
_localctx = new RelationalExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(445);
+ setState(488);
set_expression();
- setState(450);
+ setState(493);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(446);
+ setState(489);
_la = _input.LA(1);
- if ( !(((((_la - 108)) & ~0x3f) == 0 && ((1L << (_la - 108)) & ((1L << (LOWER - 108)) | (1L << (GREATER - 108)) | (1L << (LOWEREQ - 108)) | (1L << (GREATEREQ - 108)))) != 0)) ) {
+ if ( !(((((_la - 110)) & ~0x3f) == 0 && ((1L << (_la - 110)) & ((1L << (LOWER - 110)) | (1L << (GREATER - 110)) | (1L << (LOWEREQ - 110)) | (1L << (GREATEREQ - 110)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2879,14 +3197,14 @@ public final Relational_expressionContext relational_expression() throws Recogni
_errHandler.reportMatch(this);
consume();
}
- setState(447);
+ setState(490);
set_expression();
}
}
}
- setState(452);
+ setState(495);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
}
}
}
@@ -2941,23 +3259,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Set_expressionContext set_expression() throws RecognitionException {
Set_expressionContext _localctx = new Set_expressionContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_set_expression);
+ enterRule(_localctx, 66, RULE_set_expression);
int _la;
try {
_localctx = new SetExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(453);
+ setState(496);
bitwise_or();
- setState(458);
+ setState(501);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 94)) & ~0x3f) == 0 && ((1L << (_la - 94)) & ((1L << (UNION - 94)) | (1L << (INTERSECT - 94)) | (1L << (SUBTRACT - 94)))) != 0)) {
+ while (((((_la - 96)) & ~0x3f) == 0 && ((1L << (_la - 96)) & ((1L << (UNION - 96)) | (1L << (INTERSECT - 96)) | (1L << (SUBTRACT - 96)))) != 0)) {
{
{
- setState(454);
+ setState(497);
_la = _input.LA(1);
- if ( !(((((_la - 94)) & ~0x3f) == 0 && ((1L << (_la - 94)) & ((1L << (UNION - 94)) | (1L << (INTERSECT - 94)) | (1L << (SUBTRACT - 94)))) != 0)) ) {
+ if ( !(((((_la - 96)) & ~0x3f) == 0 && ((1L << (_la - 96)) & ((1L << (UNION - 96)) | (1L << (INTERSECT - 96)) | (1L << (SUBTRACT - 96)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2965,11 +3283,11 @@ public final Set_expressionContext set_expression() throws RecognitionException
_errHandler.reportMatch(this);
consume();
}
- setState(455);
+ setState(498);
bitwise_or();
}
}
- setState(460);
+ setState(503);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -3022,23 +3340,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Bitwise_orContext bitwise_or() throws RecognitionException {
Bitwise_orContext _localctx = new Bitwise_orContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_bitwise_or);
+ enterRule(_localctx, 68, RULE_bitwise_or);
int _la;
try {
int _alt;
_localctx = new BitwiseOrExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(461);
+ setState(504);
bitwise_and();
- setState(466);
+ setState(509);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(462);
+ setState(505);
_la = _input.LA(1);
if ( !(_la==XOR || _la==VBAR) ) {
_errHandler.recoverInline(this);
@@ -3048,14 +3366,14 @@ public final Bitwise_orContext bitwise_or() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(463);
+ setState(506);
bitwise_and();
}
}
}
- setState(468);
+ setState(511);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
}
}
}
@@ -3102,27 +3420,27 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Bitwise_andContext bitwise_and() throws RecognitionException {
Bitwise_andContext _localctx = new Bitwise_andContext(_ctx, getState());
- enterRule(_localctx, 64, RULE_bitwise_and);
+ enterRule(_localctx, 70, RULE_bitwise_and);
int _la;
try {
_localctx = new BitwiseAndExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(469);
+ setState(512);
shift_expression();
- setState(474);
+ setState(517);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==BITWISE_AND) {
{
{
- setState(470);
+ setState(513);
match(BITWISE_AND);
- setState(471);
+ setState(514);
shift_expression();
}
}
- setState(476);
+ setState(519);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -3175,21 +3493,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Shift_expressionContext shift_expression() throws RecognitionException {
Shift_expressionContext _localctx = new Shift_expressionContext(_ctx, getState());
- enterRule(_localctx, 66, RULE_shift_expression);
+ enterRule(_localctx, 72, RULE_shift_expression);
int _la;
try {
_localctx = new ShiftExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(477);
+ setState(520);
additive_expression();
- setState(482);
+ setState(525);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==LEFTSHIFT || _la==RIGHTSHIFT) {
{
{
- setState(478);
+ setState(521);
_la = _input.LA(1);
if ( !(_la==LEFTSHIFT || _la==RIGHTSHIFT) ) {
_errHandler.recoverInline(this);
@@ -3199,11 +3517,11 @@ public final Shift_expressionContext shift_expression() throws RecognitionExcept
_errHandler.reportMatch(this);
consume();
}
- setState(479);
+ setState(522);
additive_expression();
}
}
- setState(484);
+ setState(527);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -3264,25 +3582,25 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Additive_expressionContext additive_expression() throws RecognitionException {
Additive_expressionContext _localctx = new Additive_expressionContext(_ctx, getState());
- enterRule(_localctx, 68, RULE_additive_expression);
+ enterRule(_localctx, 74, RULE_additive_expression);
int _la;
try {
int _alt;
_localctx = new AdditiveExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(485);
+ setState(528);
multiplicative_expression();
- setState(490);
+ setState(533);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(486);
+ setState(529);
_la = _input.LA(1);
- if ( !(((((_la - 104)) & ~0x3f) == 0 && ((1L << (_la - 104)) & ((1L << (PLUSMOD - 104)) | (1L << (MINUSMOD - 104)) | (1L << (MINUS - 104)) | (1L << (PLUS - 104)))) != 0)) ) {
+ if ( !(((((_la - 106)) & ~0x3f) == 0 && ((1L << (_la - 106)) & ((1L << (PLUSMOD - 106)) | (1L << (MINUSMOD - 106)) | (1L << (MINUS - 106)) | (1L << (PLUS - 106)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3290,14 +3608,14 @@ public final Additive_expressionContext additive_expression() throws Recognition
_errHandler.reportMatch(this);
consume();
}
- setState(487);
+ setState(530);
multiplicative_expression();
}
}
}
- setState(492);
+ setState(535);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
}
}
@@ -3352,25 +3670,25 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Multiplicative_expressionContext multiplicative_expression() throws RecognitionException {
Multiplicative_expressionContext _localctx = new Multiplicative_expressionContext(_ctx, getState());
- enterRule(_localctx, 70, RULE_multiplicative_expression);
+ enterRule(_localctx, 76, RULE_multiplicative_expression);
int _la;
try {
int _alt;
_localctx = new MultiplicativeExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(493);
+ setState(536);
unary_expression();
- setState(498);
+ setState(541);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(494);
+ setState(537);
_la = _input.LA(1);
- if ( !(((((_la - 117)) & ~0x3f) == 0 && ((1L << (_la - 117)) & ((1L << (MUL - 117)) | (1L << (DIV - 117)) | (1L << (MOD - 117)))) != 0)) ) {
+ if ( !(((((_la - 119)) & ~0x3f) == 0 && ((1L << (_la - 119)) & ((1L << (MUL - 119)) | (1L << (DIV - 119)) | (1L << (MOD - 119)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3378,14 +3696,14 @@ public final Multiplicative_expressionContext multiplicative_expression() throws
_errHandler.reportMatch(this);
consume();
}
- setState(495);
+ setState(538);
unary_expression();
}
}
}
- setState(500);
+ setState(543);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
}
}
}
@@ -3455,10 +3773,10 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Unary_expressionContext unary_expression() throws RecognitionException {
Unary_expressionContext _localctx = new Unary_expressionContext(_ctx, getState());
- enterRule(_localctx, 72, RULE_unary_expression);
+ enterRule(_localctx, 78, RULE_unary_expression);
int _la;
try {
- setState(506);
+ setState(549);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PLUSPLUS:
@@ -3468,9 +3786,9 @@ public final Unary_expressionContext unary_expression() throws RecognitionExcept
_localctx = new PrefixExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(501);
+ setState(544);
_la = _input.LA(1);
- if ( !(((((_la - 101)) & ~0x3f) == 0 && ((1L << (_la - 101)) & ((1L << (PLUSPLUS - 101)) | (1L << (MINUSMINUS - 101)) | (1L << (PLUSPLUSMOD - 101)) | (1L << (MINUSMINUSMOD - 101)))) != 0)) ) {
+ if ( !(((((_la - 103)) & ~0x3f) == 0 && ((1L << (_la - 103)) & ((1L << (PLUSPLUS - 103)) | (1L << (MINUSMINUS - 103)) | (1L << (PLUSPLUSMOD - 103)) | (1L << (MINUSMINUSMOD - 103)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3478,7 +3796,7 @@ public final Unary_expressionContext unary_expression() throws RecognitionExcept
_errHandler.reportMatch(this);
consume();
}
- setState(502);
+ setState(545);
unary_expression();
}
break;
@@ -3489,9 +3807,9 @@ public final Unary_expressionContext unary_expression() throws RecognitionExcept
_localctx = new UnaryExpressionContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(503);
+ setState(546);
_la = _input.LA(1);
- if ( !(((((_la - 115)) & ~0x3f) == 0 && ((1L << (_la - 115)) & ((1L << (MINUS - 115)) | (1L << (PLUS - 115)) | (1L << (MUL - 115)) | (1L << (NOT - 115)))) != 0)) ) {
+ if ( !(((((_la - 117)) & ~0x3f) == 0 && ((1L << (_la - 117)) & ((1L << (MINUS - 117)) | (1L << (PLUS - 117)) | (1L << (MUL - 117)) | (1L << (NOT - 117)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3499,11 +3817,12 @@ public final Unary_expressionContext unary_expression() throws RecognitionExcept
_errHandler.reportMatch(this);
consume();
}
- setState(504);
+ setState(547);
unary_expression();
}
break;
case RESULT:
+ case OLD:
case EMPTYMAP:
case EMPTYSET:
case EMPTYLIST:
@@ -3543,7 +3862,7 @@ public final Unary_expressionContext unary_expression() throws RecognitionExcept
_localctx = new ToPostfixExpressionContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(505);
+ setState(548);
postfix_expression();
}
break;
@@ -3595,23 +3914,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Postfix_expressionContext postfix_expression() throws RecognitionException {
Postfix_expressionContext _localctx = new Postfix_expressionContext(_ctx, getState());
- enterRule(_localctx, 74, RULE_postfix_expression);
+ enterRule(_localctx, 80, RULE_postfix_expression);
int _la;
try {
int _alt;
_localctx = new PostfixExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(508);
+ setState(551);
factor(0);
- setState(512);
+ setState(555);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,48,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(509);
+ setState(552);
_la = _input.LA(1);
if ( !(_la==PLUSPLUS || _la==MINUSMINUS) ) {
_errHandler.recoverInline(this);
@@ -3624,9 +3943,9 @@ public final Postfix_expressionContext postfix_expression() throws RecognitionEx
}
}
}
- setState(514);
+ setState(557);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,48,_ctx);
}
}
}
@@ -3717,8 +4036,8 @@ private FactorContext factor(int _p) throws RecognitionException {
int _parentState = getState();
FactorContext _localctx = new FactorContext(_ctx, _parentState);
FactorContext _prevctx = _localctx;
- int _startState = 76;
- enterRecursionRule(_localctx, 76, RULE_factor, _p);
+ int _startState = 82;
+ enterRecursionRule(_localctx, 82, RULE_factor, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
@@ -3728,30 +4047,30 @@ private FactorContext factor(int _p) throws RecognitionException {
_ctx = _localctx;
_prevctx = _localctx;
- setState(516);
+ setState(559);
base_factor();
}
_ctx.stop = _input.LT(-1);
- setState(531);
+ setState(574);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(529);
+ setState(572);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
case 1:
{
_localctx = new FactorPointMethodContext(new FactorContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_factor);
- setState(518);
+ setState(561);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(519);
+ setState(562);
match(POINT);
- setState(520);
+ setState(563);
builtin_method();
}
break;
@@ -3759,11 +4078,11 @@ private FactorContext factor(int _p) throws RecognitionException {
{
_localctx = new FactorPointIDContext(new FactorContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_factor);
- setState(521);
+ setState(564);
if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)");
- setState(522);
+ setState(565);
match(POINT);
- setState(523);
+ setState(566);
match(ID);
}
break;
@@ -3771,22 +4090,22 @@ private FactorContext factor(int _p) throws RecognitionException {
{
_localctx = new FactorArrayContext(new FactorContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_factor);
- setState(524);
+ setState(567);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(525);
+ setState(568);
match(LBRA);
- setState(526);
+ setState(569);
expression();
- setState(527);
+ setState(570);
match(RBRA);
}
break;
}
}
}
- setState(533);
+ setState(576);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
}
}
}
@@ -3812,6 +4131,18 @@ public void copyFrom(Base_factorContext ctx) {
super.copyFrom(ctx);
}
}
+ public static class OldFactorContext extends Base_factorContext {
+ public TerminalNode OLD() { return getToken(alkParser.OLD, 0); }
+ public TerminalNode LPAR() { return getToken(alkParser.LPAR, 0); }
+ public TerminalNode ID() { return getToken(alkParser.ID, 0); }
+ public TerminalNode RPAR() { return getToken(alkParser.RPAR, 0); }
+ public OldFactorContext(Base_factorContext ctx) { copyFrom(ctx); }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof alkVisitor ) return ((alkVisitor extends T>)visitor).visitOldFactor(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class AnnoFactorContext extends Base_factorContext {
public TerminalNode ANNO() { return getToken(alkParser.ANNO, 0); }
public AnnoContext anno() {
@@ -3876,19 +4207,33 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Base_factorContext base_factor() throws RecognitionException {
Base_factorContext _localctx = new Base_factorContext(_ctx, getState());
- enterRule(_localctx, 78, RULE_base_factor);
+ enterRule(_localctx, 84, RULE_base_factor);
try {
- setState(547);
+ setState(594);
_errHandler.sync(this);
switch (_input.LA(1)) {
case RESULT:
_localctx = new ResultFactorContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(534);
+ setState(577);
match(RESULT);
}
break;
+ case OLD:
+ _localctx = new OldFactorContext(_localctx);
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(578);
+ match(OLD);
+ setState(579);
+ match(LPAR);
+ setState(580);
+ match(ID);
+ setState(581);
+ match(RPAR);
+ }
+ break;
case ABS:
case ACOS:
case ASIN:
@@ -3912,9 +4257,9 @@ public final Base_factorContext base_factor() throws RecognitionException {
case SYM:
case ID:
_localctx = new RefNameFactorContext(_localctx);
- enterOuterAlt(_localctx, 2);
+ enterOuterAlt(_localctx, 3);
{
- setState(535);
+ setState(582);
ref_name();
}
break;
@@ -3931,37 +4276,37 @@ public final Base_factorContext base_factor() throws RecognitionException {
case QUESTION:
case STRING:
_localctx = new ValueFactorContext(_localctx);
- enterOuterAlt(_localctx, 3);
+ enterOuterAlt(_localctx, 4);
{
- setState(536);
+ setState(583);
value();
}
break;
case LPAR:
_localctx = new ParanthesesFactorContext(_localctx);
- enterOuterAlt(_localctx, 4);
+ enterOuterAlt(_localctx, 5);
{
- setState(537);
+ setState(584);
match(LPAR);
- setState(538);
+ setState(585);
expression();
- setState(539);
+ setState(586);
match(RPAR);
}
break;
case ANNO:
_localctx = new AnnoFactorContext(_localctx);
- enterOuterAlt(_localctx, 5);
+ enterOuterAlt(_localctx, 6);
{
- setState(541);
+ setState(588);
match(ANNO);
- setState(542);
+ setState(589);
anno();
- setState(543);
+ setState(590);
match(LPAR);
- setState(544);
+ setState(591);
expression();
- setState(545);
+ setState(592);
match(RPAR);
}
break;
@@ -4003,12 +4348,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AnnoContext anno() throws RecognitionException {
AnnoContext _localctx = new AnnoContext(_ctx, getState());
- enterRule(_localctx, 80, RULE_anno);
+ enterRule(_localctx, 86, RULE_anno);
try {
_localctx = new CountAnnoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(549);
+ setState(596);
match(COUNT);
}
}
@@ -4043,9 +4388,9 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ValueContext value() throws RecognitionException {
ValueContext _localctx = new ValueContext(_ctx, getState());
- enterRule(_localctx, 82, RULE_value);
+ enterRule(_localctx, 88, RULE_value);
try {
- setState(553);
+ setState(600);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INT:
@@ -4055,7 +4400,7 @@ public final ValueContext value() throws RecognitionException {
case STRING:
enterOuterAlt(_localctx, 1);
{
- setState(551);
+ setState(598);
scalar_value();
}
break;
@@ -4068,7 +4413,7 @@ public final ValueContext value() throws RecognitionException {
case LBRA:
enterOuterAlt(_localctx, 2);
{
- setState(552);
+ setState(599);
data_structure();
}
break;
@@ -4146,16 +4491,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Scalar_valueContext scalar_value() throws RecognitionException {
Scalar_valueContext _localctx = new Scalar_valueContext(_ctx, getState());
- enterRule(_localctx, 84, RULE_scalar_value);
+ enterRule(_localctx, 90, RULE_scalar_value);
try {
- setState(560);
+ setState(607);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INT:
_localctx = new IntValueContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(555);
+ setState(602);
match(INT);
}
break;
@@ -4163,7 +4508,7 @@ public final Scalar_valueContext scalar_value() throws RecognitionException {
_localctx = new DoubleValueContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(556);
+ setState(603);
match(DOUBLE);
}
break;
@@ -4171,7 +4516,7 @@ public final Scalar_valueContext scalar_value() throws RecognitionException {
_localctx = new BoolValueContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(557);
+ setState(604);
match(BOOL);
}
break;
@@ -4179,7 +4524,7 @@ public final Scalar_valueContext scalar_value() throws RecognitionException {
_localctx = new StringValueContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(558);
+ setState(605);
match(STRING);
}
break;
@@ -4187,7 +4532,7 @@ public final Scalar_valueContext scalar_value() throws RecognitionException {
_localctx = new UnknownValueContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(559);
+ setState(606);
match(QUESTION);
}
break;
@@ -4250,16 +4595,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Ref_nameContext ref_name() throws RecognitionException {
Ref_nameContext _localctx = new Ref_nameContext(_ctx, getState());
- enterRule(_localctx, 86, RULE_ref_name);
+ enterRule(_localctx, 92, RULE_ref_name);
try {
- setState(566);
+ setState(613);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
_localctx = new RefFunctionCallContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(562);
+ setState(609);
function_call();
}
break;
@@ -4267,7 +4612,7 @@ public final Ref_nameContext ref_name() throws RecognitionException {
_localctx = new RefIDContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(563);
+ setState(610);
match(ID);
}
break;
@@ -4275,9 +4620,9 @@ public final Ref_nameContext ref_name() throws RecognitionException {
_localctx = new SymIDContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(564);
+ setState(611);
match(SYM);
- setState(565);
+ setState(612);
match(ID);
}
break;
@@ -4363,16 +4708,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Data_structureContext data_structure() throws RecognitionException {
Data_structureContext _localctx = new Data_structureContext(_ctx, getState());
- enterRule(_localctx, 88, RULE_data_structure);
+ enterRule(_localctx, 94, RULE_data_structure);
try {
- setState(573);
+ setState(620);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) {
case 1:
_localctx = new ArrayValueContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(568);
+ setState(615);
array();
}
break;
@@ -4380,7 +4725,7 @@ public final Data_structureContext data_structure() throws RecognitionException
_localctx = new ListValueContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(569);
+ setState(616);
list();
}
break;
@@ -4388,7 +4733,7 @@ public final Data_structureContext data_structure() throws RecognitionException
_localctx = new SetValueContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(570);
+ setState(617);
set();
}
break;
@@ -4396,7 +4741,7 @@ public final Data_structureContext data_structure() throws RecognitionException
_localctx = new StructureValueContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(571);
+ setState(618);
structure();
}
break;
@@ -4404,7 +4749,7 @@ public final Data_structureContext data_structure() throws RecognitionException
_localctx = new MappingValueContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(572);
+ setState(619);
mapping();
}
break;
@@ -4453,18 +4798,18 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IntervalContext interval() throws RecognitionException {
IntervalContext _localctx = new IntervalContext(_ctx, getState());
- enterRule(_localctx, 90, RULE_interval);
+ enterRule(_localctx, 96, RULE_interval);
try {
_localctx = new IntervalDefinitionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(575);
+ setState(622);
expression();
- setState(576);
+ setState(623);
match(POINT);
- setState(577);
+ setState(624);
match(POINT);
- setState(578);
+ setState(625);
expression();
}
}
@@ -4527,24 +4872,24 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SpecContext spec() throws RecognitionException {
SpecContext _localctx = new SpecContext(_ctx, getState());
- enterRule(_localctx, 92, RULE_spec);
+ enterRule(_localctx, 98, RULE_spec);
try {
- setState(592);
+ setState(639);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
_localctx = new FilterSpecDefinitionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(580);
+ setState(627);
match(ID);
- setState(581);
+ setState(628);
match(FROM);
- setState(582);
+ setState(629);
expression();
- setState(583);
+ setState(630);
match(VBAR);
- setState(584);
+ setState(631);
expression();
}
break;
@@ -4552,15 +4897,15 @@ public final SpecContext spec() throws RecognitionException {
_localctx = new SelectSpecDefinitionContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(586);
+ setState(633);
expression();
- setState(587);
+ setState(634);
match(VBAR);
- setState(588);
+ setState(635);
match(ID);
- setState(589);
+ setState(636);
match(FROM);
- setState(590);
+ setState(637);
expression();
}
break;
@@ -4637,21 +4982,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ArrayContext array() throws RecognitionException {
ArrayContext _localctx = new ArrayContext(_ctx, getState());
- enterRule(_localctx, 94, RULE_array);
+ enterRule(_localctx, 100, RULE_array);
int _la;
try {
- setState(614);
+ setState(661);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
case 1:
_localctx = new ArrayWithSpecContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(594);
+ setState(641);
match(LBRA);
- setState(595);
+ setState(642);
spec();
- setState(596);
+ setState(643);
match(RBRA);
}
break;
@@ -4659,35 +5004,35 @@ public final ArrayContext array() throws RecognitionException {
_localctx = new ArrayWithExpressionsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(598);
+ setState(645);
match(LBRA);
- setState(607);
+ setState(654);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(599);
+ setState(646);
expression();
- setState(604);
+ setState(651);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(600);
+ setState(647);
match(COMMA);
- setState(601);
+ setState(648);
expression();
}
}
- setState(606);
+ setState(653);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(609);
+ setState(656);
match(RBRA);
}
break;
@@ -4695,11 +5040,11 @@ public final ArrayContext array() throws RecognitionException {
_localctx = new ArrayWithIntervalContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(610);
+ setState(657);
match(LBRA);
- setState(611);
+ setState(658);
interval();
- setState(612);
+ setState(659);
match(RBRA);
}
break;
@@ -4779,17 +5124,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ListContext list() throws RecognitionException {
ListContext _localctx = new ListContext(_ctx, getState());
- enterRule(_localctx, 96, RULE_list);
+ enterRule(_localctx, 102, RULE_list);
int _la;
try {
- setState(637);
+ setState(684);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
case 1:
_localctx = new EmptyListContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(616);
+ setState(663);
match(EMPTYLIST);
}
break;
@@ -4797,11 +5142,11 @@ public final ListContext list() throws RecognitionException {
_localctx = new ListWithSpecContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(617);
+ setState(664);
match(LOWER);
- setState(618);
+ setState(665);
spec();
- setState(619);
+ setState(666);
match(GREATER);
}
break;
@@ -4809,35 +5154,35 @@ public final ListContext list() throws RecognitionException {
_localctx = new ListWithExpressionsContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(621);
+ setState(668);
match(LOWER);
- setState(630);
+ setState(677);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(622);
+ setState(669);
expression();
- setState(627);
+ setState(674);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(623);
+ setState(670);
match(COMMA);
- setState(624);
+ setState(671);
expression();
}
}
- setState(629);
+ setState(676);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(632);
+ setState(679);
match(GREATER);
}
break;
@@ -4845,11 +5190,11 @@ public final ListContext list() throws RecognitionException {
_localctx = new ListWithIntervalContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(633);
+ setState(680);
match(LOWER);
- setState(634);
+ setState(681);
interval();
- setState(635);
+ setState(682);
match(GREATER);
}
break;
@@ -4908,33 +5253,33 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StructureContext structure() throws RecognitionException {
StructureContext _localctx = new StructureContext(_ctx, getState());
- enterRule(_localctx, 98, RULE_structure);
+ enterRule(_localctx, 104, RULE_structure);
int _la;
try {
- setState(653);
+ setState(700);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
case 1:
_localctx = new StructureWithComponentsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(639);
+ setState(686);
match(LCB);
- setState(641);
+ setState(688);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(640);
+ setState(687);
component();
}
}
- setState(643);
+ setState(690);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==ID );
- setState(645);
+ setState(692);
match(RCB);
}
break;
@@ -4942,22 +5287,22 @@ public final StructureContext structure() throws RecognitionException {
_localctx = new EmptyStructureContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(651);
+ setState(698);
_errHandler.sync(this);
switch (_input.LA(1)) {
case EMPTYSTRUCTURE:
{
- setState(647);
+ setState(694);
match(EMPTYSTRUCTURE);
}
break;
case LCB:
{
- setState(648);
+ setState(695);
match(LCB);
- setState(649);
+ setState(696);
match(ARROW);
- setState(650);
+ setState(697);
match(RCB);
}
break;
@@ -5006,16 +5351,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ComponentContext component() throws RecognitionException {
ComponentContext _localctx = new ComponentContext(_ctx, getState());
- enterRule(_localctx, 100, RULE_component);
+ enterRule(_localctx, 106, RULE_component);
try {
_localctx = new ComponentDefinitionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(655);
+ setState(702);
match(ID);
- setState(656);
+ setState(703);
match(ARROW);
- setState(657);
+ setState(704);
expression();
}
}
@@ -5099,17 +5444,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SetContext set() throws RecognitionException {
SetContext _localctx = new SetContext(_ctx, getState());
- enterRule(_localctx, 102, RULE_set);
+ enterRule(_localctx, 108, RULE_set);
int _la;
try {
- setState(680);
+ setState(727);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
_localctx = new EmptySetContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(659);
+ setState(706);
match(EMPTYSET);
}
break;
@@ -5117,11 +5462,11 @@ public final SetContext set() throws RecognitionException {
_localctx = new SetWithSpecContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(660);
+ setState(707);
match(LCB);
- setState(661);
+ setState(708);
spec();
- setState(662);
+ setState(709);
match(RCB);
}
break;
@@ -5129,35 +5474,35 @@ public final SetContext set() throws RecognitionException {
_localctx = new SetWithExpressionsContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(664);
+ setState(711);
match(LCB);
- setState(673);
+ setState(720);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(665);
+ setState(712);
expression();
- setState(670);
+ setState(717);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(666);
+ setState(713);
match(COMMA);
- setState(667);
+ setState(714);
expression();
}
}
- setState(672);
+ setState(719);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(675);
+ setState(722);
match(RCB);
}
break;
@@ -5165,11 +5510,11 @@ public final SetContext set() throws RecognitionException {
_localctx = new SetWithIntervalContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(676);
+ setState(723);
match(LCB);
- setState(677);
+ setState(724);
interval();
- setState(678);
+ setState(725);
match(RCB);
}
break;
@@ -5228,32 +5573,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MappingContext mapping() throws RecognitionException {
MappingContext _localctx = new MappingContext(_ctx, getState());
- enterRule(_localctx, 104, RULE_mapping);
+ enterRule(_localctx, 110, RULE_mapping);
int _la;
try {
- setState(696);
+ setState(743);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) {
case 1:
_localctx = new EmptyMappingContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(686);
+ setState(733);
_errHandler.sync(this);
switch (_input.LA(1)) {
case EMPTYMAP:
{
- setState(682);
+ setState(729);
match(EMPTYMAP);
}
break;
case LCB:
{
- setState(683);
+ setState(730);
match(LCB);
- setState(684);
+ setState(731);
match(TO);
- setState(685);
+ setState(732);
match(RCB);
}
break;
@@ -5266,23 +5611,23 @@ public final MappingContext mapping() throws RecognitionException {
_localctx = new MappingWithComponentsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(688);
+ setState(735);
match(LCB);
- setState(690);
+ setState(737);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(689);
+ setState(736);
mapping_component();
}
}
- setState(692);
+ setState(739);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( ((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0) );
- setState(694);
+ } while ( ((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0) );
+ setState(741);
match(RCB);
}
break;
@@ -5328,16 +5673,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Mapping_componentContext mapping_component() throws RecognitionException {
Mapping_componentContext _localctx = new Mapping_componentContext(_ctx, getState());
- enterRule(_localctx, 106, RULE_mapping_component);
+ enterRule(_localctx, 112, RULE_mapping_component);
try {
_localctx = new MappingComponentDefinitionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(698);
+ setState(745);
expression();
- setState(699);
+ setState(746);
match(TO);
- setState(700);
+ setState(747);
expression();
}
}
@@ -5398,10 +5743,10 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Function_callContext function_call() throws RecognitionException {
Function_callContext _localctx = new Function_callContext(_ctx, getState());
- enterRule(_localctx, 108, RULE_function_call);
+ enterRule(_localctx, 114, RULE_function_call);
int _la;
try {
- setState(716);
+ setState(763);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ABS:
@@ -5427,7 +5772,7 @@ public final Function_callContext function_call() throws RecognitionException {
_localctx = new ToBuiltinFunctionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(702);
+ setState(749);
builtin_function();
}
break;
@@ -5435,37 +5780,37 @@ public final Function_callContext function_call() throws RecognitionException {
_localctx = new DefinedFunctionCallContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(703);
+ setState(750);
match(ID);
- setState(704);
+ setState(751);
match(LPAR);
- setState(713);
+ setState(760);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(705);
+ setState(752);
expression();
- setState(710);
+ setState(757);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(706);
+ setState(753);
match(COMMA);
- setState(707);
+ setState(754);
expression();
}
}
- setState(712);
+ setState(759);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(715);
+ setState(762);
match(RPAR);
}
break;
@@ -5521,43 +5866,43 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Builtin_functionContext builtin_function() throws RecognitionException {
Builtin_functionContext _localctx = new Builtin_functionContext(_ctx, getState());
- enterRule(_localctx, 110, RULE_builtin_function);
+ enterRule(_localctx, 116, RULE_builtin_function);
int _la;
try {
_localctx = new BuiltinFunctionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(718);
+ setState(765);
function_name();
- setState(719);
+ setState(766);
match(LPAR);
- setState(728);
+ setState(775);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(720);
+ setState(767);
expression();
- setState(725);
+ setState(772);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(721);
+ setState(768);
match(COMMA);
- setState(722);
+ setState(769);
expression();
}
}
- setState(727);
+ setState(774);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(730);
+ setState(777);
match(RPAR);
}
}
@@ -5609,43 +5954,43 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Builtin_methodContext builtin_method() throws RecognitionException {
Builtin_methodContext _localctx = new Builtin_methodContext(_ctx, getState());
- enterRule(_localctx, 112, RULE_builtin_method);
+ enterRule(_localctx, 118, RULE_builtin_method);
int _la;
try {
_localctx = new BuiltinMethodContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(732);
+ setState(779);
method_name();
- setState(733);
+ setState(780);
match(LPAR);
- setState(742);
+ setState(789);
_errHandler.sync(this);
_la = _input.LA(1);
- if (((((_la - 11)) & ~0x3f) == 0 && ((1L << (_la - 11)) & ((1L << (RESULT - 11)) | (1L << (FORALL - 11)) | (1L << (EXISTS - 11)) | (1L << (EMPTYMAP - 11)) | (1L << (EMPTYSET - 11)) | (1L << (EMPTYLIST - 11)) | (1L << (EMPTYSTRUCTURE - 11)) | (1L << (ABS - 11)) | (1L << (ACOS - 11)) | (1L << (ASIN - 11)) | (1L << (ATAN - 11)) | (1L << (COS - 11)) | (1L << (LOG - 11)) | (1L << (PI - 11)) | (1L << (POW - 11)) | (1L << (SIN - 11)) | (1L << (SQRT - 11)) | (1L << (TAN - 11)) | (1L << (LEN - 11)) | (1L << (FLOAT - 11)) | (1L << (INTEGER - 11)) | (1L << (PRINT - 11)))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SINGLETONSET - 78)) | (1L << (UNIFORMNAT - 78)) | (1L << (FLIP - 78)) | (1L << (UNIFORMFLOAT - 78)) | (1L << (UNIFORMPERM - 78)) | (1L << (SYM - 78)) | (1L << (ANNO - 78)) | (1L << (INT - 78)) | (1L << (DOUBLE - 78)) | (1L << (BOOL - 78)) | (1L << (ID - 78)) | (1L << (PLUSPLUS - 78)) | (1L << (MINUSMINUS - 78)) | (1L << (PLUSPLUSMOD - 78)) | (1L << (MINUSMINUSMOD - 78)) | (1L << (LOWER - 78)) | (1L << (MINUS - 78)) | (1L << (PLUS - 78)) | (1L << (MUL - 78)) | (1L << (LPAR - 78)) | (1L << (NOT - 78)) | (1L << (LCB - 78)) | (1L << (LBRA - 78)) | (1L << (QUESTION - 78)) | (1L << (STRING - 78)))) != 0)) {
+ if (((((_la - 12)) & ~0x3f) == 0 && ((1L << (_la - 12)) & ((1L << (RESULT - 12)) | (1L << (OLD - 12)) | (1L << (FORALL - 12)) | (1L << (EXISTS - 12)) | (1L << (EMPTYMAP - 12)) | (1L << (EMPTYSET - 12)) | (1L << (EMPTYLIST - 12)) | (1L << (EMPTYSTRUCTURE - 12)) | (1L << (ABS - 12)) | (1L << (ACOS - 12)) | (1L << (ASIN - 12)) | (1L << (ATAN - 12)) | (1L << (COS - 12)) | (1L << (LOG - 12)) | (1L << (PI - 12)) | (1L << (POW - 12)) | (1L << (SIN - 12)) | (1L << (SQRT - 12)) | (1L << (TAN - 12)) | (1L << (LEN - 12)) | (1L << (FLOAT - 12)) | (1L << (INTEGER - 12)) | (1L << (PRINT - 12)))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SINGLETONSET - 80)) | (1L << (UNIFORMNAT - 80)) | (1L << (FLIP - 80)) | (1L << (UNIFORMFLOAT - 80)) | (1L << (UNIFORMPERM - 80)) | (1L << (SYM - 80)) | (1L << (ANNO - 80)) | (1L << (INT - 80)) | (1L << (DOUBLE - 80)) | (1L << (BOOL - 80)) | (1L << (ID - 80)) | (1L << (PLUSPLUS - 80)) | (1L << (MINUSMINUS - 80)) | (1L << (PLUSPLUSMOD - 80)) | (1L << (MINUSMINUSMOD - 80)) | (1L << (LOWER - 80)) | (1L << (MINUS - 80)) | (1L << (PLUS - 80)) | (1L << (MUL - 80)) | (1L << (LPAR - 80)) | (1L << (NOT - 80)) | (1L << (LCB - 80)) | (1L << (LBRA - 80)) | (1L << (QUESTION - 80)) | (1L << (STRING - 80)))) != 0)) {
{
- setState(734);
+ setState(781);
expression();
- setState(739);
+ setState(786);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(735);
+ setState(782);
match(COMMA);
- setState(736);
+ setState(783);
expression();
}
}
- setState(741);
+ setState(788);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(744);
+ setState(791);
match(RPAR);
}
}
@@ -5729,16 +6074,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DataTypeContext dataType() throws RecognitionException {
DataTypeContext _localctx = new DataTypeContext(_ctx, getState());
- enterRule(_localctx, 114, RULE_dataType);
+ enterRule(_localctx, 120, RULE_dataType);
try {
- setState(759);
+ setState(806);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INTEGER:
_localctx = new IntTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(746);
+ setState(793);
match(INTEGER);
}
break;
@@ -5746,7 +6091,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new BoolTypeContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(747);
+ setState(794);
match(BOOLEAN);
}
break;
@@ -5754,7 +6099,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new FloatTypeContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(748);
+ setState(795);
match(FLOAT);
}
break;
@@ -5762,13 +6107,13 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ArrayTypeContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(749);
+ setState(796);
match(ARRAY);
- setState(750);
+ setState(797);
match(LOWER);
- setState(751);
+ setState(798);
dataType();
- setState(752);
+ setState(799);
match(GREATER);
}
break;
@@ -5776,13 +6121,13 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new SetTypeContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(754);
+ setState(801);
match(SET);
- setState(755);
+ setState(802);
match(LOWER);
- setState(756);
+ setState(803);
dataType();
- setState(757);
+ setState(804);
match(GREATER);
}
break;
@@ -5835,14 +6180,14 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Function_nameContext function_name() throws RecognitionException {
Function_nameContext _localctx = new Function_nameContext(_ctx, getState());
- enterRule(_localctx, 116, RULE_function_name);
+ enterRule(_localctx, 122, RULE_function_name);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(761);
+ setState(808);
_la = _input.LA(1);
- if ( !(((((_la - 45)) & ~0x3f) == 0 && ((1L << (_la - 45)) & ((1L << (ABS - 45)) | (1L << (ACOS - 45)) | (1L << (ASIN - 45)) | (1L << (ATAN - 45)) | (1L << (COS - 45)) | (1L << (LOG - 45)) | (1L << (PI - 45)) | (1L << (POW - 45)) | (1L << (SIN - 45)) | (1L << (SQRT - 45)) | (1L << (TAN - 45)) | (1L << (LEN - 45)) | (1L << (FLOAT - 45)) | (1L << (INTEGER - 45)) | (1L << (PRINT - 45)) | (1L << (SINGLETONSET - 45)) | (1L << (UNIFORMNAT - 45)) | (1L << (FLIP - 45)) | (1L << (UNIFORMFLOAT - 45)) | (1L << (UNIFORMPERM - 45)))) != 0)) ) {
+ if ( !(((((_la - 47)) & ~0x3f) == 0 && ((1L << (_la - 47)) & ((1L << (ABS - 47)) | (1L << (ACOS - 47)) | (1L << (ASIN - 47)) | (1L << (ATAN - 47)) | (1L << (COS - 47)) | (1L << (LOG - 47)) | (1L << (PI - 47)) | (1L << (POW - 47)) | (1L << (SIN - 47)) | (1L << (SQRT - 47)) | (1L << (TAN - 47)) | (1L << (LEN - 47)) | (1L << (FLOAT - 47)) | (1L << (INTEGER - 47)) | (1L << (PRINT - 47)) | (1L << (SINGLETONSET - 47)) | (1L << (UNIFORMNAT - 47)) | (1L << (FLIP - 47)) | (1L << (UNIFORMFLOAT - 47)) | (1L << (UNIFORMPERM - 47)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5895,14 +6240,14 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Method_nameContext method_name() throws RecognitionException {
Method_nameContext _localctx = new Method_nameContext(_ctx, getState());
- enterRule(_localctx, 118, RULE_method_name);
+ enterRule(_localctx, 124, RULE_method_name);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(763);
+ setState(810);
_la = _input.LA(1);
- if ( !(((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & ((1L << (AT - 59)) | (1L << (DELETE - 59)) | (1L << (END - 59)) | (1L << (FIRST - 59)) | (1L << (INSERT - 59)) | (1L << (KEYS - 59)) | (1L << (POPBACK - 59)) | (1L << (POPFRONT - 59)) | (1L << (PUSHBACK - 59)) | (1L << (PUSHFRONT - 59)) | (1L << (REMOVE - 59)) | (1L << (REMOVEALLEQTO - 59)) | (1L << (REMOVEAT - 59)) | (1L << (SIZE - 59)) | (1L << (SPLIT - 59)) | (1L << (TOPBACK - 59)) | (1L << (TOPFRONT - 59)) | (1L << (UPDATE - 59)))) != 0)) ) {
+ if ( !(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & ((1L << (AT - 61)) | (1L << (DELETE - 61)) | (1L << (END - 61)) | (1L << (FIRST - 61)) | (1L << (INSERT - 61)) | (1L << (KEYS - 61)) | (1L << (POPBACK - 61)) | (1L << (POPFRONT - 61)) | (1L << (PUSHBACK - 61)) | (1L << (PUSHFRONT - 61)) | (1L << (REMOVE - 61)) | (1L << (REMOVEALLEQTO - 61)) | (1L << (REMOVEAT - 61)) | (1L << (SIZE - 61)) | (1L << (SPLIT - 61)) | (1L << (TOPBACK - 61)) | (1L << (TOPFRONT - 61)) | (1L << (UPDATE - 61)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5960,31 +6305,31 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ConfigurationContext configuration() throws RecognitionException {
ConfigurationContext _localctx = new ConfigurationContext(_ctx, getState());
- enterRule(_localctx, 120, RULE_configuration);
+ enterRule(_localctx, 126, RULE_configuration);
int _la;
try {
_localctx = new ConfigContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(770);
+ setState(817);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==ID) {
{
{
- setState(765);
+ setState(812);
match(ID);
- setState(766);
+ setState(813);
match(TO);
- setState(767);
+ setState(814);
expression();
}
}
- setState(772);
+ setState(819);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(773);
+ setState(820);
match(EOF);
}
}
@@ -6001,7 +6346,7 @@ public final ConfigurationContext configuration() throws RecognitionException {
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
- case 38:
+ case 41:
return factor_sempred((FactorContext)_localctx, predIndex);
}
return true;
@@ -6019,7 +6364,7 @@ private boolean factor_sempred(FactorContext _localctx, int predIndex) {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u008c\u030a\4\2\t"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u008e\u0339\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
@@ -6027,293 +6372,314 @@ private boolean factor_sempred(FactorContext _localctx, int predIndex) {
"\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+
",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+
"\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+
- "\4>\t>\3\2\5\2~\n\2\3\2\3\2\3\3\6\3\u0083\n\3\r\3\16\3\u0084\3\4\3\4\3"+
- "\4\5\4\u008a\n\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3"+
+ "\4>\t>\4?\t?\4@\t@\4A\tA\3\2\5\2\u0084\n\2\3\2\3\2\3\3\6\3\u0089\n\3\r"+
+ "\3\16\3\u008a\3\4\3\4\3\4\5\4\u0090\n\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3"+
"\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4"+
- "\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4\u00b3\n\4\3\5\3\5\3\5\3\6\3\6\3\6"+
- "\3\7\3\7\3\7\3\7\7\7\u00bf\n\7\f\7\16\7\u00c2\13\7\3\b\3\b\3\b\3\b\7\b"+
- "\u00c8\n\b\f\b\16\b\u00cb\13\b\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\13"+
- "\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\5\f\u00df\n\f\3\f\3\f\3\r\3\r\3"+
- "\r\3\r\3\r\3\r\5\r\u00e9\n\r\3\r\3\r\3\r\3\r\3\r\5\r\u00f0\n\r\3\16\3"+
- "\16\3\16\3\16\3\16\7\16\u00f7\n\16\f\16\16\16\u00fa\13\16\3\16\3\16\3"+
- "\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\7\17\u0106\n\17\f\17\16\17\u0109"+
- "\13\17\3\17\5\17\u010c\n\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3"+
- "\21\3\21\3\21\3\21\3\21\3\21\5\21\u011c\n\21\3\22\3\22\3\22\3\22\3\22"+
- "\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24"+
- "\3\24\3\24\7\24\u0133\n\24\f\24\16\24\u0136\13\24\5\24\u0138\n\24\3\24"+
- "\3\24\3\24\5\24\u013d\n\24\3\24\3\24\3\24\3\24\7\24\u0143\n\24\f\24\16"+
- "\24\u0146\13\24\5\24\u0148\n\24\3\24\3\24\7\24\u014c\n\24\f\24\16\24\u014f"+
- "\13\24\3\24\3\24\7\24\u0153\n\24\f\24\16\24\u0156\13\24\3\24\3\24\3\25"+
- "\3\25\3\26\3\26\3\27\5\27\u015f\n\27\3\27\3\27\3\27\5\27\u0164\n\27\3"+
- "\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3"+
- "\30\3\30\7\30\u0176\n\30\f\30\16\30\u0179\13\30\3\30\3\30\3\30\3\30\3"+
- "\30\3\30\3\30\3\30\3\30\3\30\3\30\7\30\u0186\n\30\f\30\16\30\u0189\13"+
- "\30\3\30\3\30\3\30\3\30\5\30\u018f\n\30\3\31\3\31\3\31\3\31\3\31\5\31"+
- "\u0196\n\31\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u019e\n\32\3\33\3\33\3"+
- "\33\7\33\u01a3\n\33\f\33\16\33\u01a6\13\33\3\34\3\34\3\34\7\34\u01ab\n"+
- "\34\f\34\16\34\u01ae\13\34\3\35\3\35\3\35\7\35\u01b3\n\35\f\35\16\35\u01b6"+
- "\13\35\3\36\3\36\3\36\7\36\u01bb\n\36\f\36\16\36\u01be\13\36\3\37\3\37"+
- "\3\37\7\37\u01c3\n\37\f\37\16\37\u01c6\13\37\3 \3 \3 \7 \u01cb\n \f \16"+
- " \u01ce\13 \3!\3!\3!\7!\u01d3\n!\f!\16!\u01d6\13!\3\"\3\"\3\"\7\"\u01db"+
- "\n\"\f\"\16\"\u01de\13\"\3#\3#\3#\7#\u01e3\n#\f#\16#\u01e6\13#\3$\3$\3"+
- "$\7$\u01eb\n$\f$\16$\u01ee\13$\3%\3%\3%\7%\u01f3\n%\f%\16%\u01f6\13%\3"+
- "&\3&\3&\3&\3&\5&\u01fd\n&\3\'\3\'\7\'\u0201\n\'\f\'\16\'\u0204\13\'\3"+
- "(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\7(\u0214\n(\f(\16(\u0217\13("+
- "\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u0226\n)\3*\3*\3+\3+\5+\u022c"+
- "\n+\3,\3,\3,\3,\3,\5,\u0233\n,\3-\3-\3-\3-\5-\u0239\n-\3.\3.\3.\3.\3."+
- "\5.\u0240\n.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3"+
- "\60\3\60\3\60\3\60\5\60\u0253\n\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61"+
- "\3\61\7\61\u025d\n\61\f\61\16\61\u0260\13\61\5\61\u0262\n\61\3\61\3\61"+
- "\3\61\3\61\3\61\5\61\u0269\n\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\62"+
- "\3\62\7\62\u0274\n\62\f\62\16\62\u0277\13\62\5\62\u0279\n\62\3\62\3\62"+
- "\3\62\3\62\3\62\5\62\u0280\n\62\3\63\3\63\6\63\u0284\n\63\r\63\16\63\u0285"+
- "\3\63\3\63\3\63\3\63\3\63\3\63\5\63\u028e\n\63\5\63\u0290\n\63\3\64\3"+
- "\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\65\7\65\u029f"+
- "\n\65\f\65\16\65\u02a2\13\65\5\65\u02a4\n\65\3\65\3\65\3\65\3\65\3\65"+
- "\5\65\u02ab\n\65\3\66\3\66\3\66\3\66\5\66\u02b1\n\66\3\66\3\66\6\66\u02b5"+
- "\n\66\r\66\16\66\u02b6\3\66\3\66\5\66\u02bb\n\66\3\67\3\67\3\67\3\67\3"+
- "8\38\38\38\38\38\78\u02c7\n8\f8\168\u02ca\138\58\u02cc\n8\38\58\u02cf"+
- "\n8\39\39\39\39\39\79\u02d6\n9\f9\169\u02d9\139\59\u02db\n9\39\39\3:\3"+
- ":\3:\3:\3:\7:\u02e4\n:\f:\16:\u02e7\13:\5:\u02e9\n:\3:\3:\3;\3;\3;\3;"+
- "\3;\3;\3;\3;\3;\3;\3;\3;\3;\5;\u02fa\n;\3<\3<\3=\3=\3>\3>\3>\7>\u0303"+
- "\n>\f>\16>\u0306\13>\3>\3>\3>\2\3N?\2\4\6\b\n\f\16\20\22\24\26\30\32\34"+
- "\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz\2\17\3\2+"+
- ",\3\2rs\3\2nq\3\2`b\4\2..\u0083\u0083\3\2|}\4\2jkuv\3\2wy\4\2ghlm\4\2"+
- "uw\u0080\u0080\3\2gh\b\2/:CCFFHHPPVY\b\2==??ABDEIOQU\2\u033d\2}\3\2\2"+
- "\2\4\u0082\3\2\2\2\6\u00b2\3\2\2\2\b\u00b4\3\2\2\2\n\u00b7\3\2\2\2\f\u00ba"+
- "\3\2\2\2\16\u00c3\3\2\2\2\20\u00cc\3\2\2\2\22\u00d1\3\2\2\2\24\u00d5\3"+
- "\2\2\2\26\u00dc\3\2\2\2\30\u00ef\3\2\2\2\32\u00f1\3\2\2\2\34\u010b\3\2"+
- "\2\2\36\u010d\3\2\2\2 \u0114\3\2\2\2\"\u011d\3\2\2\2$\u0127\3\2\2\2&\u012d"+
- "\3\2\2\2(\u0159\3\2\2\2*\u015b\3\2\2\2,\u015e\3\2\2\2.\u018e\3\2\2\2\60"+
- "\u0195\3\2\2\2\62\u0197\3\2\2\2\64\u019f\3\2\2\2\66\u01a7\3\2\2\28\u01af"+
- "\3\2\2\2:\u01b7\3\2\2\2<\u01bf\3\2\2\2>\u01c7\3\2\2\2@\u01cf\3\2\2\2B"+
- "\u01d7\3\2\2\2D\u01df\3\2\2\2F\u01e7\3\2\2\2H\u01ef\3\2\2\2J\u01fc\3\2"+
- "\2\2L\u01fe\3\2\2\2N\u0205\3\2\2\2P\u0225\3\2\2\2R\u0227\3\2\2\2T\u022b"+
- "\3\2\2\2V\u0232\3\2\2\2X\u0238\3\2\2\2Z\u023f\3\2\2\2\\\u0241\3\2\2\2"+
- "^\u0252\3\2\2\2`\u0268\3\2\2\2b\u027f\3\2\2\2d\u028f\3\2\2\2f\u0291\3"+
- "\2\2\2h\u02aa\3\2\2\2j\u02ba\3\2\2\2l\u02bc\3\2\2\2n\u02ce\3\2\2\2p\u02d0"+
- "\3\2\2\2r\u02de\3\2\2\2t\u02f9\3\2\2\2v\u02fb\3\2\2\2x\u02fd\3\2\2\2z"+
- "\u0304\3\2\2\2|~\5\4\3\2}|\3\2\2\2}~\3\2\2\2~\177\3\2\2\2\177\u0080\7"+
- "\2\2\3\u0080\3\3\2\2\2\u0081\u0083\5\6\4\2\u0082\u0081\3\2\2\2\u0083\u0084"+
- "\3\2\2\2\u0084\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\5\3\2\2\2\u0086"+
- "\u00b3\5&\24\2\u0087\u0089\7!\2\2\u0088\u008a\5.\30\2\u0089\u0088\3\2"+
- "\2\2\u0089\u008a\3\2\2\2\u008a\u008b\3\2\2\2\u008b\u00b3\7\u0081\2\2\u008c"+
- "\u008d\5\30\r\2\u008d\u008e\7\u0081\2\2\u008e\u00b3\3\2\2\2\u008f\u0090"+
- "\7\"\2\2\u0090\u00b3\7\u0081\2\2\u0091\u0092\7$\2\2\u0092\u00b3\7\u0081"+
- "\2\2\u0093\u0094\7%\2\2\u0094\u00b3\7\u0081\2\2\u0095\u0096\7&\2\2\u0096"+
- "\u00b3\7\u0081\2\2\u0097\u00b3\5\26\f\2\u0098\u00b3\5\22\n\2\u0099\u009a"+
- "\5\24\13\2\u009a\u009b\7\u0081\2\2\u009b\u00b3\3\2\2\2\u009c\u00b3\5\32"+
- "\16\2\u009d\u009e\5\36\20\2\u009e\u009f\7\u0081\2\2\u009f\u00b3\3\2\2"+
- "\2\u00a0\u00b3\5 \21\2\u00a1\u00b3\5\"\22\2\u00a2\u00b3\5$\23\2\u00a3"+
- "\u00a4\5.\30\2\u00a4\u00a5\7\u0081\2\2\u00a5\u00b3\3\2\2\2\u00a6\u00a7"+
- "\5\16\b\2\u00a7\u00a8\7\u0081\2\2\u00a8\u00b3\3\2\2\2\u00a9\u00aa\5\f"+
- "\7\2\u00aa\u00ab\7\u0081\2\2\u00ab\u00b3\3\2\2\2\u00ac\u00ad\5\b\5\2\u00ad"+
- "\u00ae\7\u0081\2\2\u00ae\u00b3\3\2\2\2\u00af\u00b0\5\n\6\2\u00b0\u00b1"+
- "\7\u0081\2\2\u00b1\u00b3\3\2\2\2\u00b2\u0086\3\2\2\2\u00b2\u0087\3\2\2"+
- "\2\u00b2\u008c\3\2\2\2\u00b2\u008f\3\2\2\2\u00b2\u0091\3\2\2\2\u00b2\u0093"+
- "\3\2\2\2\u00b2\u0095\3\2\2\2\u00b2\u0097\3\2\2\2\u00b2\u0098\3\2\2\2\u00b2"+
- "\u0099\3\2\2\2\u00b2\u009c\3\2\2\2\u00b2\u009d\3\2\2\2\u00b2\u00a0\3\2"+
- "\2\2\u00b2\u00a1\3\2\2\2\u00b2\u00a2\3\2\2\2\u00b2\u00a3\3\2\2\2\u00b2"+
- "\u00a6\3\2\2\2\u00b2\u00a9\3\2\2\2\u00b2\u00ac\3\2\2\2\u00b2\u00af\3\2"+
- "\2\2\u00b3\7\3\2\2\2\u00b4\u00b5\7\7\2\2\u00b5\u00b6\5.\30\2\u00b6\t\3"+
- "\2\2\2\u00b7\u00b8\7\6\2\2\u00b8\u00b9\5.\30\2\u00b9\13\3\2\2\2\u00ba"+
- "\u00bb\7\35\2\2\u00bb\u00c0\7f\2\2\u00bc\u00bd\7\u0086\2\2\u00bd\u00bf"+
- "\7f\2\2\u00be\u00bc\3\2\2\2\u00bf\u00c2\3\2\2\2\u00c0\u00be\3\2\2\2\u00c0"+
- "\u00c1\3\2\2\2\u00c1\r\3\2\2\2\u00c2\u00c0\3\2\2\2\u00c3\u00c4\7\b\2\2"+
- "\u00c4\u00c9\5\20\t\2\u00c5\u00c6\7\u0086\2\2\u00c6\u00c8\5\20\t\2\u00c7"+
- "\u00c5\3\2\2\2\u00c8\u00cb\3\2\2\2\u00c9\u00c7\3\2\2\2\u00c9\u00ca\3\2"+
- "\2\2\u00ca\17\3\2\2\2\u00cb\u00c9\3\2\2\2\u00cc\u00cd\7[\2\2\u00cd\u00ce"+
- "\7f\2\2\u00ce\u00cf\7\u0082\2\2\u00cf\u00d0\5t;\2\u00d0\21\3\2\2\2\u00d1"+
- "\u00d2\7]\2\2\u00d2\u00d3\7-\2\2\u00d3\u00d4\7\u008c\2\2\u00d4\23\3\2"+
- "\2\2\u00d5\u00d6\7 \2\2\u00d6\u00d7\5\6\4\2\u00d7\u00d8\7#\2\2\u00d8\u00d9"+
- "\7z\2\2\u00d9\u00da\5.\30\2\u00da\u00db\7{\2\2\u00db\25\3\2\2\2\u00dc"+
- "\u00de\7\u0084\2\2\u00dd\u00df\5\4\3\2\u00de\u00dd\3\2\2\2\u00de\u00df"+
- "\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\7\u0085\2\2\u00e1\27\3\2\2\2"+
- "\u00e2\u00e3\7\36\2\2\u00e3\u00e4\5.\30\2\u00e4\u00e5\7\33\2\2\u00e5\u00e8"+
- "\5.\30\2\u00e6\u00e7\7Z\2\2\u00e7\u00e9\5.\30\2\u00e8\u00e6\3\2\2\2\u00e8"+
- "\u00e9\3\2\2\2\u00e9\u00f0\3\2\2\2\u00ea\u00eb\7\37\2\2\u00eb\u00ec\5"+
- ".\30\2\u00ec\u00ed\7\33\2\2\u00ed\u00ee\5.\30\2\u00ee\u00f0\3\2\2\2\u00ef"+
- "\u00e2\3\2\2\2\u00ef\u00ea\3\2\2\2\u00f0\31\3\2\2\2\u00f1\u00f2\7\26\2"+
- "\2\u00f2\u00f3\7z\2\2\u00f3\u00f4\5.\30\2\u00f4\u00f8\7{\2\2\u00f5\u00f7"+
- "\5\34\17\2\u00f6\u00f5\3\2\2\2\u00f7\u00fa\3\2\2\2\u00f8\u00f6\3\2\2\2"+
- "\u00f8\u00f9\3\2\2\2\u00f9\u00fb\3\2\2\2\u00fa\u00f8\3\2\2\2\u00fb\u00fc"+
- "\5\6\4\2\u00fc\33\3\2\2\2\u00fd\u00fe\7\t\2\2\u00fe\u00ff\5.\30\2\u00ff"+
- "\u0100\7\u0081\2\2\u0100\u010c\3\2\2\2\u0101\u0102\7\f\2\2\u0102\u0107"+
- "\7f\2\2\u0103\u0104\7\u0086\2\2\u0104\u0106\7f\2\2\u0105\u0103\3\2\2\2"+
- "\u0106\u0109\3\2\2\2\u0107\u0105\3\2\2\2\u0107\u0108\3\2\2\2\u0108\u010a"+
- "\3\2\2\2\u0109\u0107\3\2\2\2\u010a\u010c\7\u0081\2\2\u010b\u00fd\3\2\2"+
- "\2\u010b\u0101\3\2\2\2\u010c\35\3\2\2\2\u010d\u010e\7\27\2\2\u010e\u010f"+
- "\5\6\4\2\u010f\u0110\7\26\2\2\u0110\u0111\7z\2\2\u0111\u0112\5.\30\2\u0112"+
- "\u0113\7{\2\2\u0113\37\3\2\2\2\u0114\u0115\7\24\2\2\u0115\u0116\7z\2\2"+
- "\u0116\u0117\5.\30\2\u0117\u0118\7{\2\2\u0118\u011b\5\6\4\2\u0119\u011a"+
- "\7\25\2\2\u011a\u011c\5\6\4\2\u011b\u0119\3\2\2\2\u011b\u011c\3\2\2\2"+
- "\u011c!\3\2\2\2\u011d\u011e\7\30\2\2\u011e\u011f\7z\2\2\u011f\u0120\5"+
- ".\30\2\u0120\u0121\7\u0081\2\2\u0121\u0122\5.\30\2\u0122\u0123\7\u0081"+
- "\2\2\u0123\u0124\5.\30\2\u0124\u0125\7{\2\2\u0125\u0126\5\6\4\2\u0126"+
- "#\3\2\2\2\u0127\u0128\7\31\2\2\u0128\u0129\7f\2\2\u0129\u012a\7\33\2\2"+
- "\u012a\u012b\5.\30\2\u012b\u012c\5\6\4\2\u012c%\3\2\2\2\u012d\u012e\7"+
- "f\2\2\u012e\u0137\7z\2\2\u012f\u0134\5,\27\2\u0130\u0131\7\u0086\2\2\u0131"+
- "\u0133\5,\27\2\u0132\u0130\3\2\2\2\u0133\u0136\3\2\2\2\u0134\u0132\3\2"+
- "\2\2\u0134\u0135\3\2\2\2\u0135\u0138\3\2\2\2\u0136\u0134\3\2\2\2\u0137"+
- "\u012f\3\2\2\2\u0137\u0138\3\2\2\2\u0138\u0139\3\2\2\2\u0139\u013c\7{"+
- "\2\2\u013a\u013b\7\u0082\2\2\u013b\u013d\5t;\2\u013c\u013a\3\2\2\2\u013c"+
- "\u013d\3\2\2\2\u013d\u0147\3\2\2\2\u013e\u013f\t\2\2\2\u013f\u0144\7f"+
- "\2\2\u0140\u0141\7\u0086\2\2\u0141\u0143\7f\2\2\u0142\u0140\3\2\2\2\u0143"+
- "\u0146\3\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0148\3\2"+
- "\2\2\u0146\u0144\3\2\2\2\u0147\u013e\3\2\2\2\u0147\u0148\3\2\2\2\u0148"+
- "\u014d\3\2\2\2\u0149\u014a\7\n\2\2\u014a\u014c\5(\25\2\u014b\u0149\3\2"+
- "\2\2\u014c\u014f\3\2\2\2\u014d\u014b\3\2\2\2\u014d\u014e\3\2\2\2\u014e"+
- "\u0154\3\2\2\2\u014f\u014d\3\2\2\2\u0150\u0151\7\13\2\2\u0151\u0153\5"+
- "*\26\2\u0152\u0150\3\2\2\2\u0153\u0156\3\2\2\2\u0154\u0152\3\2\2\2\u0154"+
- "\u0155\3\2\2\2\u0155\u0157\3\2\2\2\u0156\u0154\3\2\2\2\u0157\u0158\5\26"+
- "\f\2\u0158\'\3\2\2\2\u0159\u015a\5.\30\2\u015a)\3\2\2\2\u015b\u015c\5"+
- ".\30\2\u015c+\3\2\2\2\u015d\u015f\7\34\2\2\u015e\u015d\3\2\2\2\u015e\u015f"+
- "\3\2\2\2\u015f\u0160\3\2\2\2\u0160\u0163\7f\2\2\u0161\u0162\7\u0082\2"+
- "\2\u0162\u0164\5t;\2\u0163\u0161\3\2\2\2\u0163\u0164\3\2\2\2\u0164-\3"+
- "\2\2\2\u0165\u0166\5\60\31\2\u0166\u0167\7\16\2\2\u0167\u0168\5.\30\2"+
- "\u0168\u018f\3\2\2\2\u0169\u016a\5\60\31\2\u016a\u016b\7\17\2\2\u016b"+
- "\u016c\5.\30\2\u016c\u018f\3\2\2\2\u016d\u016e\7\20\2\2\u016e\u016f\7"+
- "f\2\2\u016f\u0170\7\u0082\2\2\u0170\u0177\5t;\2\u0171\u0172\7\u0086\2"+
- "\2\u0172\u0173\7f\2\2\u0173\u0174\7\u0082\2\2\u0174\u0176\5t;\2\u0175"+
- "\u0171\3\2\2\2\u0176\u0179\3\2\2\2\u0177\u0175\3\2\2\2\u0177\u0178\3\2"+
- "\2\2\u0178\u017a\3\2\2\2\u0179\u0177\3\2\2\2\u017a\u017b\7\22\2\2\u017b"+
- "\u017c\5.\30\2\u017c\u018f\3\2\2\2\u017d\u017e\7\21\2\2\u017e\u017f\7"+
- "f\2\2\u017f\u0180\7\u0082\2\2\u0180\u0187\5t;\2\u0181\u0182\7\u0086\2"+
- "\2\u0182\u0183\7f\2\2\u0183\u0184\7\u0082\2\2\u0184\u0186\5t;\2\u0185"+
- "\u0181\3\2\2\2\u0186\u0189\3\2\2\2\u0187\u0185\3\2\2\2\u0187\u0188\3\2"+
- "\2\2\u0188\u018a\3\2\2\2\u0189\u0187\3\2\2\2\u018a\u018b\7\22\2\2\u018b"+
- "\u018c\5.\30\2\u018c\u018f\3\2\2\2\u018d\u018f\5\60\31\2\u018e\u0165\3"+
- "\2\2\2\u018e\u0169\3\2\2\2\u018e\u016d\3\2\2\2\u018e\u017d\3\2\2\2\u018e"+
- "\u018d\3\2\2\2\u018f/\3\2\2\2\u0190\u0191\5N(\2\u0191\u0192\7t\2\2\u0192"+
- "\u0193\5.\30\2\u0193\u0196\3\2\2\2\u0194\u0196\5\62\32\2\u0195\u0190\3"+
- "\2\2\2\u0195\u0194\3\2\2\2\u0196\61\3\2\2\2\u0197\u019d\5\64\33\2\u0198"+
- "\u0199\7\u008b\2\2\u0199\u019a\5.\30\2\u019a\u019b\7\u0082\2\2\u019b\u019c"+
- "\5.\30\2\u019c\u019e\3\2\2\2\u019d\u0198\3\2\2\2\u019d\u019e\3\2\2\2\u019e"+
- "\63\3\2\2\2\u019f\u01a4\5\66\34\2\u01a0\u01a1\7~\2\2\u01a1\u01a3\5\66"+
- "\34\2\u01a2\u01a0\3\2\2\2\u01a3\u01a6\3\2\2\2\u01a4\u01a2\3\2\2\2\u01a4"+
- "\u01a5\3\2\2\2\u01a5\65\3\2\2\2\u01a6\u01a4\3\2\2\2\u01a7\u01ac\58\35"+
- "\2\u01a8\u01a9\7\177\2\2\u01a9\u01ab\58\35\2\u01aa\u01a8\3\2\2\2\u01ab"+
- "\u01ae\3\2\2\2\u01ac\u01aa\3\2\2\2\u01ac\u01ad\3\2\2\2\u01ad\67\3\2\2"+
- "\2\u01ae\u01ac\3\2\2\2\u01af\u01b4\5:\36\2\u01b0\u01b1\7\32\2\2\u01b1"+
- "\u01b3\5:\36\2\u01b2\u01b0\3\2\2\2\u01b3\u01b6\3\2\2\2\u01b4\u01b2\3\2"+
- "\2\2\u01b4\u01b5\3\2\2\2\u01b59\3\2\2\2\u01b6\u01b4\3\2\2\2\u01b7\u01bc"+
- "\5<\37\2\u01b8\u01b9\t\3\2\2\u01b9\u01bb\5<\37\2\u01ba\u01b8\3\2\2\2\u01bb"+
- "\u01be\3\2\2\2\u01bc\u01ba\3\2\2\2\u01bc\u01bd\3\2\2\2\u01bd;\3\2\2\2"+
- "\u01be\u01bc\3\2\2\2\u01bf\u01c4\5> \2\u01c0\u01c1\t\4\2\2\u01c1\u01c3"+
- "\5> \2\u01c2\u01c0\3\2\2\2\u01c3\u01c6\3\2\2\2\u01c4\u01c2\3\2\2\2\u01c4"+
- "\u01c5\3\2\2\2\u01c5=\3\2\2\2\u01c6\u01c4\3\2\2\2\u01c7\u01cc\5@!\2\u01c8"+
- "\u01c9\t\5\2\2\u01c9\u01cb\5@!\2\u01ca\u01c8\3\2\2\2\u01cb\u01ce\3\2\2"+
- "\2\u01cc\u01ca\3\2\2\2\u01cc\u01cd\3\2\2\2\u01cd?\3\2\2\2\u01ce\u01cc"+
- "\3\2\2\2\u01cf\u01d4\5B\"\2\u01d0\u01d1\t\6\2\2\u01d1\u01d3\5B\"\2\u01d2"+
- "\u01d0\3\2\2\2\u01d3\u01d6\3\2\2\2\u01d4\u01d2\3\2\2\2\u01d4\u01d5\3\2"+
- "\2\2\u01d5A\3\2\2\2\u01d6\u01d4\3\2\2\2\u01d7\u01dc\5D#\2\u01d8\u01d9"+
- "\7i\2\2\u01d9\u01db\5D#\2\u01da\u01d8\3\2\2\2\u01db\u01de\3\2\2\2\u01dc"+
- "\u01da\3\2\2\2\u01dc\u01dd\3\2\2\2\u01ddC\3\2\2\2\u01de\u01dc\3\2\2\2"+
- "\u01df\u01e4\5F$\2\u01e0\u01e1\t\7\2\2\u01e1\u01e3\5F$\2\u01e2\u01e0\3"+
- "\2\2\2\u01e3\u01e6\3\2\2\2\u01e4\u01e2\3\2\2\2\u01e4\u01e5\3\2\2\2\u01e5"+
- "E\3\2\2\2\u01e6\u01e4\3\2\2\2\u01e7\u01ec\5H%\2\u01e8\u01e9\t\b\2\2\u01e9"+
- "\u01eb\5H%\2\u01ea\u01e8\3\2\2\2\u01eb\u01ee\3\2\2\2\u01ec\u01ea\3\2\2"+
- "\2\u01ec\u01ed\3\2\2\2\u01edG\3\2\2\2\u01ee\u01ec\3\2\2\2\u01ef\u01f4"+
- "\5J&\2\u01f0\u01f1\t\t\2\2\u01f1\u01f3\5J&\2\u01f2\u01f0\3\2\2\2\u01f3"+
- "\u01f6\3\2\2\2\u01f4\u01f2\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5I\3\2\2\2"+
- "\u01f6\u01f4\3\2\2\2\u01f7\u01f8\t\n\2\2\u01f8\u01fd\5J&\2\u01f9\u01fa"+
- "\t\13\2\2\u01fa\u01fd\5J&\2\u01fb\u01fd\5L\'\2\u01fc\u01f7\3\2\2\2\u01fc"+
- "\u01f9\3\2\2\2\u01fc\u01fb\3\2\2\2\u01fdK\3\2\2\2\u01fe\u0202\5N(\2\u01ff"+
- "\u0201\t\f\2\2\u0200\u01ff\3\2\2\2\u0201\u0204\3\2\2\2\u0202\u0200\3\2"+
- "\2\2\u0202\u0203\3\2\2\2\u0203M\3\2\2\2\u0204\u0202\3\2\2\2\u0205\u0206"+
- "\b(\1\2\u0206\u0207\5P)\2\u0207\u0215\3\2\2\2\u0208\u0209\f\6\2\2\u0209"+
- "\u020a\7\u0087\2\2\u020a\u0214\5r:\2\u020b\u020c\f\5\2\2\u020c\u020d\7"+
- "\u0087\2\2\u020d\u0214\7f\2\2\u020e\u020f\f\4\2\2\u020f\u0210\7\u0088"+
- "\2\2\u0210\u0211\5.\30\2\u0211\u0212\7\u0089\2\2\u0212\u0214\3\2\2\2\u0213"+
- "\u0208\3\2\2\2\u0213\u020b\3\2\2\2\u0213\u020e\3\2\2\2\u0214\u0217\3\2"+
- "\2\2\u0215\u0213\3\2\2\2\u0215\u0216\3\2\2\2\u0216O\3\2\2\2\u0217\u0215"+
- "\3\2\2\2\u0218\u0226\7\r\2\2\u0219\u0226\5X-\2\u021a\u0226\5T+\2\u021b"+
- "\u021c\7z\2\2\u021c\u021d\5.\30\2\u021d\u021e\7{\2\2\u021e\u0226\3\2\2"+
- "\2\u021f\u0220\7^\2\2\u0220\u0221\5R*\2\u0221\u0222\7z\2\2\u0222\u0223"+
- "\5.\30\2\u0223\u0224\7{\2\2\u0224\u0226\3\2\2\2\u0225\u0218\3\2\2\2\u0225"+
- "\u0219\3\2\2\2\u0225\u021a\3\2\2\2\u0225\u021b\3\2\2\2\u0225\u021f\3\2"+
- "\2\2\u0226Q\3\2\2\2\u0227\u0228\7_\2\2\u0228S\3\2\2\2\u0229\u022c\5V,"+
- "\2\u022a\u022c\5Z.\2\u022b\u0229\3\2\2\2\u022b\u022a\3\2\2\2\u022cU\3"+
- "\2\2\2\u022d\u0233\7c\2\2\u022e\u0233\7d\2\2\u022f\u0233\7e\2\2\u0230"+
- "\u0233\7\u008c\2\2\u0231\u0233\7\u008b\2\2\u0232\u022d\3\2\2\2\u0232\u022e"+
- "\3\2\2\2\u0232\u022f\3\2\2\2\u0232\u0230\3\2\2\2\u0232\u0231\3\2\2\2\u0233"+
- "W\3\2\2\2\u0234\u0239\5n8\2\u0235\u0239\7f\2\2\u0236\u0237\7[\2\2\u0237"+
- "\u0239\7f\2\2\u0238\u0234\3\2\2\2\u0238\u0235\3\2\2\2\u0238\u0236\3\2"+
- "\2\2\u0239Y\3\2\2\2\u023a\u0240\5`\61\2\u023b\u0240\5b\62\2\u023c\u0240"+
- "\5h\65\2\u023d\u0240\5d\63\2\u023e\u0240\5j\66\2\u023f\u023a\3\2\2\2\u023f"+
- "\u023b\3\2\2\2\u023f\u023c\3\2\2\2\u023f\u023d\3\2\2\2\u023f\u023e\3\2"+
- "\2\2\u0240[\3\2\2\2\u0241\u0242\5.\30\2\u0242\u0243\7\u0087\2\2\u0243"+
- "\u0244\7\u0087\2\2\u0244\u0245\5.\30\2\u0245]\3\2\2\2\u0246\u0247\7f\2"+
- "\2\u0247\u0248\7\33\2\2\u0248\u0249\5.\30\2\u0249\u024a\7\u0083\2\2\u024a"+
- "\u024b\5.\30\2\u024b\u0253\3\2\2\2\u024c\u024d\5.\30\2\u024d\u024e\7\u0083"+
- "\2\2\u024e\u024f\7f\2\2\u024f\u0250\7\33\2\2\u0250\u0251\5.\30\2\u0251"+
- "\u0253\3\2\2\2\u0252\u0246\3\2\2\2\u0252\u024c\3\2\2\2\u0253_\3\2\2\2"+
- "\u0254\u0255\7\u0088\2\2\u0255\u0256\5^\60\2\u0256\u0257\7\u0089\2\2\u0257"+
- "\u0269\3\2\2\2\u0258\u0261\7\u0088\2\2\u0259\u025e\5.\30\2\u025a\u025b"+
- "\7\u0086\2\2\u025b\u025d\5.\30\2\u025c\u025a\3\2\2\2\u025d\u0260\3\2\2"+
- "\2\u025e\u025c\3\2\2\2\u025e\u025f\3\2\2\2\u025f\u0262\3\2\2\2\u0260\u025e"+
- "\3\2\2\2\u0261\u0259\3\2\2\2\u0261\u0262\3\2\2\2\u0262\u0263\3\2\2\2\u0263"+
- "\u0269\7\u0089\2\2\u0264\u0265\7\u0088\2\2\u0265\u0266\5\\/\2\u0266\u0267"+
- "\7\u0089\2\2\u0267\u0269\3\2\2\2\u0268\u0254\3\2\2\2\u0268\u0258\3\2\2"+
- "\2\u0268\u0264\3\2\2\2\u0269a\3\2\2\2\u026a\u0280\7)\2\2\u026b\u026c\7"+
- "n\2\2\u026c\u026d\5^\60\2\u026d\u026e\7o\2\2\u026e\u0280\3\2\2\2\u026f"+
- "\u0278\7n\2\2\u0270\u0275\5.\30\2\u0271\u0272\7\u0086\2\2\u0272\u0274"+
- "\5.\30\2\u0273\u0271\3\2\2\2\u0274\u0277\3\2\2\2\u0275\u0273\3\2\2\2\u0275"+
- "\u0276\3\2\2\2\u0276\u0279\3\2\2\2\u0277\u0275\3\2\2\2\u0278\u0270\3\2"+
- "\2\2\u0278\u0279\3\2\2\2\u0279\u027a\3\2\2\2\u027a\u0280\7o\2\2\u027b"+
- "\u027c\7n\2\2\u027c\u027d\5\\/\2\u027d\u027e\7o\2\2\u027e\u0280\3\2\2"+
- "\2\u027f\u026a\3\2\2\2\u027f\u026b\3\2\2\2\u027f\u026f\3\2\2\2\u027f\u027b"+
- "\3\2\2\2\u0280c\3\2\2\2\u0281\u0283\7\u0084\2\2\u0282\u0284\5f\64\2\u0283"+
- "\u0282\3\2\2\2\u0284\u0285\3\2\2\2\u0285\u0283\3\2\2\2\u0285\u0286\3\2"+
- "\2\2\u0286\u0287\3\2\2\2\u0287\u0288\7\u0085\2\2\u0288\u0290\3\2\2\2\u0289"+
- "\u028e\7*\2\2\u028a\u028b\7\u0084\2\2\u028b\u028c\7\\\2\2\u028c\u028e"+
- "\7\u0085\2\2\u028d\u0289\3\2\2\2\u028d\u028a\3\2\2\2\u028e\u0290\3\2\2"+
- "\2\u028f\u0281\3\2\2\2\u028f\u028d\3\2\2\2\u0290e\3\2\2\2\u0291\u0292"+
- "\7f\2\2\u0292\u0293\7\\\2\2\u0293\u0294\5.\30\2\u0294g\3\2\2\2\u0295\u02ab"+
- "\7(\2\2\u0296\u0297\7\u0084\2\2\u0297\u0298\5^\60\2\u0298\u0299\7\u0085"+
- "\2\2\u0299\u02ab\3\2\2\2\u029a\u02a3\7\u0084\2\2\u029b\u02a0\5.\30\2\u029c"+
- "\u029d\7\u0086\2\2\u029d\u029f\5.\30\2\u029e\u029c\3\2\2\2\u029f\u02a2"+
- "\3\2\2\2\u02a0\u029e\3\2\2\2\u02a0\u02a1\3\2\2\2\u02a1\u02a4\3\2\2\2\u02a2"+
- "\u02a0\3\2\2\2\u02a3\u029b\3\2\2\2\u02a3\u02a4\3\2\2\2\u02a4\u02a5\3\2"+
- "\2\2\u02a5\u02ab\7\u0085\2\2\u02a6\u02a7\7\u0084\2\2\u02a7\u02a8\5\\/"+
- "\2\u02a8\u02a9\7\u0085\2\2\u02a9\u02ab\3\2\2\2\u02aa\u0295\3\2\2\2\u02aa"+
- "\u0296\3\2\2\2\u02aa\u029a\3\2\2\2\u02aa\u02a6\3\2\2\2\u02abi\3\2\2\2"+
- "\u02ac\u02b1\7\'\2\2\u02ad\u02ae\7\u0084\2\2\u02ae\u02af\7\23\2\2\u02af"+
- "\u02b1\7\u0085\2\2\u02b0\u02ac\3\2\2\2\u02b0\u02ad\3\2\2\2\u02b1\u02bb"+
- "\3\2\2\2\u02b2\u02b4\7\u0084\2\2\u02b3\u02b5\5l\67\2\u02b4\u02b3\3\2\2"+
- "\2\u02b5\u02b6\3\2\2\2\u02b6\u02b4\3\2\2\2\u02b6\u02b7\3\2\2\2\u02b7\u02b8"+
- "\3\2\2\2\u02b8\u02b9\7\u0085\2\2\u02b9\u02bb\3\2\2\2\u02ba\u02b0\3\2\2"+
- "\2\u02ba\u02b2\3\2\2\2\u02bbk\3\2\2\2\u02bc\u02bd\5.\30\2\u02bd\u02be"+
- "\7\23\2\2\u02be\u02bf\5.\30\2\u02bfm\3\2\2\2\u02c0\u02cf\5p9\2\u02c1\u02c2"+
- "\7f\2\2\u02c2\u02cb\7z\2\2\u02c3\u02c8\5.\30\2\u02c4\u02c5\7\u0086\2\2"+
- "\u02c5\u02c7\5.\30\2\u02c6\u02c4\3\2\2\2\u02c7\u02ca\3\2\2\2\u02c8\u02c6"+
- "\3\2\2\2\u02c8\u02c9\3\2\2\2\u02c9\u02cc\3\2\2\2\u02ca\u02c8\3\2\2\2\u02cb"+
- "\u02c3\3\2\2\2\u02cb\u02cc\3\2\2\2\u02cc\u02cd\3\2\2\2\u02cd\u02cf\7{"+
- "\2\2\u02ce\u02c0\3\2\2\2\u02ce\u02c1\3\2\2\2\u02cfo\3\2\2\2\u02d0\u02d1"+
- "\5v<\2\u02d1\u02da\7z\2\2\u02d2\u02d7\5.\30\2\u02d3\u02d4\7\u0086\2\2"+
- "\u02d4\u02d6\5.\30\2\u02d5\u02d3\3\2\2\2\u02d6\u02d9\3\2\2\2\u02d7\u02d5"+
- "\3\2\2\2\u02d7\u02d8\3\2\2\2\u02d8\u02db\3\2\2\2\u02d9\u02d7\3\2\2\2\u02da"+
- "\u02d2\3\2\2\2\u02da\u02db\3\2\2\2\u02db\u02dc\3\2\2\2\u02dc\u02dd\7{"+
- "\2\2\u02ddq\3\2\2\2\u02de\u02df\5x=\2\u02df\u02e8\7z\2\2\u02e0\u02e5\5"+
- ".\30\2\u02e1\u02e2\7\u0086\2\2\u02e2\u02e4\5.\30\2\u02e3\u02e1\3\2\2\2"+
- "\u02e4\u02e7\3\2\2\2\u02e5\u02e3\3\2\2\2\u02e5\u02e6\3\2\2\2\u02e6\u02e9"+
- "\3\2\2\2\u02e7\u02e5\3\2\2\2\u02e8\u02e0\3\2\2\2\u02e8\u02e9\3\2\2\2\u02e9"+
- "\u02ea\3\2\2\2\u02ea\u02eb\7{\2\2\u02ebs\3\2\2\2\u02ec\u02fa\7F\2\2\u02ed"+
- "\u02fa\7G\2\2\u02ee\u02fa\7C\2\2\u02ef\u02f0\7;\2\2\u02f0\u02f1\7n\2\2"+
- "\u02f1\u02f2\5t;\2\u02f2\u02f3\7o\2\2\u02f3\u02fa\3\2\2\2\u02f4\u02f5"+
- "\7<\2\2\u02f5\u02f6\7n\2\2\u02f6\u02f7\5t;\2\u02f7\u02f8\7o\2\2\u02f8"+
- "\u02fa\3\2\2\2\u02f9\u02ec\3\2\2\2\u02f9\u02ed\3\2\2\2\u02f9\u02ee\3\2"+
- "\2\2\u02f9\u02ef\3\2\2\2\u02f9\u02f4\3\2\2\2\u02fau\3\2\2\2\u02fb\u02fc"+
- "\t\r\2\2\u02fcw\3\2\2\2\u02fd\u02fe\t\16\2\2\u02fey\3\2\2\2\u02ff\u0300"+
- "\7f\2\2\u0300\u0301\7\23\2\2\u0301\u0303\5.\30\2\u0302\u02ff\3\2\2\2\u0303"+
- "\u0306\3\2\2\2\u0304\u0302\3\2\2\2\u0304\u0305\3\2\2\2\u0305\u0307\3\2"+
- "\2\2\u0306\u0304\3\2\2\2\u0307\u0308\7\2\2\3\u0308{\3\2\2\2J}\u0084\u0089"+
- "\u00b2\u00c0\u00c9\u00de\u00e8\u00ef\u00f8\u0107\u010b\u011b\u0134\u0137"+
- "\u013c\u0144\u0147\u014d\u0154\u015e\u0163\u0177\u0187\u018e\u0195\u019d"+
- "\u01a4\u01ac\u01b4\u01bc\u01c4\u01cc\u01d4\u01dc\u01e4\u01ec\u01f4\u01fc"+
- "\u0202\u0213\u0215\u0225\u022b\u0232\u0238\u023f\u0252\u025e\u0261\u0268"+
- "\u0275\u0278\u027f\u0285\u028d\u028f\u02a0\u02a3\u02aa\u02b0\u02b6\u02ba"+
- "\u02c8\u02cb\u02ce\u02d7\u02da\u02e5\u02e8\u02f9\u0304";
+ "\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4\u00b9\n\4"+
+ "\3\5\3\5\3\5\3\6\3\6\3\6\3\7\3\7\3\7\3\7\7\7\u00c5\n\7\f\7\16\7\u00c8"+
+ "\13\7\3\b\3\b\3\b\5\b\u00cd\n\b\3\t\3\t\3\t\3\t\7\t\u00d3\n\t\f\t\16\t"+
+ "\u00d6\13\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3"+
+ "\f\3\f\3\f\3\r\3\r\5\r\u00ea\n\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16"+
+ "\5\16\u00f4\n\16\3\16\3\16\3\16\3\16\3\16\5\16\u00fb\n\16\3\17\3\17\3"+
+ "\17\3\17\3\17\7\17\u0102\n\17\f\17\16\17\u0105\13\17\3\17\3\17\5\17\u0109"+
+ "\n\17\3\20\3\20\3\20\5\20\u010e\n\20\3\20\3\20\3\20\3\20\7\20\u0114\n"+
+ "\20\f\20\16\20\u0117\13\20\3\20\5\20\u011a\n\20\5\20\u011c\n\20\3\21\3"+
+ "\21\3\21\3\21\5\21\u0122\n\21\3\22\3\22\3\22\5\22\u0127\n\22\3\23\3\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u0137"+
+ "\n\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26"+
+ "\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\7\27\u014e\n\27\f\27\16\27\u0151"+
+ "\13\27\5\27\u0153\n\27\3\27\3\27\3\27\3\27\3\27\7\27\u015a\n\27\f\27\16"+
+ "\27\u015d\13\27\5\27\u015f\n\27\3\27\3\27\3\27\5\27\u0164\n\27\7\27\u0166"+
+ "\n\27\f\27\16\27\u0169\13\27\3\27\3\27\3\27\5\27\u016e\n\27\7\27\u0170"+
+ "\n\27\f\27\16\27\u0173\13\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3"+
+ "\30\3\30\7\30\u017f\n\30\f\30\16\30\u0182\13\30\5\30\u0184\n\30\3\31\3"+
+ "\31\3\31\3\31\5\31\u018a\n\31\3\32\5\32\u018d\n\32\3\32\3\32\3\33\3\33"+
+ "\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33"+
+ "\7\33\u01a1\n\33\f\33\16\33\u01a4\13\33\3\33\3\33\3\33\3\33\3\33\3\33"+
+ "\3\33\3\33\3\33\3\33\3\33\7\33\u01b1\n\33\f\33\16\33\u01b4\13\33\3\33"+
+ "\3\33\3\33\3\33\5\33\u01ba\n\33\3\34\3\34\3\34\3\34\3\34\5\34\u01c1\n"+
+ "\34\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01c9\n\35\3\36\3\36\3\36\7\36"+
+ "\u01ce\n\36\f\36\16\36\u01d1\13\36\3\37\3\37\3\37\7\37\u01d6\n\37\f\37"+
+ "\16\37\u01d9\13\37\3 \3 \3 \7 \u01de\n \f \16 \u01e1\13 \3!\3!\3!\7!\u01e6"+
+ "\n!\f!\16!\u01e9\13!\3\"\3\"\3\"\7\"\u01ee\n\"\f\"\16\"\u01f1\13\"\3#"+
+ "\3#\3#\7#\u01f6\n#\f#\16#\u01f9\13#\3$\3$\3$\7$\u01fe\n$\f$\16$\u0201"+
+ "\13$\3%\3%\3%\7%\u0206\n%\f%\16%\u0209\13%\3&\3&\3&\7&\u020e\n&\f&\16"+
+ "&\u0211\13&\3\'\3\'\3\'\7\'\u0216\n\'\f\'\16\'\u0219\13\'\3(\3(\3(\7("+
+ "\u021e\n(\f(\16(\u0221\13(\3)\3)\3)\3)\3)\5)\u0228\n)\3*\3*\7*\u022c\n"+
+ "*\f*\16*\u022f\13*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\7+\u023f"+
+ "\n+\f+\16+\u0242\13+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3"+
+ ",\5,\u0255\n,\3-\3-\3.\3.\5.\u025b\n.\3/\3/\3/\3/\3/\5/\u0262\n/\3\60"+
+ "\3\60\3\60\3\60\5\60\u0268\n\60\3\61\3\61\3\61\3\61\3\61\5\61\u026f\n"+
+ "\61\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3"+
+ "\63\3\63\3\63\3\63\5\63\u0282\n\63\3\64\3\64\3\64\3\64\3\64\3\64\3\64"+
+ "\3\64\7\64\u028c\n\64\f\64\16\64\u028f\13\64\5\64\u0291\n\64\3\64\3\64"+
+ "\3\64\3\64\3\64\5\64\u0298\n\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\65"+
+ "\3\65\7\65\u02a3\n\65\f\65\16\65\u02a6\13\65\5\65\u02a8\n\65\3\65\3\65"+
+ "\3\65\3\65\3\65\5\65\u02af\n\65\3\66\3\66\6\66\u02b3\n\66\r\66\16\66\u02b4"+
+ "\3\66\3\66\3\66\3\66\3\66\3\66\5\66\u02bd\n\66\5\66\u02bf\n\66\3\67\3"+
+ "\67\3\67\3\67\38\38\38\38\38\38\38\38\38\78\u02ce\n8\f8\168\u02d1\138"+
+ "\58\u02d3\n8\38\38\38\38\38\58\u02da\n8\39\39\39\39\59\u02e0\n9\39\39"+
+ "\69\u02e4\n9\r9\169\u02e5\39\39\59\u02ea\n9\3:\3:\3:\3:\3;\3;\3;\3;\3"+
+ ";\3;\7;\u02f6\n;\f;\16;\u02f9\13;\5;\u02fb\n;\3;\5;\u02fe\n;\3<\3<\3<"+
+ "\3<\3<\7<\u0305\n<\f<\16<\u0308\13<\5<\u030a\n<\3<\3<\3=\3=\3=\3=\3=\7"+
+ "=\u0313\n=\f=\16=\u0316\13=\5=\u0318\n=\3=\3=\3>\3>\3>\3>\3>\3>\3>\3>"+
+ "\3>\3>\3>\3>\3>\5>\u0329\n>\3?\3?\3@\3@\3A\3A\3A\7A\u0332\nA\fA\16A\u0335"+
+ "\13A\3A\3A\3A\2\3TB\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+
+ "\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\2\17\3\2-.\3\2tu"+
+ "\3\2ps\3\2bd\4\2\60\60\u0085\u0085\3\2~\177\4\2lmwx\3\2y{\4\2ijno\4\2"+
+ "wy\u0082\u0082\3\2ij\b\2\61\u01da\3\2\2\2@"+
+ "\u01e2\3\2\2\2B\u01ea\3\2\2\2D\u01f2\3\2\2\2F\u01fa\3\2\2\2H\u0202\3\2"+
+ "\2\2J\u020a\3\2\2\2L\u0212\3\2\2\2N\u021a\3\2\2\2P\u0227\3\2\2\2R\u0229"+
+ "\3\2\2\2T\u0230\3\2\2\2V\u0254\3\2\2\2X\u0256\3\2\2\2Z\u025a\3\2\2\2\\"+
+ "\u0261\3\2\2\2^\u0267\3\2\2\2`\u026e\3\2\2\2b\u0270\3\2\2\2d\u0281\3\2"+
+ "\2\2f\u0297\3\2\2\2h\u02ae\3\2\2\2j\u02be\3\2\2\2l\u02c0\3\2\2\2n\u02d9"+
+ "\3\2\2\2p\u02e9\3\2\2\2r\u02eb\3\2\2\2t\u02fd\3\2\2\2v\u02ff\3\2\2\2x"+
+ "\u030d\3\2\2\2z\u0328\3\2\2\2|\u032a\3\2\2\2~\u032c\3\2\2\2\u0080\u0333"+
+ "\3\2\2\2\u0082\u0084\5\4\3\2\u0083\u0082\3\2\2\2\u0083\u0084\3\2\2\2\u0084"+
+ "\u0085\3\2\2\2\u0085\u0086\7\2\2\3\u0086\3\3\2\2\2\u0087\u0089\5\6\4\2"+
+ "\u0088\u0087\3\2\2\2\u0089\u008a\3\2\2\2\u008a\u0088\3\2\2\2\u008a\u008b"+
+ "\3\2\2\2\u008b\5\3\2\2\2\u008c\u00b9\5,\27\2\u008d\u008f\7#\2\2\u008e"+
+ "\u0090\5\64\33\2\u008f\u008e\3\2\2\2\u008f\u0090\3\2\2\2\u0090\u0091\3"+
+ "\2\2\2\u0091\u00b9\7\u0083\2\2\u0092\u0093\5\32\16\2\u0093\u0094\7\u0083"+
+ "\2\2\u0094\u00b9\3\2\2\2\u0095\u0096\7$\2\2\u0096\u00b9\7\u0083\2\2\u0097"+
+ "\u0098\7&\2\2\u0098\u00b9\7\u0083\2\2\u0099\u009a\7\'\2\2\u009a\u00b9"+
+ "\7\u0083\2\2\u009b\u009c\7(\2\2\u009c\u00b9\7\u0083\2\2\u009d\u00b9\5"+
+ "\30\r\2\u009e\u00b9\5\24\13\2\u009f\u00a0\5\26\f\2\u00a0\u00a1\7\u0083"+
+ "\2\2\u00a1\u00b9\3\2\2\2\u00a2\u00b9\5\34\17\2\u00a3\u00a4\5$\23\2\u00a4"+
+ "\u00a5\7\u0083\2\2\u00a5\u00b9\3\2\2\2\u00a6\u00b9\5&\24\2\u00a7\u00b9"+
+ "\5(\25\2\u00a8\u00b9\5*\26\2\u00a9\u00aa\5\64\33\2\u00aa\u00ab\7\u0083"+
+ "\2\2\u00ab\u00b9\3\2\2\2\u00ac\u00ad\5\20\t\2\u00ad\u00ae\7\u0083\2\2"+
+ "\u00ae\u00b9\3\2\2\2\u00af\u00b0\5\f\7\2\u00b0\u00b1\7\u0083\2\2\u00b1"+
+ "\u00b9\3\2\2\2\u00b2\u00b3\5\b\5\2\u00b3\u00b4\7\u0083\2\2\u00b4\u00b9"+
+ "\3\2\2\2\u00b5\u00b6\5\n\6\2\u00b6\u00b7\7\u0083\2\2\u00b7\u00b9\3\2\2"+
+ "\2\u00b8\u008c\3\2\2\2\u00b8\u008d\3\2\2\2\u00b8\u0092\3\2\2\2\u00b8\u0095"+
+ "\3\2\2\2\u00b8\u0097\3\2\2\2\u00b8\u0099\3\2\2\2\u00b8\u009b\3\2\2\2\u00b8"+
+ "\u009d\3\2\2\2\u00b8\u009e\3\2\2\2\u00b8\u009f\3\2\2\2\u00b8\u00a2\3\2"+
+ "\2\2\u00b8\u00a3\3\2\2\2\u00b8\u00a6\3\2\2\2\u00b8\u00a7\3\2\2\2\u00b8"+
+ "\u00a8\3\2\2\2\u00b8\u00a9\3\2\2\2\u00b8\u00ac\3\2\2\2\u00b8\u00af\3\2"+
+ "\2\2\u00b8\u00b2\3\2\2\2\u00b8\u00b5\3\2\2\2\u00b9\7\3\2\2\2\u00ba\u00bb"+
+ "\7\7\2\2\u00bb\u00bc\5\64\33\2\u00bc\t\3\2\2\2\u00bd\u00be\7\6\2\2\u00be"+
+ "\u00bf\5\64\33\2\u00bf\13\3\2\2\2\u00c0\u00c1\7\37\2\2\u00c1\u00c6\5\16"+
+ "\b\2\u00c2\u00c3\7\u0088\2\2\u00c3\u00c5\5\16\b\2\u00c4\u00c2\3\2\2\2"+
+ "\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6\u00c7\3\2\2\2\u00c7\r\3"+
+ "\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc\7h\2\2\u00ca\u00cb\7\u0084\2\2"+
+ "\u00cb\u00cd\5z>\2\u00cc\u00ca\3\2\2\2\u00cc\u00cd\3\2\2\2\u00cd\17\3"+
+ "\2\2\2\u00ce\u00cf\7\b\2\2\u00cf\u00d4\5\22\n\2\u00d0\u00d1\7\u0088\2"+
+ "\2\u00d1\u00d3\5\22\n\2\u00d2\u00d0\3\2\2\2\u00d3\u00d6\3\2\2\2\u00d4"+
+ "\u00d2\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\21\3\2\2\2\u00d6\u00d4\3\2\2"+
+ "\2\u00d7\u00d8\7]\2\2\u00d8\u00d9\7h\2\2\u00d9\u00da\7\u0084\2\2\u00da"+
+ "\u00db\5z>\2\u00db\23\3\2\2\2\u00dc\u00dd\7_\2\2\u00dd\u00de\7/\2\2\u00de"+
+ "\u00df\7\u008e\2\2\u00df\25\3\2\2\2\u00e0\u00e1\7\"\2\2\u00e1\u00e2\5"+
+ "\6\4\2\u00e2\u00e3\7%\2\2\u00e3\u00e4\7|\2\2\u00e4\u00e5\5\64\33\2\u00e5"+
+ "\u00e6\7}\2\2\u00e6\27\3\2\2\2\u00e7\u00e9\7\u0086\2\2\u00e8\u00ea\5\4"+
+ "\3\2\u00e9\u00e8\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\u00eb\3\2\2\2\u00eb"+
+ "\u00ec\7\u0087\2\2\u00ec\31\3\2\2\2\u00ed\u00ee\7 \2\2\u00ee\u00ef\5\64"+
+ "\33\2\u00ef\u00f0\7\35\2\2\u00f0\u00f3\5\64\33\2\u00f1\u00f2\7\\\2\2\u00f2"+
+ "\u00f4\5\64\33\2\u00f3\u00f1\3\2\2\2\u00f3\u00f4\3\2\2\2\u00f4\u00fb\3"+
+ "\2\2\2\u00f5\u00f6\7!\2\2\u00f6\u00f7\5\64\33\2\u00f7\u00f8\7\35\2\2\u00f8"+
+ "\u00f9\5\64\33\2\u00f9\u00fb\3\2\2\2\u00fa\u00ed\3\2\2\2\u00fa\u00f5\3"+
+ "\2\2\2\u00fb\33\3\2\2\2\u00fc\u00fd\7\30\2\2\u00fd\u00fe\7|\2\2\u00fe"+
+ "\u00ff\5\64\33\2\u00ff\u0103\7}\2\2\u0100\u0102\5\36\20\2\u0101\u0100"+
+ "\3\2\2\2\u0102\u0105\3\2\2\2\u0103\u0101\3\2\2\2\u0103\u0104\3\2\2\2\u0104"+
+ "\u0106\3\2\2\2\u0105\u0103\3\2\2\2\u0106\u0108\5\6\4\2\u0107\u0109\5\""+
+ "\22\2\u0108\u0107\3\2\2\2\u0108\u0109\3\2\2\2\u0109\35\3\2\2\2\u010a\u010b"+
+ "\7\t\2\2\u010b\u010d\5\64\33\2\u010c\u010e\7\u0083\2\2\u010d\u010c\3\2"+
+ "\2\2\u010d\u010e\3\2\2\2\u010e\u011c\3\2\2\2\u010f\u0110\7\r\2\2\u0110"+
+ "\u0115\5 \21\2\u0111\u0112\7\u0088\2\2\u0112\u0114\5 \21\2\u0113\u0111"+
+ "\3\2\2\2\u0114\u0117\3\2\2\2\u0115\u0113\3\2\2\2\u0115\u0116\3\2\2\2\u0116"+
+ "\u0119\3\2\2\2\u0117\u0115\3\2\2\2\u0118\u011a\7\u0083\2\2\u0119\u0118"+
+ "\3\2\2\2\u0119\u011a\3\2\2\2\u011a\u011c\3\2\2\2\u011b\u010a\3\2\2\2\u011b"+
+ "\u010f\3\2\2\2\u011c\37\3\2\2\2\u011d\u0122\7h\2\2\u011e\u011f\7h\2\2"+
+ "\u011f\u0120\7\u0089\2\2\u0120\u0122\7S\2\2\u0121\u011d\3\2\2\2\u0121"+
+ "\u011e\3\2\2\2\u0122!\3\2\2\2\u0123\u0124\7\f\2\2\u0124\u0126\5\64\33"+
+ "\2\u0125\u0127\7\u0083\2\2\u0126\u0125\3\2\2\2\u0126\u0127\3\2\2\2\u0127"+
+ "#\3\2\2\2\u0128\u0129\7\31\2\2\u0129\u012a\5\6\4\2\u012a\u012b\7\30\2"+
+ "\2\u012b\u012c\7|\2\2\u012c\u012d\5\64\33\2\u012d\u012e\7}\2\2\u012e%"+
+ "\3\2\2\2\u012f\u0130\7\26\2\2\u0130\u0131\7|\2\2\u0131\u0132\5\64\33\2"+
+ "\u0132\u0133\7}\2\2\u0133\u0136\5\6\4\2\u0134\u0135\7\27\2\2\u0135\u0137"+
+ "\5\6\4\2\u0136\u0134\3\2\2\2\u0136\u0137\3\2\2\2\u0137\'\3\2\2\2\u0138"+
+ "\u0139\7\32\2\2\u0139\u013a\7|\2\2\u013a\u013b\5\64\33\2\u013b\u013c\7"+
+ "\u0083\2\2\u013c\u013d\5\64\33\2\u013d\u013e\7\u0083\2\2\u013e\u013f\5"+
+ "\64\33\2\u013f\u0140\7}\2\2\u0140\u0141\5\6\4\2\u0141)\3\2\2\2\u0142\u0143"+
+ "\7\33\2\2\u0143\u0144\7h\2\2\u0144\u0145\7\35\2\2\u0145\u0146\5\64\33"+
+ "\2\u0146\u0147\5\6\4\2\u0147+\3\2\2\2\u0148\u0149\7h\2\2\u0149\u0152\7"+
+ "|\2\2\u014a\u014f\5\62\32\2\u014b\u014c\7\u0088\2\2\u014c\u014e\5\62\32"+
+ "\2\u014d\u014b\3\2\2\2\u014e\u0151\3\2\2\2\u014f\u014d\3\2\2\2\u014f\u0150"+
+ "\3\2\2\2\u0150\u0153\3\2\2\2\u0151\u014f\3\2\2\2\u0152\u014a\3\2\2\2\u0152"+
+ "\u0153\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u015e\7}\2\2\u0155\u0156\t\2"+
+ "\2\2\u0156\u015b\7h\2\2\u0157\u0158\7\u0088\2\2\u0158\u015a\7h\2\2\u0159"+
+ "\u0157\3\2\2\2\u015a\u015d\3\2\2\2\u015b\u0159\3\2\2\2\u015b\u015c\3\2"+
+ "\2\2\u015c\u015f\3\2\2\2\u015d\u015b\3\2\2\2\u015e\u0155\3\2\2\2\u015e"+
+ "\u015f\3\2\2\2\u015f\u0167\3\2\2\2\u0160\u0161\7\n\2\2\u0161\u0163\5."+
+ "\30\2\u0162\u0164\7\u0083\2\2\u0163\u0162\3\2\2\2\u0163\u0164\3\2\2\2"+
+ "\u0164\u0166\3\2\2\2\u0165\u0160\3\2\2\2\u0166\u0169\3\2\2\2\u0167\u0165"+
+ "\3\2\2\2\u0167\u0168\3\2\2\2\u0168\u0171\3\2\2\2\u0169\u0167\3\2\2\2\u016a"+
+ "\u016b\7\13\2\2\u016b\u016d\5\60\31\2\u016c\u016e\7\u0083\2\2\u016d\u016c"+
+ "\3\2\2\2\u016d\u016e\3\2\2\2\u016e\u0170\3\2\2\2\u016f\u016a\3\2\2\2\u0170"+
+ "\u0173\3\2\2\2\u0171\u016f\3\2\2\2\u0171\u0172\3\2\2\2\u0172\u0174\3\2"+
+ "\2\2\u0173\u0171\3\2\2\2\u0174\u0175\5\30\r\2\u0175-\3\2\2\2\u0176\u0184"+
+ "\5\64\33\2\u0177\u0178\7h\2\2\u0178\u0179\7\u0084\2\2\u0179\u0180\5z>"+
+ "\2\u017a\u017b\7\u0081\2\2\u017b\u017c\7h\2\2\u017c\u017d\7\u0084\2\2"+
+ "\u017d\u017f\5z>\2\u017e\u017a\3\2\2\2\u017f\u0182\3\2\2\2\u0180\u017e"+
+ "\3\2\2\2\u0180\u0181\3\2\2\2\u0181\u0184\3\2\2\2\u0182\u0180\3\2\2\2\u0183"+
+ "\u0176\3\2\2\2\u0183\u0177\3\2\2\2\u0184/\3\2\2\2\u0185\u018a\5\64\33"+
+ "\2\u0186\u0187\7\16\2\2\u0187\u0188\7\u0084\2\2\u0188\u018a\5z>\2\u0189"+
+ "\u0185\3\2\2\2\u0189\u0186\3\2\2\2\u018a\61\3\2\2\2\u018b\u018d\7\36\2"+
+ "\2\u018c\u018b\3\2\2\2\u018c\u018d\3\2\2\2\u018d\u018e\3\2\2\2\u018e\u018f"+
+ "\7h\2\2\u018f\63\3\2\2\2\u0190\u0191\5\66\34\2\u0191\u0192\7\20\2\2\u0192"+
+ "\u0193\5\64\33\2\u0193\u01ba\3\2\2\2\u0194\u0195\5\66\34\2\u0195\u0196"+
+ "\7\21\2\2\u0196\u0197\5\64\33\2\u0197\u01ba\3\2\2\2\u0198\u0199\7\22\2"+
+ "\2\u0199\u019a\7h\2\2\u019a\u019b\7\u0084\2\2\u019b\u01a2\5z>\2\u019c"+
+ "\u019d\7\u0088\2\2\u019d\u019e\7h\2\2\u019e\u019f\7\u0084\2\2\u019f\u01a1"+
+ "\5z>\2\u01a0\u019c\3\2\2\2\u01a1\u01a4\3\2\2\2\u01a2\u01a0\3\2\2\2\u01a2"+
+ "\u01a3\3\2\2\2\u01a3\u01a5\3\2\2\2\u01a4\u01a2\3\2\2\2\u01a5\u01a6\7\24"+
+ "\2\2\u01a6\u01a7\5\64\33\2\u01a7\u01ba\3\2\2\2\u01a8\u01a9\7\23\2\2\u01a9"+
+ "\u01aa\7h\2\2\u01aa\u01ab\7\u0084\2\2\u01ab\u01b2\5z>\2\u01ac\u01ad\7"+
+ "\u0088\2\2\u01ad\u01ae\7h\2\2\u01ae\u01af\7\u0084\2\2\u01af\u01b1\5z>"+
+ "\2\u01b0\u01ac\3\2\2\2\u01b1\u01b4\3\2\2\2\u01b2\u01b0\3\2\2\2\u01b2\u01b3"+
+ "\3\2\2\2\u01b3\u01b5\3\2\2\2\u01b4\u01b2\3\2\2\2\u01b5\u01b6\7\24\2\2"+
+ "\u01b6\u01b7\5\64\33\2\u01b7\u01ba\3\2\2\2\u01b8\u01ba\5\66\34\2\u01b9"+
+ "\u0190\3\2\2\2\u01b9\u0194\3\2\2\2\u01b9\u0198\3\2\2\2\u01b9\u01a8\3\2"+
+ "\2\2\u01b9\u01b8\3\2\2\2\u01ba\65\3\2\2\2\u01bb\u01bc\5T+\2\u01bc\u01bd"+
+ "\7v\2\2\u01bd\u01be\5\64\33\2\u01be\u01c1\3\2\2\2\u01bf\u01c1\58\35\2"+
+ "\u01c0\u01bb\3\2\2\2\u01c0\u01bf\3\2\2\2\u01c1\67\3\2\2\2\u01c2\u01c8"+
+ "\5:\36\2\u01c3\u01c4\7\u008d\2\2\u01c4\u01c5\5\64\33\2\u01c5\u01c6\7\u0084"+
+ "\2\2\u01c6\u01c7\5\64\33\2\u01c7\u01c9\3\2\2\2\u01c8\u01c3\3\2\2\2\u01c8"+
+ "\u01c9\3\2\2\2\u01c99\3\2\2\2\u01ca\u01cf\5<\37\2\u01cb\u01cc\7\u0080"+
+ "\2\2\u01cc\u01ce\5<\37\2\u01cd\u01cb\3\2\2\2\u01ce\u01d1\3\2\2\2\u01cf"+
+ "\u01cd\3\2\2\2\u01cf\u01d0\3\2\2\2\u01d0;\3\2\2\2\u01d1\u01cf\3\2\2\2"+
+ "\u01d2\u01d7\5> \2\u01d3\u01d4\7\u0081\2\2\u01d4\u01d6\5> \2\u01d5\u01d3"+
+ "\3\2\2\2\u01d6\u01d9\3\2\2\2\u01d7\u01d5\3\2\2\2\u01d7\u01d8\3\2\2\2\u01d8"+
+ "=\3\2\2\2\u01d9\u01d7\3\2\2\2\u01da\u01df\5@!\2\u01db\u01dc\7\34\2\2\u01dc"+
+ "\u01de\5@!\2\u01dd\u01db\3\2\2\2\u01de\u01e1\3\2\2\2\u01df\u01dd\3\2\2"+
+ "\2\u01df\u01e0\3\2\2\2\u01e0?\3\2\2\2\u01e1\u01df\3\2\2\2\u01e2\u01e7"+
+ "\5B\"\2\u01e3\u01e4\t\3\2\2\u01e4\u01e6\5B\"\2\u01e5\u01e3\3\2\2\2\u01e6"+
+ "\u01e9\3\2\2\2\u01e7\u01e5\3\2\2\2\u01e7\u01e8\3\2\2\2\u01e8A\3\2\2\2"+
+ "\u01e9\u01e7\3\2\2\2\u01ea\u01ef\5D#\2\u01eb\u01ec\t\4\2\2\u01ec\u01ee"+
+ "\5D#\2\u01ed\u01eb\3\2\2\2\u01ee\u01f1\3\2\2\2\u01ef\u01ed\3\2\2\2\u01ef"+
+ "\u01f0\3\2\2\2\u01f0C\3\2\2\2\u01f1\u01ef\3\2\2\2\u01f2\u01f7\5F$\2\u01f3"+
+ "\u01f4\t\5\2\2\u01f4\u01f6\5F$\2\u01f5\u01f3\3\2\2\2\u01f6\u01f9\3\2\2"+
+ "\2\u01f7\u01f5\3\2\2\2\u01f7\u01f8\3\2\2\2\u01f8E\3\2\2\2\u01f9\u01f7"+
+ "\3\2\2\2\u01fa\u01ff\5H%\2\u01fb\u01fc\t\6\2\2\u01fc\u01fe\5H%\2\u01fd"+
+ "\u01fb\3\2\2\2\u01fe\u0201\3\2\2\2\u01ff\u01fd\3\2\2\2\u01ff\u0200\3\2"+
+ "\2\2\u0200G\3\2\2\2\u0201\u01ff\3\2\2\2\u0202\u0207\5J&\2\u0203\u0204"+
+ "\7k\2\2\u0204\u0206\5J&\2\u0205\u0203\3\2\2\2\u0206\u0209\3\2\2\2\u0207"+
+ "\u0205\3\2\2\2\u0207\u0208\3\2\2\2\u0208I\3\2\2\2\u0209\u0207\3\2\2\2"+
+ "\u020a\u020f\5L\'\2\u020b\u020c\t\7\2\2\u020c\u020e\5L\'\2\u020d\u020b"+
+ "\3\2\2\2\u020e\u0211\3\2\2\2\u020f\u020d\3\2\2\2\u020f\u0210\3\2\2\2\u0210"+
+ "K\3\2\2\2\u0211\u020f\3\2\2\2\u0212\u0217\5N(\2\u0213\u0214\t\b\2\2\u0214"+
+ "\u0216\5N(\2\u0215\u0213\3\2\2\2\u0216\u0219\3\2\2\2\u0217\u0215\3\2\2"+
+ "\2\u0217\u0218\3\2\2\2\u0218M\3\2\2\2\u0219\u0217\3\2\2\2\u021a\u021f"+
+ "\5P)\2\u021b\u021c\t\t\2\2\u021c\u021e\5P)\2\u021d\u021b\3\2\2\2\u021e"+
+ "\u0221\3\2\2\2\u021f\u021d\3\2\2\2\u021f\u0220\3\2\2\2\u0220O\3\2\2\2"+
+ "\u0221\u021f\3\2\2\2\u0222\u0223\t\n\2\2\u0223\u0228\5P)\2\u0224\u0225"+
+ "\t\13\2\2\u0225\u0228\5P)\2\u0226\u0228\5R*\2\u0227\u0222\3\2\2\2\u0227"+
+ "\u0224\3\2\2\2\u0227\u0226\3\2\2\2\u0228Q\3\2\2\2\u0229\u022d\5T+\2\u022a"+
+ "\u022c\t\f\2\2\u022b\u022a\3\2\2\2\u022c\u022f\3\2\2\2\u022d\u022b\3\2"+
+ "\2\2\u022d\u022e\3\2\2\2\u022eS\3\2\2\2\u022f\u022d\3\2\2\2\u0230\u0231"+
+ "\b+\1\2\u0231\u0232\5V,\2\u0232\u0240\3\2\2\2\u0233\u0234\f\6\2\2\u0234"+
+ "\u0235\7\u0089\2\2\u0235\u023f\5x=\2\u0236\u0237\f\5\2\2\u0237\u0238\7"+
+ "\u0089\2\2\u0238\u023f\7h\2\2\u0239\u023a\f\4\2\2\u023a\u023b\7\u008a"+
+ "\2\2\u023b\u023c\5\64\33\2\u023c\u023d\7\u008b\2\2\u023d\u023f\3\2\2\2"+
+ "\u023e\u0233\3\2\2\2\u023e\u0236\3\2\2\2\u023e\u0239\3\2\2\2\u023f\u0242"+
+ "\3\2\2\2\u0240\u023e\3\2\2\2\u0240\u0241\3\2\2\2\u0241U\3\2\2\2\u0242"+
+ "\u0240\3\2\2\2\u0243\u0255\7\16\2\2\u0244\u0245\7\17\2\2\u0245\u0246\7"+
+ "|\2\2\u0246\u0247\7h\2\2\u0247\u0255\7}\2\2\u0248\u0255\5^\60\2\u0249"+
+ "\u0255\5Z.\2\u024a\u024b\7|\2\2\u024b\u024c\5\64\33\2\u024c\u024d\7}\2"+
+ "\2\u024d\u0255\3\2\2\2\u024e\u024f\7`\2\2\u024f\u0250\5X-\2\u0250\u0251"+
+ "\7|\2\2\u0251\u0252\5\64\33\2\u0252\u0253\7}\2\2\u0253\u0255\3\2\2\2\u0254"+
+ "\u0243\3\2\2\2\u0254\u0244\3\2\2\2\u0254\u0248\3\2\2\2\u0254\u0249\3\2"+
+ "\2\2\u0254\u024a\3\2\2\2\u0254\u024e\3\2\2\2\u0255W\3\2\2\2\u0256\u0257"+
+ "\7a\2\2\u0257Y\3\2\2\2\u0258\u025b\5\\/\2\u0259\u025b\5`\61\2\u025a\u0258"+
+ "\3\2\2\2\u025a\u0259\3\2\2\2\u025b[\3\2\2\2\u025c\u0262\7e\2\2\u025d\u0262"+
+ "\7f\2\2\u025e\u0262\7g\2\2\u025f\u0262\7\u008e\2\2\u0260\u0262\7\u008d"+
+ "\2\2\u0261\u025c\3\2\2\2\u0261\u025d\3\2\2\2\u0261\u025e\3\2\2\2\u0261"+
+ "\u025f\3\2\2\2\u0261\u0260\3\2\2\2\u0262]\3\2\2\2\u0263\u0268\5t;\2\u0264"+
+ "\u0268\7h\2\2\u0265\u0266\7]\2\2\u0266\u0268\7h\2\2\u0267\u0263\3\2\2"+
+ "\2\u0267\u0264\3\2\2\2\u0267\u0265\3\2\2\2\u0268_\3\2\2\2\u0269\u026f"+
+ "\5f\64\2\u026a\u026f\5h\65\2\u026b\u026f\5n8\2\u026c\u026f\5j\66\2\u026d"+
+ "\u026f\5p9\2\u026e\u0269\3\2\2\2\u026e\u026a\3\2\2\2\u026e\u026b\3\2\2"+
+ "\2\u026e\u026c\3\2\2\2\u026e\u026d\3\2\2\2\u026fa\3\2\2\2\u0270\u0271"+
+ "\5\64\33\2\u0271\u0272\7\u0089\2\2\u0272\u0273\7\u0089\2\2\u0273\u0274"+
+ "\5\64\33\2\u0274c\3\2\2\2\u0275\u0276\7h\2\2\u0276\u0277\7\35\2\2\u0277"+
+ "\u0278\5\64\33\2\u0278\u0279\7\u0085\2\2\u0279\u027a\5\64\33\2\u027a\u0282"+
+ "\3\2\2\2\u027b\u027c\5\64\33\2\u027c\u027d\7\u0085\2\2\u027d\u027e\7h"+
+ "\2\2\u027e\u027f\7\35\2\2\u027f\u0280\5\64\33\2\u0280\u0282\3\2\2\2\u0281"+
+ "\u0275\3\2\2\2\u0281\u027b\3\2\2\2\u0282e\3\2\2\2\u0283\u0284\7\u008a"+
+ "\2\2\u0284\u0285\5d\63\2\u0285\u0286\7\u008b\2\2\u0286\u0298\3\2\2\2\u0287"+
+ "\u0290\7\u008a\2\2\u0288\u028d\5\64\33\2\u0289\u028a\7\u0088\2\2\u028a"+
+ "\u028c\5\64\33\2\u028b\u0289\3\2\2\2\u028c\u028f\3\2\2\2\u028d\u028b\3"+
+ "\2\2\2\u028d\u028e\3\2\2\2\u028e\u0291\3\2\2\2\u028f\u028d\3\2\2\2\u0290"+
+ "\u0288\3\2\2\2\u0290\u0291\3\2\2\2\u0291\u0292\3\2\2\2\u0292\u0298\7\u008b"+
+ "\2\2\u0293\u0294\7\u008a\2\2\u0294\u0295\5b\62\2\u0295\u0296\7\u008b\2"+
+ "\2\u0296\u0298\3\2\2\2\u0297\u0283\3\2\2\2\u0297\u0287\3\2\2\2\u0297\u0293"+
+ "\3\2\2\2\u0298g\3\2\2\2\u0299\u02af\7+\2\2\u029a\u029b\7p\2\2\u029b\u029c"+
+ "\5d\63\2\u029c\u029d\7q\2\2\u029d\u02af\3\2\2\2\u029e\u02a7\7p\2\2\u029f"+
+ "\u02a4\5\64\33\2\u02a0\u02a1\7\u0088\2\2\u02a1\u02a3\5\64\33\2\u02a2\u02a0"+
+ "\3\2\2\2\u02a3\u02a6\3\2\2\2\u02a4\u02a2\3\2\2\2\u02a4\u02a5\3\2\2\2\u02a5"+
+ "\u02a8\3\2\2\2\u02a6\u02a4\3\2\2\2\u02a7\u029f\3\2\2\2\u02a7\u02a8\3\2"+
+ "\2\2\u02a8\u02a9\3\2\2\2\u02a9\u02af\7q\2\2\u02aa\u02ab\7p\2\2\u02ab\u02ac"+
+ "\5b\62\2\u02ac\u02ad\7q\2\2\u02ad\u02af\3\2\2\2\u02ae\u0299\3\2\2\2\u02ae"+
+ "\u029a\3\2\2\2\u02ae\u029e\3\2\2\2\u02ae\u02aa\3\2\2\2\u02afi\3\2\2\2"+
+ "\u02b0\u02b2\7\u0086\2\2\u02b1\u02b3\5l\67\2\u02b2\u02b1\3\2\2\2\u02b3"+
+ "\u02b4\3\2\2\2\u02b4\u02b2\3\2\2\2\u02b4\u02b5\3\2\2\2\u02b5\u02b6\3\2"+
+ "\2\2\u02b6\u02b7\7\u0087\2\2\u02b7\u02bf\3\2\2\2\u02b8\u02bd\7,\2\2\u02b9"+
+ "\u02ba\7\u0086\2\2\u02ba\u02bb\7^\2\2\u02bb\u02bd\7\u0087\2\2\u02bc\u02b8"+
+ "\3\2\2\2\u02bc\u02b9\3\2\2\2\u02bd\u02bf\3\2\2\2\u02be\u02b0\3\2\2\2\u02be"+
+ "\u02bc\3\2\2\2\u02bfk\3\2\2\2\u02c0\u02c1\7h\2\2\u02c1\u02c2\7^\2\2\u02c2"+
+ "\u02c3\5\64\33\2\u02c3m\3\2\2\2\u02c4\u02da\7*\2\2\u02c5\u02c6\7\u0086"+
+ "\2\2\u02c6\u02c7\5d\63\2\u02c7\u02c8\7\u0087\2\2\u02c8\u02da\3\2\2\2\u02c9"+
+ "\u02d2\7\u0086\2\2\u02ca\u02cf\5\64\33\2\u02cb\u02cc\7\u0088\2\2\u02cc"+
+ "\u02ce\5\64\33\2\u02cd\u02cb\3\2\2\2\u02ce\u02d1\3\2\2\2\u02cf\u02cd\3"+
+ "\2\2\2\u02cf\u02d0\3\2\2\2\u02d0\u02d3\3\2\2\2\u02d1\u02cf\3\2\2\2\u02d2"+
+ "\u02ca\3\2\2\2\u02d2\u02d3\3\2\2\2\u02d3\u02d4\3\2\2\2\u02d4\u02da\7\u0087"+
+ "\2\2\u02d5\u02d6\7\u0086\2\2\u02d6\u02d7\5b\62\2\u02d7\u02d8\7\u0087\2"+
+ "\2\u02d8\u02da\3\2\2\2\u02d9\u02c4\3\2\2\2\u02d9\u02c5\3\2\2\2\u02d9\u02c9"+
+ "\3\2\2\2\u02d9\u02d5\3\2\2\2\u02dao\3\2\2\2\u02db\u02e0\7)\2\2\u02dc\u02dd"+
+ "\7\u0086\2\2\u02dd\u02de\7\25\2\2\u02de\u02e0\7\u0087\2\2\u02df\u02db"+
+ "\3\2\2\2\u02df\u02dc\3\2\2\2\u02e0\u02ea\3\2\2\2\u02e1\u02e3\7\u0086\2"+
+ "\2\u02e2\u02e4\5r:\2\u02e3\u02e2\3\2\2\2\u02e4\u02e5\3\2\2\2\u02e5\u02e3"+
+ "\3\2\2\2\u02e5\u02e6\3\2\2\2\u02e6\u02e7\3\2\2\2\u02e7\u02e8\7\u0087\2"+
+ "\2\u02e8\u02ea\3\2\2\2\u02e9\u02df\3\2\2\2\u02e9\u02e1\3\2\2\2\u02eaq"+
+ "\3\2\2\2\u02eb\u02ec\5\64\33\2\u02ec\u02ed\7\25\2\2\u02ed\u02ee\5\64\33"+
+ "\2\u02ees\3\2\2\2\u02ef\u02fe\5v<\2\u02f0\u02f1\7h\2\2\u02f1\u02fa\7|"+
+ "\2\2\u02f2\u02f7\5\64\33\2\u02f3\u02f4\7\u0088\2\2\u02f4\u02f6\5\64\33"+
+ "\2\u02f5\u02f3\3\2\2\2\u02f6\u02f9\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f8"+
+ "\3\2\2\2\u02f8\u02fb\3\2\2\2\u02f9\u02f7\3\2\2\2\u02fa\u02f2\3\2\2\2\u02fa"+
+ "\u02fb\3\2\2\2\u02fb\u02fc\3\2\2\2\u02fc\u02fe\7}\2\2\u02fd\u02ef\3\2"+
+ "\2\2\u02fd\u02f0\3\2\2\2\u02feu\3\2\2\2\u02ff\u0300\5|?\2\u0300\u0309"+
+ "\7|\2\2\u0301\u0306\5\64\33\2\u0302\u0303\7\u0088\2\2\u0303\u0305\5\64"+
+ "\33\2\u0304\u0302\3\2\2\2\u0305\u0308\3\2\2\2\u0306\u0304\3\2\2\2\u0306"+
+ "\u0307\3\2\2\2\u0307\u030a\3\2\2\2\u0308\u0306\3\2\2\2\u0309\u0301\3\2"+
+ "\2\2\u0309\u030a\3\2\2\2\u030a\u030b\3\2\2\2\u030b\u030c\7}\2\2\u030c"+
+ "w\3\2\2\2\u030d\u030e\5~@\2\u030e\u0317\7|\2\2\u030f\u0314\5\64\33\2\u0310"+
+ "\u0311\7\u0088\2\2\u0311\u0313\5\64\33\2\u0312\u0310\3\2\2\2\u0313\u0316"+
+ "\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315\3\2\2\2\u0315\u0318\3\2\2\2\u0316"+
+ "\u0314\3\2\2\2\u0317\u030f\3\2\2\2\u0317\u0318\3\2\2\2\u0318\u0319\3\2"+
+ "\2\2\u0319\u031a\7}\2\2\u031ay\3\2\2\2\u031b\u0329\7H\2\2\u031c\u0329"+
+ "\7I\2\2\u031d\u0329\7E\2\2\u031e\u031f\7=\2\2\u031f\u0320\7p\2\2\u0320"+
+ "\u0321\5z>\2\u0321\u0322\7q\2\2\u0322\u0329\3\2\2\2\u0323\u0324\7>\2\2"+
+ "\u0324\u0325\7p\2\2\u0325\u0326\5z>\2\u0326\u0327\7q\2\2\u0327\u0329\3"+
+ "\2\2\2\u0328\u031b\3\2\2\2\u0328\u031c\3\2\2\2\u0328\u031d\3\2\2\2\u0328"+
+ "\u031e\3\2\2\2\u0328\u0323\3\2\2\2\u0329{\3\2\2\2\u032a\u032b\t\r\2\2"+
+ "\u032b}\3\2\2\2\u032c\u032d\t\16\2\2\u032d\177\3\2\2\2\u032e\u032f\7h"+
+ "\2\2\u032f\u0330\7\25\2\2\u0330\u0332\5\64\33\2\u0331\u032e\3\2\2\2\u0332"+
+ "\u0335\3\2\2\2\u0333\u0331\3\2\2\2\u0333\u0334\3\2\2\2\u0334\u0336\3\2"+
+ "\2\2\u0335\u0333\3\2\2\2\u0336\u0337\7\2\2\3\u0337\u0081\3\2\2\2S\u0083"+
+ "\u008a\u008f\u00b8\u00c6\u00cc\u00d4\u00e9\u00f3\u00fa\u0103\u0108\u010d"+
+ "\u0115\u0119\u011b\u0121\u0126\u0136\u014f\u0152\u015b\u015e\u0163\u0167"+
+ "\u016d\u0171\u0180\u0183\u0189\u018c\u01a2\u01b2\u01b9\u01c0\u01c8\u01cf"+
+ "\u01d7\u01df\u01e7\u01ef\u01f7\u01ff\u0207\u020f\u0217\u021f\u0227\u022d"+
+ "\u023e\u0240\u0254\u025a\u0261\u0267\u026e\u0281\u028d\u0290\u0297\u02a4"+
+ "\u02a7\u02ae\u02b4\u02bc\u02be\u02cf\u02d2\u02d9\u02df\u02e5\u02e9\u02f7"+
+ "\u02fa\u02fd\u0306\u0309\u0314\u0317\u0328\u0333";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/grammar/alkVisitor.java b/src/main/java/grammar/alkVisitor.java
index 201eff6d..fbb3d531 100644
--- a/src/main/java/grammar/alkVisitor.java
+++ b/src/main/java/grammar/alkVisitor.java
@@ -187,6 +187,13 @@ public interface alkVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitHavoc(alkParser.HavocContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code Decl}
+ * labeled alternative in {@link alkParser#declarator}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitDecl(alkParser.DeclContext ctx);
/**
* Visit a parse tree produced by the {@code SymbolicDecls}
* labeled alternative in {@link alkParser#symbolicStmt}.
@@ -257,6 +264,27 @@ public interface alkVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitModifiesAnno(alkParser.ModifiesAnnoContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code IdModif}
+ * labeled alternative in {@link alkParser#modif_factor}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitIdModif(alkParser.IdModifContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code SizeModif}
+ * labeled alternative in {@link alkParser#modif_factor}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSizeModif(alkParser.SizeModifContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code LoopAssertAnno}
+ * labeled alternative in {@link alkParser#loop_assert}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitLoopAssertAnno(alkParser.LoopAssertAnnoContext ctx);
/**
* Visit a parse tree produced by the {@code DoWhileStructure}
* labeled alternative in {@link alkParser#do_while_struct}.
@@ -299,6 +327,13 @@ public interface alkVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitReqExpression(alkParser.ReqExpressionContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code TypeAssertReq}
+ * labeled alternative in {@link alkParser#req_expression}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitTypeAssertReq(alkParser.TypeAssertReqContext ctx);
/**
* Visit a parse tree produced by the {@code EnsExpression}
* labeled alternative in {@link alkParser#ens_expression}.
@@ -306,6 +341,13 @@ public interface alkVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitEnsExpression(alkParser.EnsExpressionContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code TypeAssertEns}
+ * labeled alternative in {@link alkParser#ens_expression}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitTypeAssertEns(alkParser.TypeAssertEnsContext ctx);
/**
* Visit a parse tree produced by the {@code ParamDefinition}
* labeled alternative in {@link alkParser#param}.
@@ -509,6 +551,13 @@ public interface alkVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitResultFactor(alkParser.ResultFactorContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code OldFactor}
+ * labeled alternative in {@link alkParser#base_factor}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitOldFactor(alkParser.OldFactorContext ctx);
/**
* Visit a parse tree produced by the {@code RefNameFactor}
* labeled alternative in {@link alkParser#base_factor}.
diff --git a/src/main/java/grammar/parts/expression.g4 b/src/main/java/grammar/parts/expression.g4
index d74472b9..90d7bacb 100644
--- a/src/main/java/grammar/parts/expression.g4
+++ b/src/main/java/grammar/parts/expression.g4
@@ -101,6 +101,7 @@ factor
base_factor
:
RESULT #ResultFactor
+ | OLD LPAR ID RPAR #OldFactor
| ref_name #RefNameFactor
| value #ValueFactor
| LPAR expression RPAR #ParanthesesFactor
diff --git a/src/main/java/grammar/parts/statement.g4 b/src/main/java/grammar/parts/statement.g4
index bb24fd2f..3dd86b49 100644
--- a/src/main/java/grammar/parts/statement.g4
+++ b/src/main/java/grammar/parts/statement.g4
@@ -10,6 +10,7 @@ statement_sequence
statement
:
function_decl #ToFunctionDecl
+ | specification #Specification
| RETURN (expression)? SEMICOLON #ReturnStmt
| choose SEMICOLON #ToChooseStmt
@@ -49,7 +50,11 @@ assertStmt
havocStmt
:
- HAVOC ID (COMMA ID)* #Havoc
+ HAVOC declarator (COMMA declarator)* #Havoc
+;
+
+declarator:
+ ID (DPOINT dataType)? #Decl
;
symbolicStmt
@@ -85,13 +90,24 @@ choose:
while_struct
:
- WHILE LPAR expression RPAR while_anno* statement #WhileStructure
+ WHILE LPAR expression RPAR while_anno* statement loop_assert? #WhileStructure
;
while_anno
:
- INVARIANT expression SEMICOLON #InvariantAnno
- | WHILEMODIFIES ID (COMMA ID)* SEMICOLON #ModifiesAnno
+ INVARIANT expression SEMICOLON? #InvariantAnno
+ | WHILEMODIFIES modif_factor (COMMA modif_factor)* SEMICOLON? #ModifiesAnno
+;
+
+modif_factor
+:
+ ID #IdModif
+ | ID POINT SIZE #SizeModif
+;
+
+loop_assert
+:
+ LOOPASSESRT expression SEMICOLON? #LoopAssertAnno
;
do_while_struct
@@ -116,26 +132,25 @@ foreach_struct
function_decl
:
- ID LPAR (param (COMMA param)*)? RPAR (DPOINT dataType)? ((MODIFIES | USES) ID (COMMA ID)*)?
- (REQURIES req_expression)*
- (ENSURES ens_expression)*
+ ID LPAR (param (COMMA param)*)? RPAR ((MODIFIES | USES) ID (COMMA ID)*)?
+ (REQURIES req_expression SEMICOLON?)*
+ (ENSURES ens_expression SEMICOLON?)*
statement_block #FunctionDecl
;
req_expression
:
expression #ReqExpression
- //| type_assertion
- // (ID : data_type) (&& (ID : data_type))*
+ | ID DPOINT dataType (AND (ID DPOINT dataType))* #TypeAssertReq
;
ens_expression
:
expression #EnsExpression
- //| type_assertion
+ | RESULT DPOINT dataType #TypeAssertEns
;
param
:
- (OUT)? ID (DPOINT dataType)? #ParamDefinition
+ (OUT)? ID #ParamDefinition
;
\ No newline at end of file
diff --git a/src/main/java/grammar/parts/terminal.g4 b/src/main/java/grammar/parts/terminal.g4
index 22d84d81..aa3cedca 100644
--- a/src/main/java/grammar/parts/terminal.g4
+++ b/src/main/java/grammar/parts/terminal.g4
@@ -21,8 +21,10 @@ SYMBOLIC: '@symbolic';
INVARIANT : '@invariant';
REQURIES : '@requires';
ENSURES : '@ensures';
+LOOPASSESRT : '@loopassert';
WHILEMODIFIES : '@modifies';
RESULT : '\\result';
+OLD : '\\old';
IMPLIES: '==>';
EQUIV: '<==>';
diff --git a/src/main/java/parser/ParseTreeExprVisitor.java b/src/main/java/parser/ParseTreeExprVisitor.java
index da497c19..71d172a3 100644
--- a/src/main/java/parser/ParseTreeExprVisitor.java
+++ b/src/main/java/parser/ParseTreeExprVisitor.java
@@ -416,6 +416,15 @@ public AST visitResultFactor(alkParser.ResultFactorContext ctx)
return new ResultAST(ctx);
}
+ @Override
+ public AST visitOldFactor(alkParser.OldFactorContext ctx)
+ {
+ AST tree = new OldAST(ctx);
+ IdASTAttr attr = new IdASTAttr(ctx.ID().getText());
+ tree.addAttribute(IdASTAttr.class, attr);
+ return tree;
+ }
+
@Override
public AST visitToBaseFactor(alkParser.ToBaseFactorContext ctx)
{
diff --git a/src/main/java/parser/ParseTreeVisitor.java b/src/main/java/parser/ParseTreeVisitor.java
index 83d5160e..08bb95c1 100644
--- a/src/main/java/parser/ParseTreeVisitor.java
+++ b/src/main/java/parser/ParseTreeVisitor.java
@@ -97,13 +97,26 @@ public AST visitAssert(alkParser.AssertContext ctx)
public AST visitHavoc(alkParser.HavocContext ctx)
{
AST havocAST = new HavocAST(ctx);
- for (TerminalNode nod : ctx.ID())
+ for (int i = 0; i < ctx.declarator().size(); i++)
{
- havocAST.addChild(new RefIDAST(nod.getText()));
+ havocAST.addChild(ctx.declarator(i).accept(this));
}
return havocAST;
}
+ @Override
+ public AST visitDecl(alkParser.DeclContext ctx)
+ {
+ AST ast = new DeclAST(ctx);
+ IdASTAttr attr = new IdASTAttr(ctx.ID().getText());
+ ast.addAttribute(IdASTAttr.class, attr);
+ if (ctx.dataType() != null)
+ {
+ ast.addChild(ctx.dataType().accept(exprVisitor));
+ }
+ return ast;
+ }
+
@Override
public AST visitSymbolicDeclStmt(alkParser.SymbolicDeclStmtContext ctx)
{
@@ -297,10 +310,6 @@ public AST visitFunctionDecl(alkParser.FunctionDeclContext ctx)
ast = new FunctionDeclAST(ctx);
String id = ctx.ID(0).getText();
ast.addAttribute(IdASTAttr.class, new IdASTAttr(id));
- if (ctx.dataType() != null)
- {
- ast.setDataType(exprVisitor.visit(ctx.dataType()));
- }
for (int i = 0; i < ctx.param().size(); i++)
{
@@ -317,14 +326,12 @@ public AST visitFunctionDecl(alkParser.FunctionDeclContext ctx)
for (int i = 0; i < ctx.req_expression().size(); i++)
{
- AST expr = exprVisitor.visit(ctx.req_expression(i));
- ast.addRequires(expr);
+ this.visit(ctx.req_expression(i));
}
for (int i = 0; i < ctx.ens_expression().size(); i++)
{
- AST expr = exprVisitor.visit(ctx.ens_expression(i));
- ast.addEnsures(expr);
+ this.visit(ctx.ens_expression(i));
}
ast.addChild(ParseTreeVisitor.this.visit(ctx.statement_block()));
@@ -336,10 +343,52 @@ public AST visitParamDefinition(alkParser.ParamDefinitionContext ctx)
{
boolean isOut = ctx.OUT() != null;
String id = ctx.ID().getText();
- paramAttr.addParameter(new Parameter(id, isOut ? ParamType.OUTPUT : ParamType.INPUT,
- ctx.dataType() != null ? (DataTypeAST) exprVisitor.visit(ctx.dataType()) : null));
+ paramAttr.addParameter(new Parameter(id, isOut ? ParamType.OUTPUT : ParamType.INPUT, null));
return ast;
}
+
+ @Override
+ public AST visitReqExpression(alkParser.ReqExpressionContext ctx)
+ {
+ AST req = exprVisitor.visit(ctx.expression());
+ ast.addRequires(req);
+ return null;
+ }
+
+ @Override
+ public AST visitTypeAssertReq(alkParser.TypeAssertReqContext ctx)
+ {
+ for (int i = 0; i < ctx.ID().size(); i++)
+ {
+ String id = ctx.ID(i).getText();
+ DataTypeAST dataType = (DataTypeAST) exprVisitor.visit(ctx.dataType(i));
+ for (int j = 0; j < paramAttr.getParamCount(); j++)
+ {
+ Parameter param = paramAttr.getParameter(j);
+ if (param.getName().equals(id))
+ {
+ param.setDataType(dataType);
+ }
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public AST visitEnsExpression(alkParser.EnsExpressionContext ctx)
+ {
+ AST ens = exprVisitor.visit(ctx.expression());
+ ast.addEnsures(ens);
+ return null;
+ }
+
+ @Override
+ public AST visitTypeAssertEns(alkParser.TypeAssertEnsContext ctx)
+ {
+ DataTypeAST dataTypeAST = (DataTypeAST) exprVisitor.visit(ctx.dataType());
+ ast.setDataType(dataTypeAST);
+ return null;
+ }
}
class WhileVisitor
@@ -357,7 +406,7 @@ class WhileVisitor
@Override
public AST visitWhileStructure(alkParser.WhileStructureContext ctx)
{
- whileAst = new WhileAST(ctx);
+ whileAst = new WhileAST(ctx, ctx.loop_assert() != null);
whileAst.addChild(exprVisitor.visit(ctx.expression()));
for (int i = 0; i < ctx.while_anno().size(); i++)
@@ -371,9 +420,23 @@ public AST visitWhileStructure(alkParser.WhileStructureContext ctx)
}
whileAst.addChild(stmtVisitor.visit(ctx.statement()));
+ if (ctx.loop_assert() != null)
+ {
+ visit(ctx.loop_assert());
+ }
+
return whileAst;
}
+ @Override
+ public AST visitLoopAssertAnno(alkParser.LoopAssertAnnoContext ctx)
+ {
+ AST ast = new LoopAssertAST(ctx);
+ ast.addChild(exprVisitor.visit(ctx.expression()));
+ whileAst.addChild(ast);
+ return null;
+ }
+
@Override
public AST visitInvariantAnno(alkParser.InvariantAnnoContext ctx)
{
@@ -384,12 +447,29 @@ public AST visitInvariantAnno(alkParser.InvariantAnnoContext ctx)
@Override
public AST visitModifiesAnno(alkParser.ModifiesAnnoContext ctx)
{
- for (int i = 0; i < ctx.ID().size(); i++)
+ for (int i = 0; i < ctx.modif_factor().size(); i++)
{
- String mid = ctx.ID(i).getText();
- paramAttr.addParameter(new Parameter(mid, ParamType.GLOBAL, null));
+ visit(ctx.modif_factor(i));
}
return null;
}
+
+ @Override
+ public AST visitIdModif(alkParser.IdModifContext ctx)
+ {
+ String mid = ctx.ID().getText();
+ paramAttr.addParameter(new Parameter(mid, ParamType.GLOBAL, null));
+ return null;
+ }
+
+ @Override
+ public AST visitSizeModif(alkParser.SizeModifContext ctx)
+ {
+ String mid = ctx.ID().getText();
+ Parameter param = new Parameter(mid, ParamType.GLOBAL, null);
+ param.setSizeFlag(true);
+ paramAttr.addParameter(param);
+ return null;
+ }
}
}
diff --git a/src/main/java/smt/SMTVisitor.java b/src/main/java/smt/SMTVisitor.java
index e4459d20..2f75ea92 100644
--- a/src/main/java/smt/SMTVisitor.java
+++ b/src/main/java/smt/SMTVisitor.java
@@ -188,14 +188,27 @@ public Expr> visit(FunctionCallAST ctx)
public Expr> visit(InExprAST ctx)
{
Expr lft = ctx.getChild(0).accept(this);
- ArrayExpr, ?> rgh = (ArrayExpr, ?>) ctx.getChild(1).accept(this);
-
- Expr[] bound = new Expr[] { alkCtx.ctx.mkConst(alkCtx.getFresh(), alkCtx.ctx.getIntSort()) };
- ArraySMTSupport support = alkCtx.getArraySupport(rgh.getSort());
- Expr body = alkCtx.ctx.mkLe(support.getLeft().apply(rgh), bound[0]);
- Expr body2 = alkCtx.ctx.mkLt(bound[0], support.getRight().apply(rgh));
- Expr body3 = alkCtx.ctx.mkEq(alkCtx.ctx.mkSelect(rgh, bound[0]), lft);
- return alkCtx.ctx.mkExists(bound, alkCtx.ctx.mkAnd(body, body2, body3), 1, null, null, null, null);
+ DataTypeAST dataType = ((ExpressionAST) ctx.getChild(1)).getDataType(alkCtx);
+ if (dataType instanceof ArrayDataTypeAST)
+ {
+ ArrayExpr, ?> rgh = (ArrayExpr, ?>) ctx.getChild(1).accept(this);
+
+ Expr[] bound = new Expr[] { alkCtx.ctx.mkConst(alkCtx.getFresh(), alkCtx.ctx.getIntSort()) };
+ ArraySMTSupport support = alkCtx.getArraySupport(rgh.getSort());
+ Expr body = alkCtx.ctx.mkLe(support.getLeft().apply(rgh), bound[0]);
+ Expr body2 = alkCtx.ctx.mkLt(bound[0], support.getRight().apply(rgh));
+ Expr body3 = alkCtx.ctx.mkEq(alkCtx.ctx.mkSelect(rgh, bound[0]), lft);
+ return alkCtx.ctx.mkExists(bound, alkCtx.ctx.mkAnd(body, body2, body3), 1, null, null, null, null);
+ }
+ else if (dataType instanceof SetDataTypeAST)
+ {
+ ArrayExpr, ?> rgh = (ArrayExpr, ?>) ctx.getChild(1).accept(this);
+ return alkCtx.ctx.mkSelect(rgh, lft);
+ }
+ else
+ {
+ throw new AlkException("Invalid data type for in operator!");
+ }
}
@Override
@@ -478,4 +491,10 @@ public Expr visit(VirtualAST ctx)
{
throw new SMTUnimplementedException(VirtualAST.class);
}
+
+ @Override
+ public Expr visit(OldAST ctx)
+ {
+ throw new SMTUnimplementedException(OldAST.class);
+ }
}
diff --git a/src/main/java/symbolic/ASTCloner.java b/src/main/java/symbolic/ASTCloner.java
index cc15b367..59776060 100644
--- a/src/main/java/symbolic/ASTCloner.java
+++ b/src/main/java/symbolic/ASTCloner.java
@@ -341,4 +341,10 @@ public AST visit(VirtualAST tree)
{
return tree;
}
+
+ @Override
+ public AST visit(OldAST tree)
+ {
+ return process(new OldAST(tree.getCtx()), tree);
+ }
}
diff --git a/src/main/java/util/functions/Parameter.java b/src/main/java/util/functions/Parameter.java
index 6e0d11e3..4e667279 100644
--- a/src/main/java/util/functions/Parameter.java
+++ b/src/main/java/util/functions/Parameter.java
@@ -1,5 +1,6 @@
package util.functions;
+import ast.AST;
import ast.enums.ParamType;
import ast.type.DataTypeAST;
@@ -8,6 +9,7 @@ public class Parameter
String id;
ParamType type;
DataTypeAST dataType;
+ boolean size;
public Parameter(String name, ParamType type, DataTypeAST dataType)
{
@@ -27,4 +29,19 @@ public String getName() {
public DataTypeAST getDataType() {
return dataType;
}
+
+ public void setDataType(DataTypeAST dataType)
+ {
+ this.dataType = dataType;
+ }
+
+ public void setSizeFlag(boolean size)
+ {
+ this.size = size;
+ }
+
+ public boolean hasSizeFlag()
+ {
+ return this.size;
+ }
}
diff --git a/src/main/java/visitor/SmallStepExpressionVisitor.java b/src/main/java/visitor/SmallStepExpressionVisitor.java
index fb27a959..ff64bf81 100644
--- a/src/main/java/visitor/SmallStepExpressionVisitor.java
+++ b/src/main/java/visitor/SmallStepExpressionVisitor.java
@@ -323,6 +323,12 @@ public T visit(MapAST ctx)
throw new InternalException("To be implemented!");
}
+ @Override
+ public T visit(OldAST ctx)
+ {
+ throw new InternalException("To be implemented!");
+ }
+
static class DataStructureVisitor
{
SmallStepExpressionVisitor exprVisitor;
diff --git a/src/main/java/visitor/ifaces/ExpressionVisitorIface.java b/src/main/java/visitor/ifaces/ExpressionVisitorIface.java
index fb46a4a9..db0ff6d3 100644
--- a/src/main/java/visitor/ifaces/ExpressionVisitorIface.java
+++ b/src/main/java/visitor/ifaces/ExpressionVisitorIface.java
@@ -35,6 +35,7 @@ public interface ExpressionVisitorIface
RefIDVisitorIface,
RelationalVisitorIface,
ResultVisitorIface,
+ OldVisitorIface,
SetVisitorIface,
SetExprVisitorIface,
ShiftVisitorIface,
diff --git a/src/main/java/visitor/ifaces/expr/OldVisitorIface.java b/src/main/java/visitor/ifaces/expr/OldVisitorIface.java
new file mode 100644
index 00000000..27b9ef77
--- /dev/null
+++ b/src/main/java/visitor/ifaces/expr/OldVisitorIface.java
@@ -0,0 +1,11 @@
+package visitor.ifaces.expr;
+
+import ast.expr.OldAST;
+import visitor.ifaces.VisitorIface;
+
+public interface OldVisitorIface
+extends VisitorIface
+{
+ T visit(OldAST ctx);
+}
+
diff --git a/src/main/java/visitor/stateful/StatefulExpressionVisitor.java b/src/main/java/visitor/stateful/StatefulExpressionVisitor.java
index 1b568262..b6ebb35f 100644
--- a/src/main/java/visitor/stateful/StatefulExpressionVisitor.java
+++ b/src/main/java/visitor/stateful/StatefulExpressionVisitor.java
@@ -267,4 +267,10 @@ public S visit(MapAST tree)
{
return expressionInterpreter.interpretComposite(Primitive.MAP, tree, payload);
}
+
+ @Override
+ public S visit(OldAST tree)
+ {
+ return expressionInterpreter.interpretContextVar(ContextVar.OLD, tree, payload);
+ }
}