From 73d4665cc3316fc90eb345bd5f61c1ca02c4507e Mon Sep 17 00:00:00 2001 From: Emil Valeev Date: Sat, 21 Sep 2024 14:22:54 +0500 Subject: [PATCH 1/4] feat(*.neva:nodes): upd ALL nevalang files to use `---` nodes syntax --- docs/formatting.md | 30 +++ e2e/99_bottles_verbose/main/main.neva | 23 ++- e2e/99_bottles_with_chain/main/main.neva | 22 +-- e2e/add_nums_from_stdin_naive/main/main.neva | 16 +- .../main/main.neva | 18 +- .../main/main.neva | 16 +- .../main/main.neva | 18 +- .../main/main.neva | 18 +- e2e/add_nums_verbose/main/main.neva | 10 +- e2e/add_nums_with_bridge/main/main.neva | 8 +- e2e/bare_iter_over_list/main/main.neva | 3 +- e2e/comments/main/main.neva | 9 +- e2e/compare_ints/main/main.neva | 3 +- e2e/compare_ints_lt_equal/main/main.neva | 3 +- e2e/compare_strings/main/main.neva | 3 +- e2e/conn_with_only_port_addr/main/main.neva | 3 +- e2e/const_refs_verbose/main/main.neva | 3 +- e2e/echo_verbose/main/main.neva | 7 +- e2e/enums_verbose/main/main.neva | 6 +- e2e/for_loop_over_list_verbose/main/main.neva | 3 +- e2e/for_with_range_and_if/main/main.neva | 6 +- e2e/hello_world_verbose/main/main.neva | 12 +- .../main/main.neva | 8 +- .../main/main.neva | 3 +- .../main/main.neva | 3 +- .../main/main.neva | 3 +- .../main/main.neva | 3 +- e2e/incompat_comp_type_arg/main/main.neva | 3 +- .../main/main.neva | 12 +- e2e/interface_anonymous/main/main.neva | 8 +- e2e/interface_verbose/main/main.neva | 10 +- e2e/interface_with_imports/main/main.neva | 8 +- e2e/list_with_neg_nums/main/main.neva | 3 +- e2e/local_imports/foo/bar/bar.neva | 3 +- e2e/local_imports/foo/foo.neva | 3 +- e2e/local_imports/main/main.neva | 4 +- e2e/logic_gate_and/main/main.neva | 13 +- e2e/logic_gate_or/main/main.neva | 13 +- e2e/map_list_verbose/main/main.neva | 6 +- e2e/multiply_numbers/main/main.neva | 7 +- .../main/main.neva | 7 +- e2e/print_float/main/main.neva | 3 +- e2e/regex_submatch_verbose/main/main.neva | 4 +- .../foo/bar/main.neva | 3 +- e2e/simple_fan_out/main/main.neva | 4 +- e2e/slow_iteration_with_for/main/main.neva | 7 +- e2e/slow_iteration_with_map/main/main.neva | 10 +- e2e/struct_builder_verbose/main/main.neva | 5 +- e2e/struct_builder_with_sugar/main/main.neva | 5 +- .../main/main.neva | 7 +- e2e/struct_selector_verbose/main/main.neva | 10 +- .../main/main.neva | 3 +- e2e/struct_selector_with_sugar/main/main.neva | 3 +- .../main/main.neva | 8 +- examples/99_bottles/main.neva | 14 +- examples/add_numbers/main.neva | 7 +- examples/add_numbers_from_stdin/main.neva | 16 +- examples/advanced_error_handling/main.neva | 6 +- examples/compare_values/main.neva | 4 +- examples/const_refs/main.neva | 3 +- examples/echo/main.neva | 3 +- examples/enums/main.neva | 8 +- examples/file_read_all/main.neva | 3 +- examples/file_write_all/main.neva | 4 +- examples/fizzbuzz/main.neva | 25 ++- examples/for_loop_over_list/main.neva | 3 +- examples/get_args/main.neva | 3 +- examples/hello_world/main.neva | 3 +- examples/http_get/main.neva | 3 +- examples/image_png/main.neva | 19 +- examples/interfaces/main.neva | 8 +- examples/list_index/main.neva | 3 +- examples/list_len/main.neva | 3 +- examples/map_list/main.neva | 6 +- examples/match/main.neva | 7 +- examples/push_to_list/main.neva | 3 +- examples/regex_submatch/main.neva | 3 +- examples/select/main.neva | 20 +- examples/sort_list/main.neva | 3 +- examples/split_join_string/main.neva | 3 +- examples/stream_product/main.neva | 16 +- examples/stream_to_list/main.neva | 3 +- examples/stream_zip/main.neva | 13 +- examples/struct_builder/main.neva | 4 +- examples/struct_selector/main.neva | 3 +- examples/time_sleep/main.neva | 3 +- examples/wait_group/main.neva | 4 +- .../smoke_test/happypath/025_component.neva | 182 +++++++++--------- .../smoke_test/happypath/026_mixed.neva | 7 +- .../happypath/027_compiler_directives.neva | 7 +- std/builtin/streams.neva | 29 +-- std/sync/sync.neva | 6 +- 92 files changed, 498 insertions(+), 394 deletions(-) create mode 100644 docs/formatting.md diff --git a/docs/formatting.md b/docs/formatting.md new file mode 100644 index 00000000..f3fbb352 --- /dev/null +++ b/docs/formatting.md @@ -0,0 +1,30 @@ +# General + +Don't try to be as short as possible (and don't try to be as verbose as possible). Seek balance instead. Readability is king. Code that is understandable at a glance is good code. There are multiple ways to write the same thing, sometimes shorter, sometimes longer. You should choose the most appropriate form for each specific usecase. + +# Nodes + +write nodes in one line if + +- < 80 chars +- no aliases + +good + +```neva +flow Main(start) (stop) { + Foo, Bar, Baz, Bax + --- + :start -> foo -> bar -> baz -> bax -> :stop +} +``` + +bad + +```neva +flow Main(start) (stop) { + f Foo, Bar, Baz, Bax + --- + :start -> foo -> bar -> baz -> bax -> :stop +} +``` diff --git a/e2e/99_bottles_verbose/main/main.neva b/e2e/99_bottles_verbose/main/main.neva index 200524b8..418cee3f 100644 --- a/e2e/99_bottles_verbose/main/main.neva +++ b/e2e/99_bottles_verbose/main/main.neva @@ -1,8 +1,9 @@ // https://www.99-bottles-of-beer.net flow Main(start) (stop) { - nodes { Switch, next PrintNext2Lines } - + Switch + next PrintNext2Lines + --- :start -> (99 -> next:n) next:n -> switch:data @@ -13,12 +14,10 @@ flow Main(start) (stop) { } flow PrintNext2Lines(n int) (n int) { - nodes { - decr Decr - first PrintFirstLine - second PrintSecondLine - } - + decr Decr + first PrintFirstLine + second PrintSecondLine + --- :n -> first:n first:n -> decr:data decr:res -> second:n @@ -32,8 +31,8 @@ const firstLine2 string = '1 bottle of beer on the wall, 1 bottle of beer.' const firstLine3 string = 'No more bottles of beer on the wall, no more bottles of beer.' flow PrintFirstLine(n int) (n int) { - nodes { Switch, Println, Printf, Lock } - + Switch, Println, Printf, Lock + --- :n -> [switch:data, lock:data] 0 -> switch:case[0] 1 -> switch:case[1] @@ -56,8 +55,8 @@ const secondLine3 string = 'Take one down and pass it around, no more bottles of const secondLine4 string = 'Go to the store and buy some more, 99 bottles of beer on the wall.' flow PrintSecondLine(n int) (n int) { - nodes { Switch, Lock, Printf, Println } - + Switch, Lock, Printf, Println + --- :n -> [switch:data, lock:data] -1 -> switch:case[0] 0 -> switch:case[1] diff --git a/e2e/99_bottles_with_chain/main/main.neva b/e2e/99_bottles_with_chain/main/main.neva index 1738baba..fd5356f5 100644 --- a/e2e/99_bottles_with_chain/main/main.neva +++ b/e2e/99_bottles_with_chain/main/main.neva @@ -1,19 +1,19 @@ // https://www.99-bottles-of-beer.net flow Main(start) (stop) { - nodes { Switch, next PrintNext2Lines } - + Switch + next PrintNext2Lines + --- :start -> (99 -> next:n -> switch:data) -1 -> switch:case[0] -> :stop switch:else -> next:n } flow PrintNext2Lines(n int) (n int) { - nodes { - decr Decr - first PrintFirstLine - second PrintSecondLine - } + decr Decr + first PrintFirstLine + second PrintSecondLine + --- :n -> first:n -> decr:data decr:res -> second:n -> :n } @@ -25,8 +25,8 @@ const firstLine2 string = '1 bottle of beer on the wall, 1 bottle of beer.' const firstLine3 string = 'No more bottles of beer on the wall, no more bottles of beer.' flow PrintFirstLine(n int) (n int) { - nodes { Switch, Println, Printf, Lock } - + Switch, Println, Printf, Lock + --- :n -> [switch:data, lock:data] 0 -> switch:case[0] -> ($firstLine3 -> println:data) @@ -48,8 +48,8 @@ const secondLine3 string = 'Take one down and pass it around, no more bottles of const secondLine4 string = 'Go to the store and buy some more, 99 bottles of beer on the wall.' flow PrintSecondLine(n int) (n int) { - nodes { Switch, Lock, Printf, Println } - + Switch, Lock, Printf, Println + --- :n -> [switch:data, lock:data] -1 -> switch:case[0] -> ($secondLine4 -> println:data) diff --git a/e2e/add_nums_from_stdin_naive/main/main.neva b/e2e/add_nums_from_stdin_naive/main/main.neva index cf29a9da..a0815150 100644 --- a/e2e/add_nums_from_stdin_naive/main/main.neva +++ b/e2e/add_nums_from_stdin_naive/main/main.neva @@ -4,15 +4,13 @@ import { } flow Main(start any) (stop any) { - nodes { - scanner1 io.Scanln - scanner2 io.Scanln - parser1 strconv.ParseNum - parser2 strconv.ParseNum - adder ReducePort { Add } - println Println - } - + scanner1 io.Scanln + scanner2 io.Scanln + parser1 strconv.ParseNum + parser2 strconv.ParseNum + adder ReducePort { Add } + println Println + --- :start -> scanner1:sig scanner1:data-> parser1:data parser1:res -> [adder:port[0], scanner2:sig] diff --git a/e2e/add_nums_from_stdin_with_default_any/main/main.neva b/e2e/add_nums_from_stdin_with_default_any/main/main.neva index a0490819..00303126 100644 --- a/e2e/add_nums_from_stdin_with_default_any/main/main.neva +++ b/e2e/add_nums_from_stdin_with_default_any/main/main.neva @@ -4,20 +4,18 @@ import { } flow Main(start) (stop) { - nodes { Aux, Println } - + Aux, Println + --- :start -> aux:sig [aux:res, aux:err] -> println:data println:sig -> :stop } flow Aux(sig) (res int, err error) { - nodes { - reader1 IntReader - reader2 IntReader - adder ReducePort { Add } - } - + reader1 IntReader + reader2 IntReader + adder ReducePort { Add } + --- :sig -> reader1:sig reader1:num -> [adder:port[0], reader2:sig] [reader1:err, reader2:err] -> :err @@ -26,8 +24,8 @@ flow Aux(sig) (res int, err error) { } flow IntReader(sig any) (num int, err error) { - nodes { io.Scanln, strconv.ParseNum } - + io.Scanln, strconv.ParseNum + --- :sig -> scanln:sig scanln:data -> parseNum:data parseNum:res -> :num diff --git a/e2e/add_nums_from_stdin_with_err_handling/main/main.neva b/e2e/add_nums_from_stdin_with_err_handling/main/main.neva index fa9c584d..5cf13724 100644 --- a/e2e/add_nums_from_stdin_with_err_handling/main/main.neva +++ b/e2e/add_nums_from_stdin_with_err_handling/main/main.neva @@ -4,15 +4,13 @@ import { } flow Main(start any) (stop any) { - nodes { - scanner1 io.Scanln - scanner2 io.Scanln - parser1 strconv.ParseNum - parser2 strconv.ParseNum - adder ReducePort { Add } - println Println - } - + scanner1 io.Scanln + scanner2 io.Scanln + parser1 strconv.ParseNum + parser2 strconv.ParseNum + adder ReducePort { Add } + println Println + --- :start -> scanner1:sig scanner1:data -> parser1:data parser1:err -> println:data diff --git a/e2e/add_nums_from_stdin_with_multuple_senders/main/main.neva b/e2e/add_nums_from_stdin_with_multuple_senders/main/main.neva index c4566f09..a5048b01 100644 --- a/e2e/add_nums_from_stdin_with_multuple_senders/main/main.neva +++ b/e2e/add_nums_from_stdin_with_multuple_senders/main/main.neva @@ -4,20 +4,18 @@ import { } flow Main(start) (stop) { - nodes { Aux, Println } - + Aux, Println + --- :start -> aux:sig [aux:res, aux:err] -> println:data println:sig -> :stop } flow Aux(sig) (res int, err error) { - nodes { - reader1 IntReader - reader2 IntReader - adder ReducePort { Add } - } - + reader1 IntReader + reader2 IntReader + adder ReducePort { Add } + --- :sig -> reader1:sig reader1:num -> [adder:port[0], reader2:sig] [reader1:err, reader2:err] -> :err @@ -26,8 +24,8 @@ flow Aux(sig) (res int, err error) { } flow IntReader(sig any) (num int, err error) { - nodes { io.Scanln, strconv.ParseNum } - + io.Scanln, strconv.ParseNum + --- :sig -> scanln:sig scanln:data -> parseNum:data parseNum:res -> :num diff --git a/e2e/add_nums_from_stdin_with_sub_components/main/main.neva b/e2e/add_nums_from_stdin_with_sub_components/main/main.neva index 82a118ef..9582ee01 100644 --- a/e2e/add_nums_from_stdin_with_sub_components/main/main.neva +++ b/e2e/add_nums_from_stdin_with_sub_components/main/main.neva @@ -4,8 +4,8 @@ import { } flow Main(start any) (stop any) { - nodes { Aux, Println } - + Aux, Println + --- :start -> aux:sig aux:res -> println:data aux:err -> println:data @@ -13,12 +13,10 @@ flow Main(start any) (stop any) { } flow Aux(sig any) (res int, err error) { - nodes { - reader1 IntReader - reader2 IntReader - adder ReducePort { Add } - } - + reader1 IntReader + reader2 IntReader + adder ReducePort { Add } + --- :sig -> reader1:sig reader1:num -> [adder:port[0], reader2:sig] reader1:err -> :err @@ -28,8 +26,8 @@ flow Aux(sig any) (res int, err error) { } flow IntReader(sig any) (num int, err error) { - nodes { io.Scanln, strconv.ParseNum } - + io.Scanln, strconv.ParseNum + --- :sig -> scanln:sig scanln:data -> parseNum:data parseNum:res -> :num diff --git a/e2e/add_nums_verbose/main/main.neva b/e2e/add_nums_verbose/main/main.neva index 9aed38e2..6365127f 100644 --- a/e2e/add_nums_verbose/main/main.neva +++ b/e2e/add_nums_verbose/main/main.neva @@ -1,9 +1,9 @@ flow Main(start any) (stop any) { - nodes { - adder Add - sequencer StreamPort - println Println - } + adder Add + sequencer StreamPort + println Println + + --- :start -> [ (1 -> sequencer:port[0]), diff --git a/e2e/add_nums_with_bridge/main/main.neva b/e2e/add_nums_with_bridge/main/main.neva index 2e6e2f15..e08dd0be 100644 --- a/e2e/add_nums_with_bridge/main/main.neva +++ b/e2e/add_nums_with_bridge/main/main.neva @@ -1,8 +1,8 @@ flow Main(start any) (stop any) { - nodes { - adder ReducePort { Add } - println Println - } + adder ReducePort { Add } + println Println + + --- :start -> [ (1 -> adder:port[0]), diff --git a/e2e/bare_iter_over_list/main/main.neva b/e2e/bare_iter_over_list/main/main.neva index 95ec04b0..70d03bf6 100644 --- a/e2e/bare_iter_over_list/main/main.neva +++ b/e2e/bare_iter_over_list/main/main.neva @@ -1,7 +1,8 @@ const lst list = [50, 30, 20, 100] flow Main(start) (stop) { - nodes { Println>, Iter, If } + Println>, Iter, If + --- :start -> ($lst -> iter -> println.last -> if) if:then -> :stop } diff --git a/e2e/comments/main/main.neva b/e2e/comments/main/main.neva index 572ea1f9..5008cfe2 100644 --- a/e2e/comments/main/main.neva +++ b/e2e/comments/main/main.neva @@ -1,11 +1,10 @@ // top-level comment 1 flow Main(start) (stop) { // comment inside flow 1 - nodes { - // comment inside nodes 1 - Println - // comment inside nodes 2 - } + // comment inside nodes 1 + Println + // comment inside nodes 2 + --- // comment inside flow 2 :start -> println:data println:sig -> :stop diff --git a/e2e/compare_ints/main/main.neva b/e2e/compare_ints/main/main.neva index 03590aa3..23b8590c 100644 --- a/e2e/compare_ints/main/main.neva +++ b/e2e/compare_ints/main/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Println, Gt,If} + Println, Gt, If + --- :start -> [ (10 -> gt:compared), (50 -> gt:actual) diff --git a/e2e/compare_ints_lt_equal/main/main.neva b/e2e/compare_ints_lt_equal/main/main.neva index d47e1a72..0cccec5c 100644 --- a/e2e/compare_ints_lt_equal/main/main.neva +++ b/e2e/compare_ints_lt_equal/main/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Println, Lt } + Println, Lt + --- :start -> [ (20 -> lt:compared), (20 -> lt:actual) diff --git a/e2e/compare_strings/main/main.neva b/e2e/compare_strings/main/main.neva index 6611396e..8c47a624 100644 --- a/e2e/compare_strings/main/main.neva +++ b/e2e/compare_strings/main/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Println, Gt, If } + Println, Gt, If + --- :start -> [ ('A' -> gt:compared), ('Z' -> gt:actual) diff --git a/e2e/conn_with_only_port_addr/main/main.neva b/e2e/conn_with_only_port_addr/main/main.neva index 879641f4..130925ea 100644 --- a/e2e/conn_with_only_port_addr/main/main.neva +++ b/e2e/conn_with_only_port_addr/main/main.neva @@ -3,7 +3,8 @@ const l list = [1,2,3] flow Main(start any) (stop any) { - nodes { println Println} + println Println + --- :start -> ($l -> println:data) println:sig } \ No newline at end of file diff --git a/e2e/const_refs_verbose/main/main.neva b/e2e/const_refs_verbose/main/main.neva index 1a09cf25..11d10fe4 100644 --- a/e2e/const_refs_verbose/main/main.neva +++ b/e2e/const_refs_verbose/main/main.neva @@ -14,7 +14,8 @@ const numsStruct NumsStruct = { } flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ($numsStruct -> println:data) println:sig -> :stop } diff --git a/e2e/echo_verbose/main/main.neva b/e2e/echo_verbose/main/main.neva index 890d4248..d55748e6 100644 --- a/e2e/echo_verbose/main/main.neva +++ b/e2e/echo_verbose/main/main.neva @@ -1,10 +1,9 @@ import { io } flow Main(start any) (stop any) { - nodes { - scanner io.Scanln - println Println - } + scanner io.Scanln + println Println + --- :start -> scanner:sig scanner:data -> println:data println:sig -> :stop diff --git a/e2e/enums_verbose/main/main.neva b/e2e/enums_verbose/main/main.neva index 8a63f157..4d5957b1 100644 --- a/e2e/enums_verbose/main/main.neva +++ b/e2e/enums_verbose/main/main.neva @@ -1,5 +1,6 @@ flow Main(start any) (stop any) { - nodes { DayPrinter } + DayPrinter + --- :start -> (Day::Friday -> dayPrinter:day) dayPrinter:sig -> :stop } @@ -15,7 +16,8 @@ type Day enum { } flow DayPrinter(day Day) (sig) { - nodes { Println } + Println + --- :day -> println:data println:sig -> :sig } \ No newline at end of file diff --git a/e2e/for_loop_over_list_verbose/main/main.neva b/e2e/for_loop_over_list_verbose/main/main.neva index 7653fd63..4aac388a 100644 --- a/e2e/for_loop_over_list_verbose/main/main.neva +++ b/e2e/for_loop_over_list_verbose/main/main.neva @@ -1,6 +1,7 @@ const lst list = [50, 30, 20, 100] flow Main(start) (stop) { - nodes { Iter, For{Println}, Wait } + Iter, For{Println}, Wait + --- :start -> ($lst -> iter -> for -> wait -> :stop) } diff --git a/e2e/for_with_range_and_if/main/main.neva b/e2e/for_with_range_and_if/main/main.neva index ffa1cc5f..c7d7b6b9 100644 --- a/e2e/for_with_range_and_if/main/main.neva +++ b/e2e/for_with_range_and_if/main/main.neva @@ -3,12 +3,14 @@ import { lists } const lst list = [true, false] flow Main(start) (stop) { - nodes { Iter, Map{Mapper}, For{Println}, Wait } + Iter, Map{Mapper}, For{Println}, Wait + --- :start -> ($lst -> iter -> map -> for -> wait -> :stop) } flow Mapper(data bool) (res int) { - nodes { Ternary } + Ternary + --- :data -> ternary:if 1 -> ternary:then 0 -> ternary:else diff --git a/e2e/hello_world_verbose/main/main.neva b/e2e/hello_world_verbose/main/main.neva index 6e4524d8..026f4f6a 100644 --- a/e2e/hello_world_verbose/main/main.neva +++ b/e2e/hello_world_verbose/main/main.neva @@ -1,12 +1,12 @@ const greeting string = 'Hello, World!' flow Main(start any) (stop any) { - nodes { - #bind(greeting) - greeting New - println Println - lock Lock - } + #bind(greeting) + greeting New + println Println + lock Lock + + --- :start -> lock:sig greeting:msg -> lock:data diff --git a/e2e/hello_world_with_const_sender/main/main.neva b/e2e/hello_world_with_const_sender/main/main.neva index 2e89eb2b..7139742d 100644 --- a/e2e/hello_world_with_const_sender/main/main.neva +++ b/e2e/hello_world_with_const_sender/main/main.neva @@ -1,11 +1,9 @@ const greeting string = 'Hello, World!' flow Main(start any) (stop any) { - nodes { - println Println - lock Lock - } - + println Println + lock Lock + --- :start -> lock:sig $greeting -> lock:data lock:data -> println:data diff --git a/e2e/hello_world_with_implicit_any/main/main.neva b/e2e/hello_world_with_implicit_any/main/main.neva index acc6fbad..1e1434f2 100644 --- a/e2e/hello_world_with_implicit_any/main/main.neva +++ b/e2e/hello_world_with_implicit_any/main/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ('Hello, World!' -> println:data) println:sig -> :stop } \ No newline at end of file diff --git a/e2e/hello_world_with_literal_sender/main/main.neva b/e2e/hello_world_with_literal_sender/main/main.neva index 28b9a1c5..b867e2a7 100644 --- a/e2e/hello_world_with_literal_sender/main/main.neva +++ b/e2e/hello_world_with_literal_sender/main/main.neva @@ -1,5 +1,6 @@ flow Main(start any) (stop any) { - nodes { println Println } + println Println + --- :start -> ('Hello, World!' -> println:data) println:sig -> :stop } \ No newline at end of file diff --git a/e2e/hello_world_with_then_connection/main/main.neva b/e2e/hello_world_with_then_connection/main/main.neva index 6be9ce7c..5a81f777 100644 --- a/e2e/hello_world_with_then_connection/main/main.neva +++ b/e2e/hello_world_with_then_connection/main/main.neva @@ -1,7 +1,8 @@ const greeting string = 'Hello, World!' flow Main(start any) (stop any) { - nodes { println Println } + println Println + --- :start -> ($greeting -> println:data) println:sig -> :stop } \ No newline at end of file diff --git a/e2e/hello_world_with_unnamed_node/main/main.neva b/e2e/hello_world_with_unnamed_node/main/main.neva index 06376012..97a3c72d 100644 --- a/e2e/hello_world_with_unnamed_node/main/main.neva +++ b/e2e/hello_world_with_unnamed_node/main/main.neva @@ -1,5 +1,6 @@ flow Main(start any) (stop any) { - nodes { Println } + Println + --- :start -> ('Hello, World!' -> println:data) println:sig -> :stop } \ No newline at end of file diff --git a/e2e/incompat_comp_type_arg/main/main.neva b/e2e/incompat_comp_type_arg/main/main.neva index d1963ce0..377c7ed1 100644 --- a/e2e/incompat_comp_type_arg/main/main.neva +++ b/e2e/incompat_comp_type_arg/main/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Decr } + Decr + --- :start -> (42 -> decr:data) decr:res -> :stop } \ No newline at end of file diff --git a/e2e/incompat_types_with_untyped_port/main/main.neva b/e2e/incompat_types_with_untyped_port/main/main.neva index 8a1a7e38..0a4ceac5 100644 --- a/e2e/incompat_types_with_untyped_port/main/main.neva +++ b/e2e/incompat_types_with_untyped_port/main/main.neva @@ -1,9 +1,8 @@ flow Main(start) (stop) { - nodes { - Sworktest - StreamPort - Println - } + Sworktest + StreamPort + Println + --- :start -> [ (1 -> streamPort[0]), (2 -> streamPort[1]) @@ -12,6 +11,7 @@ flow Main(start) (stop) { } flow Sworktest(in) (out) { - nodes { Add } + Add + --- :in -> add -> :out } diff --git a/e2e/interface_anonymous/main/main.neva b/e2e/interface_anonymous/main/main.neva index 547f9ca6..d42f46ba 100644 --- a/e2e/interface_anonymous/main/main.neva +++ b/e2e/interface_anonymous/main/main.neva @@ -1,15 +1,15 @@ interface IPrinter(data T) (sig T) flow Main(start) (stop) { - nodes { - Secondflow { Println } - } + Secondflow { Println } + --- :start -> secondflow:msg secondflow:msg -> :stop } flow Secondflow (msg) (msg) { - nodes { IPrinter } + IPrinter + --- :msg -> iPrinter:data iPrinter:sig -> :msg } \ No newline at end of file diff --git a/e2e/interface_verbose/main/main.neva b/e2e/interface_verbose/main/main.neva index 5ad5a12d..fcc3fd62 100644 --- a/e2e/interface_verbose/main/main.neva +++ b/e2e/interface_verbose/main/main.neva @@ -1,17 +1,17 @@ interface IPrinter(data T) (sig T) flow Main(start any) (stop any) { - nodes { - Secondflow { - depNode Println - } + Secondflow { + depNode Println } + --- :start -> secondflow:msg secondflow:msg -> :stop } flow Secondflow (msg any) (msg any) { - nodes { depNode IPrinter } + depNode IPrinter + --- :msg -> depNode:data depNode:sig -> :msg } diff --git a/e2e/interface_with_imports/main/main.neva b/e2e/interface_with_imports/main/main.neva index fc496b4e..f3e11b09 100644 --- a/e2e/interface_with_imports/main/main.neva +++ b/e2e/interface_with_imports/main/main.neva @@ -3,15 +3,15 @@ import { github.com/nevalang/x:main } interface IPrinter(data T) (sig T) flow Main(start any) (stop any) { - nodes { - Secondflow { main.Println } - } + Secondflow { main.Println } + --- :start -> secondflow:msg secondflow:msg -> :stop } flow Secondflow (msg any) (msg any) { - nodes { IPrinter } + IPrinter + --- :msg -> iPrinter:data iPrinter:sig -> :msg } \ No newline at end of file diff --git a/e2e/list_with_neg_nums/main/main.neva b/e2e/list_with_neg_nums/main/main.neva index 29108b70..3cfc5f9a 100644 --- a/e2e/list_with_neg_nums/main/main.neva +++ b/e2e/list_with_neg_nums/main/main.neva @@ -1,7 +1,8 @@ const l list = [-215] flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ($l -> println:data) println:sig -> :stop } \ No newline at end of file diff --git a/e2e/local_imports/foo/bar/bar.neva b/e2e/local_imports/foo/bar/bar.neva index b1438ea3..8abaf527 100644 --- a/e2e/local_imports/foo/bar/bar.neva +++ b/e2e/local_imports/foo/bar/bar.neva @@ -1,6 +1,7 @@ import { builtin } pub flow Println(data any) (sig any) { - nodes { builtin.Println } + builtin.Println + --- :data -> println -> :sig } \ No newline at end of file diff --git a/e2e/local_imports/foo/foo.neva b/e2e/local_imports/foo/foo.neva index b1438ea3..8abaf527 100644 --- a/e2e/local_imports/foo/foo.neva +++ b/e2e/local_imports/foo/foo.neva @@ -1,6 +1,7 @@ import { builtin } pub flow Println(data any) (sig any) { - nodes { builtin.Println } + builtin.Println + --- :data -> println -> :sig } \ No newline at end of file diff --git a/e2e/local_imports/main/main.neva b/e2e/local_imports/main/main.neva index ad982812..22d64f9f 100644 --- a/e2e/local_imports/main/main.neva +++ b/e2e/local_imports/main/main.neva @@ -4,6 +4,8 @@ import { } flow Main(start) (stop) { - nodes { foo foo.Println, bar bar.Println } + foo foo.Println + bar bar.Println + --- :start -> (42 -> foo -> bar -> :stop) } \ No newline at end of file diff --git a/e2e/logic_gate_and/main/main.neva b/e2e/logic_gate_and/main/main.neva index 95c59e22..b3ec6aeb 100644 --- a/e2e/logic_gate_and/main/main.neva +++ b/e2e/logic_gate_and/main/main.neva @@ -1,8 +1,9 @@ flow Main(start) (stop) { - nodes { Println, And } - :start -> [ - (true -> and:a), - (true -> and:b) - ] - and -> println -> :stop + Println, And + --- + :start -> [ + (true -> and:a), + (true -> and:b) + ] + and -> println -> :stop } \ No newline at end of file diff --git a/e2e/logic_gate_or/main/main.neva b/e2e/logic_gate_or/main/main.neva index fac4479b..f65472f3 100644 --- a/e2e/logic_gate_or/main/main.neva +++ b/e2e/logic_gate_or/main/main.neva @@ -1,8 +1,9 @@ flow Main(start) (stop) { - nodes { Println, Or } - :start -> [ - (false -> or:a), - (false -> or:b) - ] - or -> println -> :stop + Println, Or + --- + :start -> [ + (false -> or:a), + (false -> or:b) + ] + or -> println -> :stop } \ No newline at end of file diff --git a/e2e/map_list_verbose/main/main.neva b/e2e/map_list_verbose/main/main.neva index 43a04a2b..6a157aa2 100644 --- a/e2e/map_list_verbose/main/main.neva +++ b/e2e/map_list_verbose/main/main.neva @@ -3,6 +3,10 @@ const lst list = [50, 30, 20, 100] flow Main(start) (stop) { - nodes { Map{Decr}, List, Println, Iter } + Map{Decr} + List + Println + Iter + --- :start -> ($lst -> iter -> map -> list -> println -> :stop) } diff --git a/e2e/multiply_numbers/main/main.neva b/e2e/multiply_numbers/main/main.neva index cc762a63..38ac7408 100644 --- a/e2e/multiply_numbers/main/main.neva +++ b/e2e/multiply_numbers/main/main.neva @@ -1,8 +1,7 @@ flow Main(start) (stop) { - nodes { - Println - mul ReducePort { Mul } - } + Println + mul ReducePort { Mul } + --- :start -> [ (1 -> mul[0]), (2 -> mul[1]), diff --git a/e2e/order_dependend_with_arr_inport/main/main.neva b/e2e/order_dependend_with_arr_inport/main/main.neva index d9ed0684..60af0b5e 100644 --- a/e2e/order_dependend_with_arr_inport/main/main.neva +++ b/e2e/order_dependend_with_arr_inport/main/main.neva @@ -1,8 +1,7 @@ flow Main(start) (stop) { - nodes { - Println - sub ReducePort { Sub } - } + Println + sub ReducePort { Sub } + --- :start -> [ (1 -> sub:port[0]), (2 -> sub:port[1]), diff --git a/e2e/print_float/main/main.neva b/e2e/print_float/main/main.neva index d5803f3a..5f5af8c7 100644 --- a/e2e/print_float/main/main.neva +++ b/e2e/print_float/main/main.neva @@ -1,7 +1,8 @@ const x float = 42 flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ($x -> println:data) println:sig -> :stop } diff --git a/e2e/regex_submatch_verbose/main/main.neva b/e2e/regex_submatch_verbose/main/main.neva index 926d6b84..bef6e59b 100644 --- a/e2e/regex_submatch_verbose/main/main.neva +++ b/e2e/regex_submatch_verbose/main/main.neva @@ -1,8 +1,8 @@ import { regexp } flow Main(start) (stop) { - nodes { Println, regexp.Submatch } - + Println, regexp.Submatch + --- :start -> [ ('a(x*)b(y|z)c' -> submatch:regexp), ('-axxxbyc-' -> submatch:data) diff --git a/e2e/run_cli_not_from_module_root/foo/bar/main.neva b/e2e/run_cli_not_from_module_root/foo/bar/main.neva index 09c4f6fb..5be3af7f 100644 --- a/e2e/run_cli_not_from_module_root/foo/bar/main.neva +++ b/e2e/run_cli_not_from_module_root/foo/bar/main.neva @@ -1,4 +1,5 @@ flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> (42 -> println -> :stop) } diff --git a/e2e/simple_fan_out/main/main.neva b/e2e/simple_fan_out/main/main.neva index 16705496..b9240f82 100644 --- a/e2e/simple_fan_out/main/main.neva +++ b/e2e/simple_fan_out/main/main.neva @@ -1,7 +1,9 @@ import { time } flow Main(start) (stop) { - nodes { p1 Println, p2 Println } + p1 Println + p2 Println + --- :start -> [p1, p2] p1 -> (p2 -> :stop) } diff --git a/e2e/slow_iteration_with_for/main/main.neva b/e2e/slow_iteration_with_for/main/main.neva index 6cd9797f..2cc5372f 100644 --- a/e2e/slow_iteration_with_for/main/main.neva +++ b/e2e/slow_iteration_with_for/main/main.neva @@ -7,12 +7,15 @@ import { time } const lst list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] flow Main(start) (stop) { - nodes { Iter, For{Slow}, Wait } + Iter, For{Slow}, Wait + --- :start -> ($lst -> iter -> for -> wait -> :stop) } flow Slow(data int) (sig any) { - nodes { time.Delay, Println } + time.Delay + Println + --- :data -> delay:data $time.second -> delay:dur delay -> println -> :sig diff --git a/e2e/slow_iteration_with_map/main/main.neva b/e2e/slow_iteration_with_map/main/main.neva index 1fad9367..5bb5f416 100644 --- a/e2e/slow_iteration_with_map/main/main.neva +++ b/e2e/slow_iteration_with_map/main/main.neva @@ -7,14 +7,20 @@ import { time } const lst list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] flow Main(start) (stop) { - nodes { Iter, Map{Slow}, List, Println } + Iter + Map{Slow} + List + Println + --- :start -> ( $lst -> iter -> map -> list -> println -> :stop ) } flow Slow(data int) (res int) { - nodes { time.Delay, Decr } + time.Delay + Decr + --- :data -> delay:data $time.second -> delay:dur delay -> decr -> :res diff --git a/e2e/struct_builder_verbose/main/main.neva b/e2e/struct_builder_verbose/main/main.neva index 00588947..103c6eae 100644 --- a/e2e/struct_builder_verbose/main/main.neva +++ b/e2e/struct_builder_verbose/main/main.neva @@ -10,8 +10,9 @@ type User struct { flow MyStructBuilder(age int, name string) (msg User) flow Main(start any) (stop any) { - nodes { Println, builder MyStructBuilder } - + Println + builder MyStructBuilder + --- :start -> [ ('John' -> builder:name), (32 -> builder:age) diff --git a/e2e/struct_builder_with_sugar/main/main.neva b/e2e/struct_builder_with_sugar/main/main.neva index ee8c02c2..806eae7c 100644 --- a/e2e/struct_builder_with_sugar/main/main.neva +++ b/e2e/struct_builder_with_sugar/main/main.neva @@ -6,8 +6,9 @@ type User struct { // FIXME - cannot use 'struct' as a node name flow Main(start any) (stop any) { - nodes { Println, builder Struct } - + Println + builder Struct + --- :start -> [ ('John' -> builder:name), (32 -> builder:age) diff --git a/e2e/struct_selector_on_port_addr/main/main.neva b/e2e/struct_selector_on_port_addr/main/main.neva index f51f0e2d..3189f961 100644 --- a/e2e/struct_selector_on_port_addr/main/main.neva +++ b/e2e/struct_selector_on_port_addr/main/main.neva @@ -1,9 +1,6 @@ flow Main(start) (stop) { - nodes { - Foo - Println - } - + Foo, Println + --- :start -> foo:sig foo:msg.a -> println:data println:sig -> :stop diff --git a/e2e/struct_selector_verbose/main/main.neva b/e2e/struct_selector_verbose/main/main.neva index c3afe461..c6c76d54 100644 --- a/e2e/struct_selector_verbose/main/main.neva +++ b/e2e/struct_selector_verbose/main/main.neva @@ -18,12 +18,12 @@ const user User = { const path list = ['pet', 'name'] flow Main(start any) (stop any) { - nodes { - Println + Println - #bind(path) - Field - } + #bind(path) + Field + + --- :start -> ($user -> field:msg) field:msg -> println:data diff --git a/e2e/struct_selector_with_more_sugar/main/main.neva b/e2e/struct_selector_with_more_sugar/main/main.neva index 666bf19b..a994ecff 100644 --- a/e2e/struct_selector_with_more_sugar/main/main.neva +++ b/e2e/struct_selector_with_more_sugar/main/main.neva @@ -9,7 +9,8 @@ type User struct { type Pet struct { name string } flow Main(start) (stop) { - nodes { UserSender, Println } + UserSender, Println + --- :start -> userSender:sig userSender.pet.name -> println -> :stop } diff --git a/e2e/struct_selector_with_sugar/main/main.neva b/e2e/struct_selector_with_sugar/main/main.neva index 6a286db1..e8d69b66 100644 --- a/e2e/struct_selector_with_sugar/main/main.neva +++ b/e2e/struct_selector_with_sugar/main/main.neva @@ -9,7 +9,8 @@ type User struct { type Pet struct { name string } flow Main(start) (stop) { - nodes { UserSender, Println } + UserSender, Println + --- :start -> userSender:sig userSender:u.pet.name -> println:data println:sig -> :stop diff --git a/e2e/type_expr_with_imported_type_arg/main/main.neva b/e2e/type_expr_with_imported_type_arg/main/main.neva index 53057514..ebf5e693 100644 --- a/e2e/type_expr_with_imported_type_arg/main/main.neva +++ b/e2e/type_expr_with_imported_type_arg/main/main.neva @@ -5,11 +5,9 @@ import { @:foo } flow Main(start) (stop) { - nodes { - justFoo Struct - itemWithFoo Struct> - } - + justFoo Struct + itemWithFoo Struct> + --- :start -> [ (0 -> [justFoo:bar, itemWithFoo:idx]), (true -> itemWithFoo:last) diff --git a/examples/99_bottles/main.neva b/examples/99_bottles/main.neva index 73ec1e8a..1dab7bda 100644 --- a/examples/99_bottles/main.neva +++ b/examples/99_bottles/main.neva @@ -1,14 +1,16 @@ // https://www.99-bottles-of-beer.net flow Main(start) (stop) { - nodes { Switch, PrintNext2Lines } + Switch, PrintNext2Lines + --- :start -> (99 -> printNext2Lines -> switch:data) -1 -> switch:case[0] -> :stop switch:else -> printNext2Lines } flow PrintNext2Lines(n int) (n int) { - nodes { Decr, PrintFirstLine, PrintSecondLine } + Decr, PrintFirstLine, PrintSecondLine + --- :n -> printFirstLine -> decr -> printSecondLine -> :n } @@ -19,7 +21,9 @@ const firstLine2 string = '1 bottle of beer on the wall, 1 bottle of beer.' const firstLine3 string = 'No more bottles of beer on the wall, no more bottles of beer.' flow PrintFirstLine(n int) (n int) { - nodes { Switch, Println, Printf, Lock } + Switch, Println, Printf, Lock + + --- :n -> [switch:data, lock:data] @@ -42,7 +46,9 @@ const secondLine3 string = 'Take one down and pass it around, no more bottles of const secondLine4 string = 'Go to the store and buy some more, 99 bottles of beer on the wall.' flow PrintSecondLine(n int) (n int) { - nodes { Switch, Println, Printf, Lock } + Switch, Println, Printf, Lock + + --- :n -> [switch:data, lock:data] diff --git a/examples/add_numbers/main.neva b/examples/add_numbers/main.neva index 2e1d97c5..5f16fa23 100644 --- a/examples/add_numbers/main.neva +++ b/examples/add_numbers/main.neva @@ -1,8 +1,7 @@ flow Main(start) (stop) { - nodes { - Println - add ReducePort { Add } - } + Println + add ReducePort { Add } + --- :start -> [ (1 -> add[0]), (2 -> add[1]) diff --git a/examples/add_numbers_from_stdin/main.neva b/examples/add_numbers_from_stdin/main.neva index e25bf65b..34c453de 100644 --- a/examples/add_numbers_from_stdin/main.neva +++ b/examples/add_numbers_from_stdin/main.neva @@ -1,18 +1,17 @@ import { io, strconv } flow Main(start) (stop) { - nodes { App, Println } + App, Println + --- :start -> app [app:res, app:err] -> println -> :stop } flow App(sig) (res int, err error) { - nodes { - readFirstInt ReadIntFromStdin - readSecondInt ReadIntFromStdin - add ReducePort { Add } - } - + readFirstInt ReadIntFromStdin + readSecondInt ReadIntFromStdin + add ReducePort { Add } + --- :sig -> readFirstInt readFirstInt:num -> [add[0], readSecondInt] readSecondInt:num -> add[1] @@ -21,7 +20,8 @@ flow App(sig) (res int, err error) { } flow ReadIntFromStdin(sig) (num int, err error) { - nodes { io.Scanln, strconv.ParseNum } + io.Scanln, strconv.ParseNum + --- :sig -> scanln -> parseNum parseNum:res -> :num parseNum:err -> :err diff --git a/examples/advanced_error_handling/main.neva b/examples/advanced_error_handling/main.neva index 749de54b..ce0a9d23 100644 --- a/examples/advanced_error_handling/main.neva +++ b/examples/advanced_error_handling/main.neva @@ -1,14 +1,16 @@ import { http } flow Main(start) (stop) { - nodes { App, Println, Panic } // Panic will crash the program + App, Println, Panic // Panic will terminate the program + --- :start -> app:sig app:err -> panic // we only handle err at this lvl app:data -> println -> :stop } flow App(sig) (data string, err error) { - nodes { http.Get? } // '?' implicitly sends err downstream + http.Get? // '?' implicitly sends err downstream + --- :sig -> ('definitely not a valid URL' -> get) get:resp.body -> :data // look ma, no error handling! } \ No newline at end of file diff --git a/examples/compare_values/main.neva b/examples/compare_values/main.neva index 5fa34e4a..bc3953d1 100644 --- a/examples/compare_values/main.neva +++ b/examples/compare_values/main.neva @@ -1,5 +1,7 @@ flow Main(start) (stop) { - nodes { Println, Eq, If } + Eq, If, Println + + --- :start -> [ (2 -> eq:actual), diff --git a/examples/const_refs/main.neva b/examples/const_refs/main.neva index c3e3322e..11345ad6 100644 --- a/examples/const_refs/main.neva +++ b/examples/const_refs/main.neva @@ -14,6 +14,7 @@ const numsStruct NumsStruct = { } flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ($numsStruct -> println -> :stop) } diff --git a/examples/echo/main.neva b/examples/echo/main.neva index 20c3c05f..0f0afa6f 100644 --- a/examples/echo/main.neva +++ b/examples/echo/main.neva @@ -1,6 +1,7 @@ import { io } flow Main(start) (stop) { - nodes { io.Scanln, Println } + io.Scanln, Println + --- :start -> scanln -> println -> :stop } \ No newline at end of file diff --git a/examples/enums/main.neva b/examples/enums/main.neva index b90f6626..b2caef91 100644 --- a/examples/enums/main.neva +++ b/examples/enums/main.neva @@ -1,5 +1,6 @@ flow Main(start any) (stop any) { - nodes { DayPrinter } + DayPrinter + --- :start -> (Day::Friday -> dayPrinter -> :stop) } @@ -14,6 +15,7 @@ type Day enum { } flow DayPrinter(day Day) (sig) { - nodes { Println } + Println + --- :day -> println -> :sig -} \ No newline at end of file +} diff --git a/examples/file_read_all/main.neva b/examples/file_read_all/main.neva index 7f709963..5972aabb 100644 --- a/examples/file_read_all/main.neva +++ b/examples/file_read_all/main.neva @@ -1,7 +1,8 @@ import { io } flow Main(start) (stop) { - nodes { io.ReadAll, Println } + io.ReadAll, Println + --- :start -> ('file_read_all/main.neva' -> readAll:filename) [readAll:data, readAll:err] -> println -> :stop } diff --git a/examples/file_write_all/main.neva b/examples/file_write_all/main.neva index f1525b1b..658c82e1 100644 --- a/examples/file_write_all/main.neva +++ b/examples/file_write_all/main.neva @@ -1,8 +1,8 @@ import { io } flow Main(start) (stop) { - nodes { io.WriteAll, Println } - + io.WriteAll, Println + --- :start -> [ ('file_writer_example.txt' -> writeAll:filename), ('Hello, io.WriteAll!' -> writeAll:data) diff --git a/examples/fizzbuzz/main.neva b/examples/fizzbuzz/main.neva index 1b6cb65b..c0eccef3 100644 --- a/examples/fizzbuzz/main.neva +++ b/examples/fizzbuzz/main.neva @@ -1,11 +1,17 @@ flow Main(start) (stop) { - nodes { Range, Map{FizzBuzz}, For{Println}, Wait } + Range + Map{FizzBuzz} + For{Println} + Wait + --- :start -> [(1 -> range:from), (101 -> range:to)] range -> map -> for -> wait -> :stop } flow FizzBuzz(data int) (res string|int) { - nodes { Select, Mod15, Mod3, Mod5 } + Select, Mod15, Mod3, Mod5 + + --- :data -> [mod15, select:then[3]] @@ -25,7 +31,8 @@ flow FizzBuzz(data int) (res string|int) { } flow Mod15(num int) (then int, else int) { - nodes { h ModHelper } + h ModHelper + --- :num -> h:num 15 -> h:den h:then -> :then @@ -33,7 +40,8 @@ flow Mod15(num int) (then int, else int) { } flow Mod3(num int) (then int, else int) { - nodes { h ModHelper } + h ModHelper + --- :num -> h:num 3 -> h:den h:then -> :then @@ -41,7 +49,8 @@ flow Mod3(num int) (then int, else int) { } flow Mod5(num int) (then int, else int) { - nodes { h ModHelper } + h ModHelper + --- :num -> h:num 5 -> h:den h:then -> :then @@ -50,7 +59,11 @@ flow Mod5(num int) (then int, else int) { // ModHelper checks if num can be devided by den flow ModHelper(num int, den int) (then int, else int) { - nodes { Mod, Eq, Cond } + Mod + Eq + Cond + + --- :num -> [mod:num, cond:data] :den -> mod:den diff --git a/examples/for_loop_over_list/main.neva b/examples/for_loop_over_list/main.neva index 8d0e4b34..2334c3f2 100644 --- a/examples/for_loop_over_list/main.neva +++ b/examples/for_loop_over_list/main.neva @@ -3,6 +3,7 @@ import { lists } const lst list = [1, 2, 3] flow Main(start) (stop) { - nodes { Iter, For{Println}, Wait } + Iter, For{Println}, Wait + --- :start -> ($lst -> iter -> for -> wait -> :stop) } \ No newline at end of file diff --git a/examples/get_args/main.neva b/examples/get_args/main.neva index 77a10ab1..2d68664d 100644 --- a/examples/get_args/main.neva +++ b/examples/get_args/main.neva @@ -1,6 +1,7 @@ import { os, lists } flow Main(start) (stop) { - nodes { os.Args, Iter, For{Println}, Wait } + os.Args, Iter, For{Println}, Wait + --- :start -> args -> iter -> for -> wait -> :stop } \ No newline at end of file diff --git a/examples/hello_world/main.neva b/examples/hello_world/main.neva index 67aadfb0..1a41fb4f 100644 --- a/examples/hello_world/main.neva +++ b/examples/hello_world/main.neva @@ -1,4 +1,5 @@ flow Main(start) (stop) { - nodes { Println } + Println + --- :start -> ('Hello, World!' -> println -> :stop) } diff --git a/examples/http_get/main.neva b/examples/http_get/main.neva index c305bc46..e55be83a 100644 --- a/examples/http_get/main.neva +++ b/examples/http_get/main.neva @@ -1,7 +1,8 @@ import { http } flow Main(start) (stop) { - nodes { http.Get, Println } + http.Get, Println + --- :start -> ('http://www.example.com' -> get) get:resp.body -> println -> :stop } \ No newline at end of file diff --git a/examples/image_png/main.neva b/examples/image_png/main.neva index cfde386f..76b0e0d0 100644 --- a/examples/image_png/main.neva +++ b/examples/image_png/main.neva @@ -1,7 +1,8 @@ import { io, image } flow NewPixel(x int, y int, c image.RGBA) (pixel image.Pixel) { - nodes { pb Struct } + pb Struct + --- :x -> pb:x :y -> pb:y :c -> pb:color @@ -9,7 +10,8 @@ flow NewPixel(x int, y int, c image.RGBA) (pixel image.Pixel) { } flow NewColor(r int, g int, b int, a int) (color image.RGBA) { - nodes { cb Struct } + cb Struct + --- :r -> cb:r :g -> cb:g :b -> cb:b @@ -18,7 +20,8 @@ flow NewColor(r int, g int, b int, a int) (color image.RGBA) { } flow NewStream(p image.Pixel) (s stream) { - nodes { sb Struct> } + sb Struct> + --- 0 -> sb:idx :p -> sb:data true -> sb:last @@ -26,12 +29,10 @@ flow NewStream(p image.Pixel) (s stream) { } flow Main(start) (stop) { - nodes { - image.New, image.Encode - NewPixel, NewColor, NewStream, - io.WriteAll, Println - } - + image.New, image.Encode + NewPixel, NewColor, NewStream, + io.WriteAll, Println + --- :start -> [ (0 -> [newColor:r, newColor:g, newColor:b, newColor:a]), (15 -> [newPixel:x, newPixel:y]), diff --git a/examples/interfaces/main.neva b/examples/interfaces/main.neva index 9ad29211..6ba58bfa 100644 --- a/examples/interfaces/main.neva +++ b/examples/interfaces/main.neva @@ -1,13 +1,13 @@ flow Main(start) (stop) { - nodes { - WithDep { Println } - } + WithDep { Println } + --- :start -> withDep -> :stop } interface IPrinter(data T) (sig T) flow WithDep (msg any) (msg any) { - nodes { IPrinter } + IPrinter + --- :msg -> iPrinter -> :msg } \ No newline at end of file diff --git a/examples/list_index/main.neva b/examples/list_index/main.neva index 6669ef18..0fbf012f 100644 --- a/examples/list_index/main.neva +++ b/examples/list_index/main.neva @@ -3,7 +3,8 @@ import { lists } const lst list = [1, 1, 5, 112, 69, 420] flow Main(start) (stop) { - nodes { lists.At, Println } + lists.At, Println + --- :start -> [ ($lst -> at:data), (4 -> at:idx) diff --git a/examples/list_len/main.neva b/examples/list_len/main.neva index f66efe41..bd981c62 100644 --- a/examples/list_len/main.neva +++ b/examples/list_len/main.neva @@ -1,6 +1,7 @@ const lst list = [4, 123, 22, 1121, 215] flow Main(start) (stop) { - nodes { Println, Len> } + Println, Len> + --- :start -> ($lst -> len -> println -> :stop) } \ No newline at end of file diff --git a/examples/map_list/main.neva b/examples/map_list/main.neva index 44a2d522..4f681afd 100644 --- a/examples/map_list/main.neva +++ b/examples/map_list/main.neva @@ -3,6 +3,10 @@ import { lists } const lst list = [50, 30, 20, 100] flow Main(start) (stop) { - nodes { Iter, Map{Decr}, List, Println } + Iter + Map{Decr} + List + Println + --- :start -> ($lst -> iter -> map -> list -> println -> :stop) } diff --git a/examples/match/main.neva b/examples/match/main.neva index afe4a31a..71b1dc7e 100644 --- a/examples/match/main.neva +++ b/examples/match/main.neva @@ -1,11 +1,14 @@ flow Main(start) (stop) { - nodes { Range, For{Handler}, Wait } + Range, For{Handler}, Wait + --- :start -> [(1 -> range:from), (5 -> range:to)] range -> for -> wait -> :stop } flow Handler(data int) (sig any) { - nodes { Match, Println } + Match, Println + + --- :data -> match:data diff --git a/examples/push_to_list/main.neva b/examples/push_to_list/main.neva index e7000f5f..798f5b6c 100644 --- a/examples/push_to_list/main.neva +++ b/examples/push_to_list/main.neva @@ -2,7 +2,8 @@ const f int = 69 const l list = [320, 420, 100, -100, 0, 5] flow Main(start) (stop) { - nodes { Push, Println } + Push, Println + --- :start -> [ ($l -> push:lst), ($f -> push:data) diff --git a/examples/regex_submatch/main.neva b/examples/regex_submatch/main.neva index 5bf1fa38..874b8428 100644 --- a/examples/regex_submatch/main.neva +++ b/examples/regex_submatch/main.neva @@ -1,7 +1,8 @@ import { regexp } flow Main(start) (stop) { - nodes { Println, regexp.Submatch } + Println, regexp.Submatch + --- :start -> [ ('a(x*)b(y|z)c' -> submatch:regexp), ('-axxxbyc-' -> submatch:data) diff --git a/examples/select/main.neva b/examples/select/main.neva index ea0edfaf..c63d41fd 100644 --- a/examples/select/main.neva +++ b/examples/select/main.neva @@ -3,12 +3,11 @@ import { time } flow Main(start) (stop) { - nodes { - Range - Map{Handler} - For{Println} - Wait - } + Range + Map{Handler} + For{Println} + Wait + --- :start -> [ (1 -> range:from), (5 -> range:to) @@ -17,11 +16,10 @@ flow Main(start) (stop) { } flow Handler(data int) (res string) { - nodes { - Switch - Select - } - + Switch, Select + + --- + :data -> switch:data 1 -> switch:case[0] -> select:if[0] diff --git a/examples/sort_list/main.neva b/examples/sort_list/main.neva index 03ba2cf1..eb672fb2 100644 --- a/examples/sort_list/main.neva +++ b/examples/sort_list/main.neva @@ -1,6 +1,7 @@ const l list = [50, 30, 20, 100] flow Main(start any) (stop any) { - nodes { Sort, Println } + Sort, Println + --- :start -> ($l -> sort -> println -> :stop) } diff --git a/examples/split_join_string/main.neva b/examples/split_join_string/main.neva index 1395d438..da119eaf 100644 --- a/examples/split_join_string/main.neva +++ b/examples/split_join_string/main.neva @@ -1,7 +1,8 @@ import { strings } flow Main(start) (stop) { - nodes { Println, strings.Split, strings.Join } + Println, strings.Split, strings.Join + --- :start -> [ ('neva' -> split:data), ('' -> split:delim) diff --git a/examples/stream_product/main.neva b/examples/stream_product/main.neva index 6791dc2d..877675f1 100644 --- a/examples/stream_product/main.neva +++ b/examples/stream_product/main.neva @@ -1,16 +1,14 @@ import { streams } flow Main(start) (stop) { - nodes { - r1 Range - r2 Range - streams.Product - For> { - Println> - } - Wait + r1 Range + r2 Range + streams.Product + For> { + Println> } - + Wait + --- :start -> [ (0 -> [r1:from, r2:from]), (3 -> [r1:to, r2:to]) diff --git a/examples/stream_to_list/main.neva b/examples/stream_to_list/main.neva index 064ff9f0..6fdee41d 100644 --- a/examples/stream_to_list/main.neva +++ b/examples/stream_to_list/main.neva @@ -1,5 +1,6 @@ flow Main(start) (stop) { - nodes { Range, List, Println } + Range, List, Println + --- :start -> [ (1 -> range:from), (11 -> range:to) diff --git a/examples/stream_zip/main.neva b/examples/stream_zip/main.neva index c04945b7..5e7d0880 100644 --- a/examples/stream_zip/main.neva +++ b/examples/stream_zip/main.neva @@ -3,13 +3,12 @@ import { streams } const strings list = ['a', 'b', 'c'] flow Main(start) (stop) { - nodes { - r1 Range - Iter - streams.Zip - For{Println} - Wait - } + r1 Range + Iter + streams.Zip + For{Println} + Wait + --- :start -> [ (0 -> r1:from), (10 -> r1:to) diff --git a/examples/struct_builder/main.neva b/examples/struct_builder/main.neva index eca18ca6..edbcbe4e 100644 --- a/examples/struct_builder/main.neva +++ b/examples/struct_builder/main.neva @@ -6,7 +6,9 @@ type User struct { // FIXME:grammar - cannot use 'struct' as a node name flow Main(start any) (stop any) { - nodes { Println, builder Struct } + Println + builder Struct + --- :start -> [ ('John' -> builder:name), (32 -> builder:age) diff --git a/examples/struct_selector/main.neva b/examples/struct_selector/main.neva index 56848763..30474ac3 100644 --- a/examples/struct_selector/main.neva +++ b/examples/struct_selector/main.neva @@ -6,7 +6,8 @@ type User struct { type Pet struct { name string } flow Main(start) (stop) { - nodes { GetUser, Println } + GetUser, Println + --- :start -> getUser.pet.name -> println -> :stop } diff --git a/examples/time_sleep/main.neva b/examples/time_sleep/main.neva index 30aff70f..6ddbd719 100644 --- a/examples/time_sleep/main.neva +++ b/examples/time_sleep/main.neva @@ -1,6 +1,7 @@ import { time } flow Main(start) (stop) { - nodes { time.Sleep } + time.Sleep + --- :start -> ($time.second -> sleep -> :stop) } diff --git a/examples/wait_group/main.neva b/examples/wait_group/main.neva index 739bf732..8b639a9f 100644 --- a/examples/wait_group/main.neva +++ b/examples/wait_group/main.neva @@ -1,7 +1,9 @@ import { sync } flow Main(start) (stop) { - nodes { wg sync.WaitGroup, Println } + wg sync.WaitGroup + Println + --- :start -> [ ('Hello' -> println -> wg:sig), ('Neva' -> println -> wg:sig), diff --git a/internal/compiler/parser/smoke_test/happypath/025_component.neva b/internal/compiler/parser/smoke_test/happypath/025_component.neva index 490d7cab..5b4564c1 100644 --- a/internal/compiler/parser/smoke_test/happypath/025_component.neva +++ b/internal/compiler/parser/smoke_test/happypath/025_component.neva @@ -17,140 +17,143 @@ flow Doer(x int) (y T) { } flow Doer(x int) (y T) { - nodes {} -} - -flow Doer(x int) (y T) { - nodes { - } + absNode INode + --- } flow Doer(x int) (y T) { - nodes { absNode INode } + absNode INode + + --- } flow Doer(x int) (y T) { - nodes { - absNode INode } -} -flow Doer(x int) (y T) { - nodes { absNode INode - } -} + absNode INode -flow Doer(x int) (y T) { - nodes { - absNode INode - } + --- } flow Doer(x int) (y T) { - nodes { - simpleAbsNode INode - absNodeWithTypeArgs INode< - int, - map< - string, vec - > + simpleAbsNode INode + absNodeWithTypeArgs INode< + int, + map< + string, vec > - } + > + --- } flow Doer(x int) (y T) { - nodes { concreteNode Node } + concreteNode Node + --- } flow Doer(x int) (y T) { - nodes { - concreteNode Node } + concreteNode Node + --- } flow Doer(x int) (y T) { - nodes { concreteNode Node - } + concreteNodeWithTypeArgs Node> + --- } flow Doer(x int) (y T) { - nodes { - concreteNode Node + concreteNodeWithDI1 Node1{foo Node2} + concreteNodeWithDI2 Node1{ + foo Node2 + bar Node3 } + --- } flow Doer(x int) (y T) { - nodes { - concreteNodeWithTypeArgs Node> + concreteNodeWithDI1 Node1{ + foo Node2 } + concreteNodeWithDI2 Node1{ + foo Node2 + bar Node3 + } + --- } flow Doer(x int) (y T) { - nodes { - concreteNodeWithDI1 Node1{foo Node2} - concreteNodeWithDI2 Node1{ - foo Node2 - bar Node3 - } + concreteNodeWithDIAndTypeArgs Node1< + int, + map< + string, + vec + > + > { + foo Node2 + bar Node3 } + --- } flow Doer(x int) (y T) { - nodes { - concreteNodeWithDI1 Node1{ - foo Node2 - } - concreteNodeWithDI2 Node1{ - foo Node2 - bar Node3 - } + simpleAbsNode INode + + absNodeWithTypeArgs INode< + int, + map< + string, vec + > + > + + concreteNodeWithDI1 Node1{ foo Node2 } + + concreteNodeWithDIAndTypeArgs Node1< + int, + map< + string, + vec + > + >{ + foo Node2 + bar Node3 } + --- } -flow Doer(x int) (y T) { - nodes { - concreteNodeWithDIAndTypeArgs Node1< - int, - map< - string, - vec - > - > { - foo Node2 - bar Node3 - } - } +flow Main(start any) (stop any) { + abs IReader + concrete Scanner + --- + :start -> abs:v + abs:v -> [concrete:v] + concrete:v -> :code } -flow Doer(x int) (y T) { - nodes { - simpleAbsNode INode - - absNodeWithTypeArgs INode< - int, - map< - string, vec - > - > +flow Main(start any) (stop any) { + abs IReader + concrete Scanner + --- + + :start -> abs:v + abs:v -> [concrete:v] + concrete:v -> :code +} - concreteNodeWithDI1 Node1{ foo Node2 } - - concreteNodeWithDIAndTypeArgs Node1< - int, - map< - string, - vec - > - >{ - foo Node2 - bar Node3 - } - } +flow Main(start any) (stop any) { + abs IReader + concrete Scanner + + --- + :start -> abs:v + abs:v -> [concrete:v] + concrete:v -> :code } flow Main(start any) (stop any) { - nodes { - abs IReader - concrete Scanner - } + abs IReader + concrete Scanner + + --- + :start -> abs:v abs:v -> [concrete:v] concrete:v -> :code @@ -219,4 +222,3 @@ flow Main() () { :foo -> :bar :baz -> :bax } - diff --git a/internal/compiler/parser/smoke_test/happypath/026_mixed.neva b/internal/compiler/parser/smoke_test/happypath/026_mixed.neva index a2e70797..eee6de66 100644 --- a/internal/compiler/parser/smoke_test/happypath/026_mixed.neva +++ b/internal/compiler/parser/smoke_test/happypath/026_mixed.neva @@ -14,10 +14,9 @@ interface IReader(path string) (i int, e err) interface IWriter(path string) (i int, anything any) flow Main(start any) (stop any) { - nodes { - abs IReader - concrete Scanner - } + abs IReader + concrete Scanner + --- :start -> abs:v abs:v -> [concrete:v] concrete:v -> :code diff --git a/internal/compiler/parser/smoke_test/happypath/027_compiler_directives.neva b/internal/compiler/parser/smoke_test/happypath/027_compiler_directives.neva index 4b8762fb..8a2c50c3 100644 --- a/internal/compiler/parser/smoke_test/happypath/027_compiler_directives.neva +++ b/internal/compiler/parser/smoke_test/happypath/027_compiler_directives.neva @@ -23,8 +23,7 @@ pub flow C2(sig any) (v string) #extern(read, write) pub flow C3(v T) (v T) { - nodes { - #bind(msg) - msg Const - } + #bind(msg) + msg Const + --- } \ No newline at end of file diff --git a/std/builtin/streams.neva b/std/builtin/streams.neva index b94b8bf3..c2eae722 100644 --- a/std/builtin/streams.neva +++ b/std/builtin/streams.neva @@ -2,7 +2,8 @@ // Wait blocks until last stream item arrive, then sends signal. pub flow Wait(data stream) (sig) { - nodes { If } + If + --- :data.last -> if if:then -> :sig } @@ -25,7 +26,9 @@ pub interface IPortReducer(seq stream) (res T) // It iterates over all array-inport's slots in order and streams every message // to reducer. When all messages are processed the result is emited to outport. pub flow ReducePort([port] T) (res T) { - nodes { reducer IPortReducer, streamer StreamPort } + reducer IPortReducer + streamer StreamPort + --- :port => streamer:port streamer -> reducer -> :res } @@ -48,11 +51,11 @@ pub interface IMapHandler(data T) (res Y) // It's not recommented but possible to also produce side-effects. // But, if all you need is side-effects, use For instead. pub flow Map(data stream) (res stream) { - nodes { - fanOut FanOut> - handler IMapHandler - wrap Struct> - } + fanOut FanOut> + handler IMapHandler + wrap Struct> + + --- :data -> fanOut @@ -75,13 +78,13 @@ pub interface IForHandler(data T) (sig any) // For always sends the same stream, it's not intended for mapping. // If you need mapping (or mapping with side-effects), use Map instead. pub flow For(data stream) (data stream) { - nodes { - Lock> - handler IForHandler + Lock> + handler IForHandler + + #bind(dataPath) + getData Field - #bind(dataPath) - getData Field - } + --- :data -> [getData, lock:data] getData -> handler -> lock:sig diff --git a/std/sync/sync.neva b/std/sync/sync.neva index 69a5cd8c..889bd6f1 100644 --- a/std/sync/sync.neva +++ b/std/sync/sync.neva @@ -5,14 +5,16 @@ // WaitGroup will not output a signal until it received at least :count. // // Example: -// nodes { sync.WaitGroup } +// sync.WaitGroup +// --- // :start -> (2 -> wg:count) // task1 -> (true -> wg:sig) // task2 -> (true -> wg:sig) // wg -> :stop // Signals after both tasks are done. // // Example: -// nodes { sync.Wg } +// sync.Wg +// --- // wg -> :stop // Blocks forever. #extern(wait_group) pub flow WaitGroup(count int, sig any) (sig any) \ No newline at end of file From ba0fd78e737384f131c4a840644d2071d6d4973a Mon Sep 17 00:00:00 2001 From: Emil Valeev Date: Sat, 21 Sep 2024 16:55:39 +0500 Subject: [PATCH 2/4] feat(parser): implement `---` syntax for nodes --- .vscode/launch.json | 3 +- e2e/interface_with_imports/neva.yml | 2 +- examples/neva.yml | 2 +- .../compiler/parser/generated/neva.interp | 7 +- .../compiler/parser/generated/neva.tokens | 42 +- .../parser/generated/nevaLexer.interp | 7 +- .../parser/generated/nevaLexer.tokens | 42 +- .../parser/generated/neva_base_listener.go | 8 +- .../compiler/parser/generated/neva_lexer.go | 244 +- .../parser/generated/neva_listener.go | 8 +- .../compiler/parser/generated/neva_parser.go | 2524 ++++++++--------- internal/compiler/parser/listener_helpers.go | 4 - internal/compiler/parser/neva.g4 | 27 +- 13 files changed, 1378 insertions(+), 1542 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ed76d0c2..f5819800 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -32,7 +32,8 @@ "name": "ANTLR", "type": "antlr-debug", "request": "launch", - "input": "${workspaceFolder}/internal/compiler/parser/tests/happypath/027_compiler_directives.neva", + // "input": "${workspaceFolder}/internal/compiler/parser/tests/happypath/027_compiler_directives.neva", + "input": "${workspaceFolder}/examples/hello_world/main.neva", "grammar": "${workspaceFolder}/internal/compiler/parser/neva.g4", "startRule": "prog", "printParseTree": true, diff --git a/e2e/interface_with_imports/neva.yml b/e2e/interface_with_imports/neva.yml index a7c08be3..3fad1609 100644 --- a/e2e/interface_with_imports/neva.yml +++ b/e2e/interface_with_imports/neva.yml @@ -2,4 +2,4 @@ neva: 0.10.0 deps: github.com/nevalang/x: path: github.com/nevalang/x - version: 0.0.11 + version: 0.0.12 diff --git a/examples/neva.yml b/examples/neva.yml index a7c08be3..3fad1609 100644 --- a/examples/neva.yml +++ b/examples/neva.yml @@ -2,4 +2,4 @@ neva: 0.10.0 deps: github.com/nevalang/x: path: github.com/nevalang/x - version: 0.0.11 + version: 0.0.12 diff --git a/internal/compiler/parser/generated/neva.interp b/internal/compiler/parser/generated/neva.interp index ab082ef6..79606e22 100644 --- a/internal/compiler/parser/generated/neva.interp +++ b/internal/compiler/parser/generated/neva.interp @@ -22,12 +22,11 @@ null ']' 'const' '=' -'nil' 'true' 'false' '::' 'flow' -'nodes' +'---' '?' '->' '=>' @@ -75,7 +74,6 @@ null null null null -null COMMENT PUB_KW IDENTIFIER @@ -133,7 +131,6 @@ constStmt constDef constLit primitiveConstLit -nil bool enumLit listLit @@ -176,4 +173,4 @@ multipleReceiverSide atn: -[4, 1, 41, 1028, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 1, 0, 1, 0, 1, 0, 5, 0, 176, 8, 0, 10, 0, 12, 0, 179, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 188, 8, 1, 1, 2, 1, 2, 1, 2, 4, 2, 193, 8, 2, 11, 2, 12, 2, 194, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 206, 8, 4, 10, 4, 12, 4, 209, 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 214, 8, 5, 11, 5, 12, 5, 215, 1, 6, 1, 6, 5, 6, 220, 8, 6, 10, 6, 12, 6, 223, 9, 6, 1, 6, 1, 6, 5, 6, 227, 8, 6, 10, 6, 12, 6, 230, 9, 6, 1, 6, 5, 6, 233, 8, 6, 10, 6, 12, 6, 236, 9, 6, 1, 6, 1, 6, 1, 7, 3, 7, 241, 8, 7, 1, 7, 1, 7, 3, 7, 245, 8, 7, 1, 7, 5, 7, 248, 8, 7, 10, 7, 12, 7, 251, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 258, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 264, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 270, 8, 11, 10, 11, 12, 11, 273, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 280, 8, 13, 10, 13, 12, 13, 283, 9, 13, 1, 14, 1, 14, 3, 14, 287, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 3, 19, 300, 8, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 307, 8, 20, 1, 20, 3, 20, 310, 8, 20, 1, 20, 3, 20, 313, 8, 20, 1, 21, 1, 21, 5, 21, 317, 8, 21, 10, 21, 12, 21, 320, 9, 21, 1, 21, 3, 21, 323, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 5, 22, 330, 8, 22, 10, 22, 12, 22, 333, 9, 22, 1, 22, 5, 22, 336, 8, 22, 10, 22, 12, 22, 339, 9, 22, 1, 23, 1, 23, 3, 23, 343, 8, 23, 1, 23, 5, 23, 346, 8, 23, 10, 23, 12, 23, 349, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 354, 8, 24, 1, 25, 1, 25, 3, 25, 358, 8, 25, 1, 26, 1, 26, 5, 26, 362, 8, 26, 10, 26, 12, 26, 365, 9, 26, 1, 26, 1, 26, 1, 26, 5, 26, 370, 8, 26, 10, 26, 12, 26, 373, 9, 26, 1, 26, 5, 26, 376, 8, 26, 10, 26, 12, 26, 379, 9, 26, 1, 26, 5, 26, 382, 8, 26, 10, 26, 12, 26, 385, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 391, 8, 27, 1, 28, 1, 28, 5, 28, 395, 8, 28, 10, 28, 12, 28, 398, 9, 28, 1, 28, 1, 28, 5, 28, 402, 8, 28, 10, 28, 12, 28, 405, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 410, 8, 28, 10, 28, 12, 28, 413, 9, 28, 1, 28, 5, 28, 416, 8, 28, 10, 28, 12, 28, 419, 9, 28, 1, 28, 5, 28, 422, 8, 28, 10, 28, 12, 28, 425, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 5, 29, 431, 8, 29, 10, 29, 12, 29, 434, 9, 29, 1, 29, 1, 29, 5, 29, 438, 8, 29, 10, 29, 12, 29, 441, 9, 29, 1, 29, 3, 29, 444, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 4, 30, 450, 8, 30, 11, 30, 12, 30, 451, 1, 30, 5, 30, 455, 8, 30, 10, 30, 12, 30, 458, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 463, 8, 31, 10, 31, 12, 31, 466, 9, 31, 1, 32, 1, 32, 5, 32, 470, 8, 32, 10, 32, 12, 32, 473, 9, 32, 1, 32, 1, 32, 5, 32, 477, 8, 32, 10, 32, 12, 32, 480, 9, 32, 1, 32, 4, 32, 483, 8, 32, 11, 32, 12, 32, 484, 1, 33, 1, 33, 3, 33, 489, 8, 33, 1, 34, 3, 34, 492, 8, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 499, 8, 35, 1, 35, 1, 35, 1, 35, 5, 35, 504, 8, 35, 10, 35, 12, 35, 507, 9, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 515, 8, 38, 10, 38, 12, 38, 518, 9, 38, 1, 38, 3, 38, 521, 8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 526, 8, 38, 10, 38, 12, 38, 529, 9, 38, 3, 38, 531, 8, 38, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 537, 8, 39, 1, 40, 5, 40, 540, 8, 40, 10, 40, 12, 40, 543, 9, 40, 1, 40, 1, 40, 3, 40, 547, 8, 40, 1, 40, 5, 40, 550, 8, 40, 10, 40, 12, 40, 553, 9, 40, 1, 41, 5, 41, 556, 8, 41, 10, 41, 12, 41, 559, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 565, 8, 41, 1, 41, 5, 41, 568, 8, 41, 10, 41, 12, 41, 571, 9, 41, 1, 42, 3, 42, 574, 8, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 584, 8, 43, 1, 43, 5, 43, 587, 8, 43, 10, 43, 12, 43, 590, 9, 43, 1, 44, 1, 44, 1, 44, 3, 44, 595, 8, 44, 1, 44, 1, 44, 3, 44, 599, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 606, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 611, 8, 45, 1, 45, 1, 45, 3, 45, 615, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 620, 8, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 5, 49, 632, 8, 49, 10, 49, 12, 49, 635, 9, 49, 1, 49, 3, 49, 638, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 646, 8, 50, 10, 50, 12, 50, 649, 9, 50, 1, 50, 1, 50, 5, 50, 653, 8, 50, 10, 50, 12, 50, 656, 9, 50, 5, 50, 658, 8, 50, 10, 50, 12, 50, 661, 9, 50, 3, 50, 663, 8, 50, 1, 51, 1, 51, 3, 51, 667, 8, 51, 1, 52, 1, 52, 5, 52, 671, 8, 52, 10, 52, 12, 52, 674, 9, 52, 1, 52, 3, 52, 677, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 5, 53, 684, 8, 53, 10, 53, 12, 53, 687, 9, 53, 1, 53, 5, 53, 690, 8, 53, 10, 53, 12, 53, 693, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 699, 8, 54, 10, 54, 12, 54, 702, 9, 54, 1, 55, 3, 55, 705, 8, 55, 1, 55, 3, 55, 708, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 715, 8, 56, 1, 56, 5, 56, 718, 8, 56, 10, 56, 12, 56, 721, 9, 56, 1, 57, 1, 57, 5, 57, 725, 8, 57, 10, 57, 12, 57, 728, 9, 57, 1, 57, 1, 57, 5, 57, 732, 8, 57, 10, 57, 12, 57, 735, 9, 57, 5, 57, 737, 8, 57, 10, 57, 12, 57, 740, 9, 57, 1, 57, 1, 57, 5, 57, 744, 8, 57, 10, 57, 12, 57, 747, 9, 57, 3, 57, 749, 8, 57, 1, 57, 1, 57, 5, 57, 753, 8, 57, 10, 57, 12, 57, 756, 9, 57, 5, 57, 758, 8, 57, 10, 57, 12, 57, 761, 9, 57, 1, 57, 1, 57, 5, 57, 765, 8, 57, 10, 57, 12, 57, 768, 9, 57, 3, 57, 770, 8, 57, 1, 57, 1, 57, 5, 57, 774, 8, 57, 10, 57, 12, 57, 777, 9, 57, 5, 57, 779, 8, 57, 10, 57, 12, 57, 782, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 5, 58, 788, 8, 58, 10, 58, 12, 58, 791, 9, 58, 1, 58, 1, 58, 1, 59, 1, 59, 5, 59, 797, 8, 59, 10, 59, 12, 59, 800, 9, 59, 1, 59, 1, 59, 3, 59, 804, 8, 59, 1, 59, 3, 59, 807, 8, 59, 1, 59, 5, 59, 810, 8, 59, 10, 59, 12, 59, 813, 9, 59, 5, 59, 815, 8, 59, 10, 59, 12, 59, 818, 9, 59, 1, 59, 1, 59, 1, 60, 3, 60, 823, 8, 60, 1, 60, 3, 60, 826, 8, 60, 1, 60, 1, 60, 1, 61, 1, 61, 5, 61, 832, 8, 61, 10, 61, 12, 61, 835, 9, 61, 1, 61, 3, 61, 838, 8, 61, 1, 61, 3, 61, 841, 8, 61, 1, 61, 5, 61, 844, 8, 61, 10, 61, 12, 61, 847, 9, 61, 1, 61, 3, 61, 850, 8, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 858, 8, 64, 1, 64, 5, 64, 861, 8, 64, 10, 64, 12, 64, 864, 9, 64, 1, 64, 1, 64, 3, 64, 868, 8, 64, 5, 64, 870, 8, 64, 10, 64, 12, 64, 873, 9, 64, 1, 65, 1, 65, 3, 65, 877, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 885, 8, 67, 1, 68, 1, 68, 5, 68, 889, 8, 68, 10, 68, 12, 68, 892, 9, 68, 1, 68, 1, 68, 1, 68, 5, 68, 897, 8, 68, 10, 68, 12, 68, 900, 9, 68, 1, 68, 1, 68, 5, 68, 904, 8, 68, 10, 68, 12, 68, 907, 9, 68, 5, 68, 909, 8, 68, 10, 68, 12, 68, 912, 9, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 923, 8, 70, 1, 70, 3, 70, 926, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 931, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 5, 73, 937, 8, 73, 10, 73, 12, 73, 940, 9, 73, 1, 73, 1, 73, 5, 73, 944, 8, 73, 10, 73, 12, 73, 947, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 958, 8, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 3, 78, 966, 8, 78, 1, 78, 1, 78, 1, 78, 1, 79, 3, 79, 972, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 990, 8, 83, 10, 83, 12, 83, 993, 9, 83, 1, 84, 1, 84, 3, 84, 997, 8, 84, 1, 85, 1, 85, 5, 85, 1001, 8, 85, 10, 85, 12, 85, 1004, 9, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1009, 8, 85, 10, 85, 12, 85, 1012, 9, 85, 1, 85, 1, 85, 5, 85, 1016, 8, 85, 10, 85, 12, 85, 1019, 9, 85, 5, 85, 1021, 8, 85, 10, 85, 12, 85, 1024, 9, 85, 1, 85, 1, 85, 1, 85, 0, 0, 86, 0, 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, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1098, 0, 177, 1, 0, 0, 0, 2, 187, 1, 0, 0, 0, 4, 192, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 213, 1, 0, 0, 0, 12, 217, 1, 0, 0, 0, 14, 240, 1, 0, 0, 0, 16, 252, 1, 0, 0, 0, 18, 257, 1, 0, 0, 0, 20, 263, 1, 0, 0, 0, 22, 265, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 276, 1, 0, 0, 0, 28, 286, 1, 0, 0, 0, 30, 288, 1, 0, 0, 0, 32, 290, 1, 0, 0, 0, 34, 294, 1, 0, 0, 0, 36, 296, 1, 0, 0, 0, 38, 299, 1, 0, 0, 0, 40, 304, 1, 0, 0, 0, 42, 314, 1, 0, 0, 0, 44, 326, 1, 0, 0, 0, 46, 340, 1, 0, 0, 0, 48, 353, 1, 0, 0, 0, 50, 355, 1, 0, 0, 0, 52, 359, 1, 0, 0, 0, 54, 390, 1, 0, 0, 0, 56, 392, 1, 0, 0, 0, 58, 428, 1, 0, 0, 0, 60, 447, 1, 0, 0, 0, 62, 459, 1, 0, 0, 0, 64, 467, 1, 0, 0, 0, 66, 488, 1, 0, 0, 0, 68, 491, 1, 0, 0, 0, 70, 496, 1, 0, 0, 0, 72, 508, 1, 0, 0, 0, 74, 510, 1, 0, 0, 0, 76, 512, 1, 0, 0, 0, 78, 536, 1, 0, 0, 0, 80, 541, 1, 0, 0, 0, 82, 557, 1, 0, 0, 0, 84, 573, 1, 0, 0, 0, 86, 578, 1, 0, 0, 0, 88, 605, 1, 0, 0, 0, 90, 619, 1, 0, 0, 0, 92, 621, 1, 0, 0, 0, 94, 623, 1, 0, 0, 0, 96, 625, 1, 0, 0, 0, 98, 629, 1, 0, 0, 0, 100, 662, 1, 0, 0, 0, 102, 666, 1, 0, 0, 0, 104, 668, 1, 0, 0, 0, 106, 680, 1, 0, 0, 0, 108, 694, 1, 0, 0, 0, 110, 704, 1, 0, 0, 0, 112, 712, 1, 0, 0, 0, 114, 722, 1, 0, 0, 0, 116, 785, 1, 0, 0, 0, 118, 794, 1, 0, 0, 0, 120, 822, 1, 0, 0, 0, 122, 829, 1, 0, 0, 0, 124, 851, 1, 0, 0, 0, 126, 853, 1, 0, 0, 0, 128, 857, 1, 0, 0, 0, 130, 876, 1, 0, 0, 0, 132, 878, 1, 0, 0, 0, 134, 884, 1, 0, 0, 0, 136, 886, 1, 0, 0, 0, 138, 915, 1, 0, 0, 0, 140, 922, 1, 0, 0, 0, 142, 930, 1, 0, 0, 0, 144, 932, 1, 0, 0, 0, 146, 934, 1, 0, 0, 0, 148, 950, 1, 0, 0, 0, 150, 957, 1, 0, 0, 0, 152, 959, 1, 0, 0, 0, 154, 961, 1, 0, 0, 0, 156, 965, 1, 0, 0, 0, 158, 971, 1, 0, 0, 0, 160, 977, 1, 0, 0, 0, 162, 979, 1, 0, 0, 0, 164, 981, 1, 0, 0, 0, 166, 985, 1, 0, 0, 0, 168, 996, 1, 0, 0, 0, 170, 998, 1, 0, 0, 0, 172, 176, 5, 40, 0, 0, 173, 176, 5, 33, 0, 0, 174, 176, 3, 2, 1, 0, 175, 172, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 174, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 181, 5, 0, 0, 1, 181, 1, 1, 0, 0, 0, 182, 188, 3, 12, 6, 0, 183, 188, 3, 38, 19, 0, 184, 188, 3, 68, 34, 0, 185, 188, 3, 84, 42, 0, 186, 188, 3, 110, 55, 0, 187, 182, 1, 0, 0, 0, 187, 183, 1, 0, 0, 0, 187, 184, 1, 0, 0, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 188, 3, 1, 0, 0, 0, 189, 190, 3, 6, 3, 0, 190, 191, 5, 40, 0, 0, 191, 193, 1, 0, 0, 0, 192, 189, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 5, 1, 0, 0, 0, 196, 197, 5, 1, 0, 0, 197, 199, 5, 35, 0, 0, 198, 200, 3, 8, 4, 0, 199, 198, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 2, 0, 0, 202, 207, 3, 10, 5, 0, 203, 204, 5, 3, 0, 0, 204, 206, 3, 10, 5, 0, 205, 203, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 210, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 211, 5, 4, 0, 0, 211, 9, 1, 0, 0, 0, 212, 214, 5, 35, 0, 0, 213, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 11, 1, 0, 0, 0, 217, 221, 5, 5, 0, 0, 218, 220, 5, 40, 0, 0, 219, 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 228, 5, 6, 0, 0, 225, 227, 5, 40, 0, 0, 226, 225, 1, 0, 0, 0, 227, 230, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 234, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 231, 233, 3, 14, 7, 0, 232, 231, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 237, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 238, 5, 7, 0, 0, 238, 13, 1, 0, 0, 0, 239, 241, 3, 16, 8, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 244, 3, 18, 9, 0, 243, 245, 5, 3, 0, 0, 244, 243, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 249, 1, 0, 0, 0, 246, 248, 5, 40, 0, 0, 247, 246, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 15, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 253, 5, 35, 0, 0, 253, 17, 1, 0, 0, 0, 254, 255, 3, 20, 10, 0, 255, 256, 5, 8, 0, 0, 256, 258, 1, 0, 0, 0, 257, 254, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 3, 26, 13, 0, 260, 19, 1, 0, 0, 0, 261, 264, 5, 9, 0, 0, 262, 264, 3, 22, 11, 0, 263, 261, 1, 0, 0, 0, 263, 262, 1, 0, 0, 0, 264, 21, 1, 0, 0, 0, 265, 271, 5, 35, 0, 0, 266, 267, 3, 24, 12, 0, 267, 268, 5, 35, 0, 0, 268, 270, 1, 0, 0, 0, 269, 266, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 23, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 7, 0, 0, 0, 275, 25, 1, 0, 0, 0, 276, 281, 5, 35, 0, 0, 277, 278, 5, 10, 0, 0, 278, 280, 5, 35, 0, 0, 279, 277, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 27, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 284, 287, 3, 32, 16, 0, 285, 287, 3, 30, 15, 0, 286, 284, 1, 0, 0, 0, 286, 285, 1, 0, 0, 0, 287, 29, 1, 0, 0, 0, 288, 289, 5, 35, 0, 0, 289, 31, 1, 0, 0, 0, 290, 291, 3, 34, 17, 0, 291, 292, 5, 11, 0, 0, 292, 293, 3, 36, 18, 0, 293, 33, 1, 0, 0, 0, 294, 295, 5, 35, 0, 0, 295, 35, 1, 0, 0, 0, 296, 297, 5, 35, 0, 0, 297, 37, 1, 0, 0, 0, 298, 300, 5, 34, 0, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 5, 12, 0, 0, 302, 303, 3, 40, 20, 0, 303, 39, 1, 0, 0, 0, 304, 306, 5, 35, 0, 0, 305, 307, 3, 42, 21, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 309, 1, 0, 0, 0, 308, 310, 3, 48, 24, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 312, 1, 0, 0, 0, 311, 313, 5, 33, 0, 0, 312, 311, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 41, 1, 0, 0, 0, 314, 318, 5, 13, 0, 0, 315, 317, 5, 40, 0, 0, 316, 315, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 44, 22, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 325, 5, 14, 0, 0, 325, 43, 1, 0, 0, 0, 326, 337, 3, 46, 23, 0, 327, 331, 5, 3, 0, 0, 328, 330, 5, 40, 0, 0, 329, 328, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 336, 3, 46, 23, 0, 335, 327, 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 45, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 342, 5, 35, 0, 0, 341, 343, 3, 48, 24, 0, 342, 341, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 347, 1, 0, 0, 0, 344, 346, 5, 40, 0, 0, 345, 344, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 47, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 350, 354, 3, 50, 25, 0, 351, 354, 3, 54, 27, 0, 352, 354, 3, 64, 32, 0, 353, 350, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 352, 1, 0, 0, 0, 354, 49, 1, 0, 0, 0, 355, 357, 3, 28, 14, 0, 356, 358, 3, 52, 26, 0, 357, 356, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 51, 1, 0, 0, 0, 359, 363, 5, 13, 0, 0, 360, 362, 5, 40, 0, 0, 361, 360, 1, 0, 0, 0, 362, 365, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 366, 377, 3, 48, 24, 0, 367, 371, 5, 3, 0, 0, 368, 370, 5, 40, 0, 0, 369, 368, 1, 0, 0, 0, 370, 373, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 374, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 374, 376, 3, 48, 24, 0, 375, 367, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 383, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 382, 5, 40, 0, 0, 381, 380, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 386, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 386, 387, 5, 14, 0, 0, 387, 53, 1, 0, 0, 0, 388, 391, 3, 56, 28, 0, 389, 391, 3, 58, 29, 0, 390, 388, 1, 0, 0, 0, 390, 389, 1, 0, 0, 0, 391, 55, 1, 0, 0, 0, 392, 396, 5, 15, 0, 0, 393, 395, 5, 40, 0, 0, 394, 393, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 399, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 403, 5, 6, 0, 0, 400, 402, 5, 40, 0, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 417, 5, 35, 0, 0, 407, 411, 5, 3, 0, 0, 408, 410, 5, 40, 0, 0, 409, 408, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 414, 416, 5, 35, 0, 0, 415, 407, 1, 0, 0, 0, 416, 419, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 423, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 420, 422, 5, 40, 0, 0, 421, 420, 1, 0, 0, 0, 422, 425, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 426, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 426, 427, 5, 7, 0, 0, 427, 57, 1, 0, 0, 0, 428, 432, 5, 16, 0, 0, 429, 431, 5, 40, 0, 0, 430, 429, 1, 0, 0, 0, 431, 434, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 435, 439, 5, 6, 0, 0, 436, 438, 5, 40, 0, 0, 437, 436, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 444, 3, 60, 30, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 446, 5, 7, 0, 0, 446, 59, 1, 0, 0, 0, 447, 456, 3, 62, 31, 0, 448, 450, 5, 40, 0, 0, 449, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 3, 62, 31, 0, 454, 449, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 61, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 5, 35, 0, 0, 460, 464, 3, 48, 24, 0, 461, 463, 5, 40, 0, 0, 462, 461, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 63, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 482, 3, 66, 33, 0, 468, 470, 5, 40, 0, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 474, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 478, 5, 17, 0, 0, 475, 477, 5, 40, 0, 0, 476, 475, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 483, 3, 66, 33, 0, 482, 471, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 65, 1, 0, 0, 0, 486, 489, 3, 50, 25, 0, 487, 489, 3, 54, 27, 0, 488, 486, 1, 0, 0, 0, 488, 487, 1, 0, 0, 0, 489, 67, 1, 0, 0, 0, 490, 492, 5, 34, 0, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 5, 18, 0, 0, 494, 495, 3, 70, 35, 0, 495, 69, 1, 0, 0, 0, 496, 498, 5, 35, 0, 0, 497, 499, 3, 42, 21, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 72, 36, 0, 501, 505, 3, 74, 37, 0, 502, 504, 5, 40, 0, 0, 503, 502, 1, 0, 0, 0, 504, 507, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 71, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 509, 3, 76, 38, 0, 509, 73, 1, 0, 0, 0, 510, 511, 3, 76, 38, 0, 511, 75, 1, 0, 0, 0, 512, 530, 5, 2, 0, 0, 513, 515, 5, 40, 0, 0, 514, 513, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 531, 1, 0, 0, 0, 518, 516, 1, 0, 0, 0, 519, 521, 3, 78, 39, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 531, 1, 0, 0, 0, 522, 527, 3, 78, 39, 0, 523, 524, 5, 3, 0, 0, 524, 526, 3, 78, 39, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 531, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 516, 1, 0, 0, 0, 530, 520, 1, 0, 0, 0, 530, 522, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 4, 0, 0, 533, 77, 1, 0, 0, 0, 534, 537, 3, 80, 40, 0, 535, 537, 3, 82, 41, 0, 536, 534, 1, 0, 0, 0, 536, 535, 1, 0, 0, 0, 537, 79, 1, 0, 0, 0, 538, 540, 5, 40, 0, 0, 539, 538, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 544, 546, 5, 35, 0, 0, 545, 547, 3, 48, 24, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 551, 1, 0, 0, 0, 548, 550, 5, 40, 0, 0, 549, 548, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 81, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 554, 556, 5, 40, 0, 0, 555, 554, 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 560, 561, 5, 19, 0, 0, 561, 562, 5, 35, 0, 0, 562, 564, 5, 20, 0, 0, 563, 565, 3, 48, 24, 0, 564, 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 569, 1, 0, 0, 0, 566, 568, 5, 40, 0, 0, 567, 566, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 83, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 572, 574, 5, 34, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 5, 21, 0, 0, 576, 577, 3, 86, 43, 0, 577, 85, 1, 0, 0, 0, 578, 579, 5, 35, 0, 0, 579, 580, 3, 48, 24, 0, 580, 583, 5, 22, 0, 0, 581, 584, 3, 28, 14, 0, 582, 584, 3, 88, 44, 0, 583, 581, 1, 0, 0, 0, 583, 582, 1, 0, 0, 0, 584, 588, 1, 0, 0, 0, 585, 587, 5, 40, 0, 0, 586, 585, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 87, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 591, 606, 3, 92, 46, 0, 592, 606, 3, 94, 47, 0, 593, 595, 5, 37, 0, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 606, 5, 36, 0, 0, 597, 599, 5, 37, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 606, 5, 38, 0, 0, 601, 606, 5, 39, 0, 0, 602, 606, 3, 96, 48, 0, 603, 606, 3, 98, 49, 0, 604, 606, 3, 104, 52, 0, 605, 591, 1, 0, 0, 0, 605, 592, 1, 0, 0, 0, 605, 594, 1, 0, 0, 0, 605, 598, 1, 0, 0, 0, 605, 601, 1, 0, 0, 0, 605, 602, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 605, 604, 1, 0, 0, 0, 606, 89, 1, 0, 0, 0, 607, 620, 3, 92, 46, 0, 608, 620, 3, 94, 47, 0, 609, 611, 5, 37, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 620, 5, 36, 0, 0, 613, 615, 5, 37, 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 5, 38, 0, 0, 617, 620, 5, 39, 0, 0, 618, 620, 3, 96, 48, 0, 619, 607, 1, 0, 0, 0, 619, 608, 1, 0, 0, 0, 619, 610, 1, 0, 0, 0, 619, 614, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 618, 1, 0, 0, 0, 620, 91, 1, 0, 0, 0, 621, 622, 5, 23, 0, 0, 622, 93, 1, 0, 0, 0, 623, 624, 7, 1, 0, 0, 624, 95, 1, 0, 0, 0, 625, 626, 3, 28, 14, 0, 626, 627, 5, 26, 0, 0, 627, 628, 5, 35, 0, 0, 628, 97, 1, 0, 0, 0, 629, 633, 5, 19, 0, 0, 630, 632, 5, 40, 0, 0, 631, 630, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 100, 50, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 20, 0, 0, 640, 99, 1, 0, 0, 0, 641, 663, 3, 102, 51, 0, 642, 659, 3, 102, 51, 0, 643, 647, 5, 3, 0, 0, 644, 646, 5, 40, 0, 0, 645, 644, 1, 0, 0, 0, 646, 649, 1, 0, 0, 0, 647, 645, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 650, 654, 3, 102, 51, 0, 651, 653, 5, 40, 0, 0, 652, 651, 1, 0, 0, 0, 653, 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 657, 643, 1, 0, 0, 0, 658, 661, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 641, 1, 0, 0, 0, 662, 642, 1, 0, 0, 0, 663, 101, 1, 0, 0, 0, 664, 667, 3, 28, 14, 0, 665, 667, 3, 88, 44, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 103, 1, 0, 0, 0, 668, 672, 5, 6, 0, 0, 669, 671, 5, 40, 0, 0, 670, 669, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 677, 3, 106, 53, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 7, 0, 0, 679, 105, 1, 0, 0, 0, 680, 691, 3, 108, 54, 0, 681, 685, 5, 3, 0, 0, 682, 684, 5, 40, 0, 0, 683, 682, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 690, 3, 108, 54, 0, 689, 681, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 107, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 694, 695, 5, 35, 0, 0, 695, 696, 5, 8, 0, 0, 696, 700, 3, 102, 51, 0, 697, 699, 5, 40, 0, 0, 698, 697, 1, 0, 0, 0, 699, 702, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 109, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 703, 705, 3, 4, 2, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 707, 1, 0, 0, 0, 706, 708, 5, 34, 0, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 27, 0, 0, 710, 711, 3, 112, 56, 0, 711, 111, 1, 0, 0, 0, 712, 714, 3, 70, 35, 0, 713, 715, 3, 114, 57, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 719, 1, 0, 0, 0, 716, 718, 5, 40, 0, 0, 717, 716, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 113, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 726, 5, 6, 0, 0, 723, 725, 5, 40, 0, 0, 724, 723, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 738, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 729, 733, 5, 33, 0, 0, 730, 732, 5, 40, 0, 0, 731, 730, 1, 0, 0, 0, 732, 735, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 736, 729, 1, 0, 0, 0, 737, 740, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 748, 1, 0, 0, 0, 740, 738, 1, 0, 0, 0, 741, 745, 3, 116, 58, 0, 742, 744, 5, 40, 0, 0, 743, 742, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 741, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 759, 1, 0, 0, 0, 750, 754, 5, 33, 0, 0, 751, 753, 5, 40, 0, 0, 752, 751, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 750, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 769, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 762, 766, 3, 128, 64, 0, 763, 765, 5, 40, 0, 0, 764, 763, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 780, 1, 0, 0, 0, 771, 775, 5, 33, 0, 0, 772, 774, 5, 40, 0, 0, 773, 772, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 771, 1, 0, 0, 0, 779, 782, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 784, 5, 7, 0, 0, 784, 115, 1, 0, 0, 0, 785, 789, 5, 28, 0, 0, 786, 788, 5, 40, 0, 0, 787, 786, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 118, 59, 0, 793, 117, 1, 0, 0, 0, 794, 798, 5, 6, 0, 0, 795, 797, 5, 40, 0, 0, 796, 795, 1, 0, 0, 0, 797, 800, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 816, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 801, 804, 3, 120, 60, 0, 802, 804, 5, 33, 0, 0, 803, 801, 1, 0, 0, 0, 803, 802, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 807, 5, 3, 0, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 811, 1, 0, 0, 0, 808, 810, 5, 40, 0, 0, 809, 808, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 815, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 803, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 820, 5, 7, 0, 0, 820, 119, 1, 0, 0, 0, 821, 823, 3, 4, 2, 0, 822, 821, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 1, 0, 0, 0, 824, 826, 5, 35, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 3, 122, 61, 0, 828, 121, 1, 0, 0, 0, 829, 833, 3, 28, 14, 0, 830, 832, 5, 40, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 838, 3, 52, 26, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 3, 124, 62, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 845, 1, 0, 0, 0, 842, 844, 5, 40, 0, 0, 843, 842, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 850, 3, 126, 63, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 123, 1, 0, 0, 0, 851, 852, 5, 29, 0, 0, 852, 125, 1, 0, 0, 0, 853, 854, 3, 118, 59, 0, 854, 127, 1, 0, 0, 0, 855, 858, 3, 130, 65, 0, 856, 858, 5, 33, 0, 0, 857, 855, 1, 0, 0, 0, 857, 856, 1, 0, 0, 0, 858, 871, 1, 0, 0, 0, 859, 861, 5, 40, 0, 0, 860, 859, 1, 0, 0, 0, 861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 867, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 868, 3, 130, 65, 0, 866, 868, 5, 33, 0, 0, 867, 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 862, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 129, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 877, 3, 132, 66, 0, 875, 877, 3, 138, 69, 0, 876, 874, 1, 0, 0, 0, 876, 875, 1, 0, 0, 0, 877, 131, 1, 0, 0, 0, 878, 879, 3, 134, 67, 0, 879, 880, 5, 30, 0, 0, 880, 881, 3, 142, 71, 0, 881, 133, 1, 0, 0, 0, 882, 885, 3, 140, 70, 0, 883, 885, 3, 136, 68, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, 0, 885, 135, 1, 0, 0, 0, 886, 890, 5, 19, 0, 0, 887, 889, 5, 40, 0, 0, 888, 887, 1, 0, 0, 0, 889, 892, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 893, 910, 3, 140, 70, 0, 894, 898, 5, 3, 0, 0, 895, 897, 5, 40, 0, 0, 896, 895, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 905, 3, 140, 70, 0, 902, 904, 5, 40, 0, 0, 903, 902, 1, 0, 0, 0, 904, 907, 1, 0, 0, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, 1, 0, 0, 0, 908, 894, 1, 0, 0, 0, 909, 912, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 913, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 913, 914, 5, 20, 0, 0, 914, 137, 1, 0, 0, 0, 915, 916, 3, 156, 78, 0, 916, 917, 5, 31, 0, 0, 917, 918, 3, 156, 78, 0, 918, 139, 1, 0, 0, 0, 919, 923, 3, 150, 75, 0, 920, 923, 3, 148, 74, 0, 921, 923, 3, 90, 45, 0, 922, 919, 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 925, 1, 0, 0, 0, 924, 926, 3, 166, 83, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 141, 1, 0, 0, 0, 927, 931, 3, 144, 72, 0, 928, 931, 3, 168, 84, 0, 929, 931, 3, 170, 85, 0, 930, 927, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 929, 1, 0, 0, 0, 931, 143, 1, 0, 0, 0, 932, 933, 3, 132, 66, 0, 933, 145, 1, 0, 0, 0, 934, 938, 5, 2, 0, 0, 935, 937, 5, 40, 0, 0, 936, 935, 1, 0, 0, 0, 937, 940, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 941, 945, 3, 130, 65, 0, 942, 944, 5, 40, 0, 0, 943, 942, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 949, 5, 4, 0, 0, 949, 147, 1, 0, 0, 0, 950, 951, 5, 32, 0, 0, 951, 952, 3, 28, 14, 0, 952, 149, 1, 0, 0, 0, 953, 958, 3, 156, 78, 0, 954, 958, 3, 158, 79, 0, 955, 958, 3, 152, 76, 0, 956, 958, 3, 154, 77, 0, 957, 953, 1, 0, 0, 0, 957, 954, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 956, 1, 0, 0, 0, 958, 151, 1, 0, 0, 0, 959, 960, 3, 160, 80, 0, 960, 153, 1, 0, 0, 0, 961, 962, 3, 160, 80, 0, 962, 963, 3, 164, 82, 0, 963, 155, 1, 0, 0, 0, 964, 966, 3, 160, 80, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 5, 8, 0, 0, 968, 969, 3, 162, 81, 0, 969, 157, 1, 0, 0, 0, 970, 972, 3, 160, 80, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 5, 8, 0, 0, 974, 975, 3, 162, 81, 0, 975, 976, 3, 164, 82, 0, 976, 159, 1, 0, 0, 0, 977, 978, 5, 35, 0, 0, 978, 161, 1, 0, 0, 0, 979, 980, 5, 35, 0, 0, 980, 163, 1, 0, 0, 0, 981, 982, 5, 19, 0, 0, 982, 983, 5, 36, 0, 0, 983, 984, 5, 20, 0, 0, 984, 165, 1, 0, 0, 0, 985, 986, 5, 11, 0, 0, 986, 991, 5, 35, 0, 0, 987, 988, 5, 11, 0, 0, 988, 990, 5, 35, 0, 0, 989, 987, 1, 0, 0, 0, 990, 993, 1, 0, 0, 0, 991, 989, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 167, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 994, 997, 3, 150, 75, 0, 995, 997, 3, 146, 73, 0, 996, 994, 1, 0, 0, 0, 996, 995, 1, 0, 0, 0, 997, 169, 1, 0, 0, 0, 998, 1002, 5, 19, 0, 0, 999, 1001, 5, 40, 0, 0, 1000, 999, 1, 0, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 1, 0, 0, 0, 1004, 1002, 1, 0, 0, 0, 1005, 1022, 3, 168, 84, 0, 1006, 1010, 5, 3, 0, 0, 1007, 1009, 5, 40, 0, 0, 1008, 1007, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1013, 1017, 3, 168, 84, 0, 1014, 1016, 5, 40, 0, 0, 1015, 1014, 1, 0, 0, 0, 1016, 1019, 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1021, 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1020, 1006, 1, 0, 0, 0, 1021, 1024, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1026, 5, 20, 0, 0, 1026, 171, 1, 0, 0, 0, 137, 175, 177, 187, 194, 199, 207, 215, 221, 228, 234, 240, 244, 249, 257, 263, 271, 281, 286, 299, 306, 309, 312, 318, 322, 331, 337, 342, 347, 353, 357, 363, 371, 377, 383, 390, 396, 403, 411, 417, 423, 432, 439, 443, 451, 456, 464, 471, 478, 484, 488, 491, 498, 505, 516, 520, 527, 530, 536, 541, 546, 551, 557, 564, 569, 573, 583, 588, 594, 598, 605, 610, 614, 619, 633, 637, 647, 654, 659, 662, 666, 672, 676, 685, 691, 700, 704, 707, 714, 719, 726, 733, 738, 745, 748, 754, 759, 766, 769, 775, 780, 789, 798, 803, 806, 811, 816, 822, 825, 833, 837, 840, 845, 849, 857, 862, 867, 871, 876, 884, 890, 898, 905, 910, 922, 925, 930, 938, 945, 957, 965, 971, 991, 996, 1002, 1010, 1017, 1022] \ No newline at end of file +[4, 1, 40, 1019, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 1, 0, 1, 0, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 186, 8, 1, 1, 2, 1, 2, 1, 2, 4, 2, 191, 8, 2, 11, 2, 12, 2, 192, 1, 3, 1, 3, 1, 3, 3, 3, 198, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 204, 8, 4, 10, 4, 12, 4, 207, 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 212, 8, 5, 11, 5, 12, 5, 213, 1, 6, 1, 6, 5, 6, 218, 8, 6, 10, 6, 12, 6, 221, 9, 6, 1, 6, 1, 6, 5, 6, 225, 8, 6, 10, 6, 12, 6, 228, 9, 6, 1, 6, 5, 6, 231, 8, 6, 10, 6, 12, 6, 234, 9, 6, 1, 6, 1, 6, 1, 7, 3, 7, 239, 8, 7, 1, 7, 1, 7, 3, 7, 243, 8, 7, 1, 7, 5, 7, 246, 8, 7, 10, 7, 12, 7, 249, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 262, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 268, 8, 11, 10, 11, 12, 11, 271, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 278, 8, 13, 10, 13, 12, 13, 281, 9, 13, 1, 14, 1, 14, 3, 14, 285, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 3, 19, 298, 8, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 305, 8, 20, 1, 20, 3, 20, 308, 8, 20, 1, 20, 3, 20, 311, 8, 20, 1, 21, 1, 21, 5, 21, 315, 8, 21, 10, 21, 12, 21, 318, 9, 21, 1, 21, 3, 21, 321, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 5, 22, 328, 8, 22, 10, 22, 12, 22, 331, 9, 22, 1, 22, 5, 22, 334, 8, 22, 10, 22, 12, 22, 337, 9, 22, 1, 23, 1, 23, 3, 23, 341, 8, 23, 1, 23, 5, 23, 344, 8, 23, 10, 23, 12, 23, 347, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 352, 8, 24, 1, 25, 1, 25, 3, 25, 356, 8, 25, 1, 26, 1, 26, 5, 26, 360, 8, 26, 10, 26, 12, 26, 363, 9, 26, 1, 26, 1, 26, 1, 26, 5, 26, 368, 8, 26, 10, 26, 12, 26, 371, 9, 26, 1, 26, 5, 26, 374, 8, 26, 10, 26, 12, 26, 377, 9, 26, 1, 26, 5, 26, 380, 8, 26, 10, 26, 12, 26, 383, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 389, 8, 27, 1, 28, 1, 28, 5, 28, 393, 8, 28, 10, 28, 12, 28, 396, 9, 28, 1, 28, 1, 28, 5, 28, 400, 8, 28, 10, 28, 12, 28, 403, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 408, 8, 28, 10, 28, 12, 28, 411, 9, 28, 1, 28, 5, 28, 414, 8, 28, 10, 28, 12, 28, 417, 9, 28, 1, 28, 5, 28, 420, 8, 28, 10, 28, 12, 28, 423, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 5, 29, 429, 8, 29, 10, 29, 12, 29, 432, 9, 29, 1, 29, 1, 29, 5, 29, 436, 8, 29, 10, 29, 12, 29, 439, 9, 29, 1, 29, 3, 29, 442, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 4, 30, 448, 8, 30, 11, 30, 12, 30, 449, 1, 30, 5, 30, 453, 8, 30, 10, 30, 12, 30, 456, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 461, 8, 31, 10, 31, 12, 31, 464, 9, 31, 1, 32, 1, 32, 5, 32, 468, 8, 32, 10, 32, 12, 32, 471, 9, 32, 1, 32, 1, 32, 5, 32, 475, 8, 32, 10, 32, 12, 32, 478, 9, 32, 1, 32, 4, 32, 481, 8, 32, 11, 32, 12, 32, 482, 1, 33, 1, 33, 3, 33, 487, 8, 33, 1, 34, 3, 34, 490, 8, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 497, 8, 35, 1, 35, 1, 35, 1, 35, 5, 35, 502, 8, 35, 10, 35, 12, 35, 505, 9, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 513, 8, 38, 10, 38, 12, 38, 516, 9, 38, 1, 38, 3, 38, 519, 8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 524, 8, 38, 10, 38, 12, 38, 527, 9, 38, 3, 38, 529, 8, 38, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 535, 8, 39, 1, 40, 5, 40, 538, 8, 40, 10, 40, 12, 40, 541, 9, 40, 1, 40, 1, 40, 3, 40, 545, 8, 40, 1, 40, 5, 40, 548, 8, 40, 10, 40, 12, 40, 551, 9, 40, 1, 41, 5, 41, 554, 8, 41, 10, 41, 12, 41, 557, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 41, 5, 41, 566, 8, 41, 10, 41, 12, 41, 569, 9, 41, 1, 42, 3, 42, 572, 8, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 582, 8, 43, 1, 43, 5, 43, 585, 8, 43, 10, 43, 12, 43, 588, 9, 43, 1, 44, 1, 44, 3, 44, 592, 8, 44, 1, 44, 1, 44, 3, 44, 596, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 603, 8, 44, 1, 45, 1, 45, 3, 45, 607, 8, 45, 1, 45, 1, 45, 3, 45, 611, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 616, 8, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 5, 48, 626, 8, 48, 10, 48, 12, 48, 629, 9, 48, 1, 48, 3, 48, 632, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 640, 8, 49, 10, 49, 12, 49, 643, 9, 49, 1, 49, 1, 49, 5, 49, 647, 8, 49, 10, 49, 12, 49, 650, 9, 49, 5, 49, 652, 8, 49, 10, 49, 12, 49, 655, 9, 49, 3, 49, 657, 8, 49, 1, 50, 1, 50, 3, 50, 661, 8, 50, 1, 51, 1, 51, 5, 51, 665, 8, 51, 10, 51, 12, 51, 668, 9, 51, 1, 51, 3, 51, 671, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 5, 52, 678, 8, 52, 10, 52, 12, 52, 681, 9, 52, 1, 52, 5, 52, 684, 8, 52, 10, 52, 12, 52, 687, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 693, 8, 53, 10, 53, 12, 53, 696, 9, 53, 1, 54, 3, 54, 699, 8, 54, 1, 54, 3, 54, 702, 8, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 709, 8, 55, 1, 55, 5, 55, 712, 8, 55, 10, 55, 12, 55, 715, 9, 55, 1, 56, 1, 56, 5, 56, 719, 8, 56, 10, 56, 12, 56, 722, 9, 56, 1, 56, 1, 56, 5, 56, 726, 8, 56, 10, 56, 12, 56, 729, 9, 56, 5, 56, 731, 8, 56, 10, 56, 12, 56, 734, 9, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 3, 56, 743, 8, 56, 1, 56, 1, 56, 5, 56, 747, 8, 56, 10, 56, 12, 56, 750, 9, 56, 5, 56, 752, 8, 56, 10, 56, 12, 56, 755, 9, 56, 1, 56, 1, 56, 5, 56, 759, 8, 56, 10, 56, 12, 56, 762, 9, 56, 3, 56, 764, 8, 56, 1, 56, 1, 56, 5, 56, 768, 8, 56, 10, 56, 12, 56, 771, 9, 56, 5, 56, 773, 8, 56, 10, 56, 12, 56, 776, 9, 56, 1, 56, 1, 56, 1, 57, 1, 57, 4, 57, 782, 8, 57, 11, 57, 12, 57, 783, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 790, 8, 58, 1, 58, 3, 58, 793, 8, 58, 1, 58, 5, 58, 796, 8, 58, 10, 58, 12, 58, 799, 9, 58, 4, 58, 801, 8, 58, 11, 58, 12, 58, 802, 1, 59, 3, 59, 806, 8, 59, 1, 59, 3, 59, 809, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 5, 60, 815, 8, 60, 10, 60, 12, 60, 818, 9, 60, 1, 60, 3, 60, 821, 8, 60, 1, 60, 3, 60, 824, 8, 60, 1, 60, 5, 60, 827, 8, 60, 10, 60, 12, 60, 830, 9, 60, 1, 60, 3, 60, 833, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 5, 62, 839, 8, 62, 10, 62, 12, 62, 842, 9, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 849, 8, 63, 1, 63, 5, 63, 852, 8, 63, 10, 63, 12, 63, 855, 9, 63, 1, 63, 1, 63, 3, 63, 859, 8, 63, 5, 63, 861, 8, 63, 10, 63, 12, 63, 864, 9, 63, 1, 64, 1, 64, 3, 64, 868, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 876, 8, 66, 1, 67, 1, 67, 5, 67, 880, 8, 67, 10, 67, 12, 67, 883, 9, 67, 1, 67, 1, 67, 1, 67, 5, 67, 888, 8, 67, 10, 67, 12, 67, 891, 9, 67, 1, 67, 1, 67, 5, 67, 895, 8, 67, 10, 67, 12, 67, 898, 9, 67, 5, 67, 900, 8, 67, 10, 67, 12, 67, 903, 9, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 914, 8, 69, 1, 69, 3, 69, 917, 8, 69, 1, 70, 1, 70, 1, 70, 3, 70, 922, 8, 70, 1, 71, 1, 71, 1, 72, 1, 72, 5, 72, 928, 8, 72, 10, 72, 12, 72, 931, 9, 72, 1, 72, 1, 72, 5, 72, 935, 8, 72, 10, 72, 12, 72, 938, 9, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 949, 8, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 3, 77, 957, 8, 77, 1, 77, 1, 77, 1, 77, 1, 78, 3, 78, 963, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 981, 8, 82, 10, 82, 12, 82, 984, 9, 82, 1, 83, 1, 83, 3, 83, 988, 8, 83, 1, 84, 1, 84, 5, 84, 992, 8, 84, 10, 84, 12, 84, 995, 9, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1000, 8, 84, 10, 84, 12, 84, 1003, 9, 84, 1, 84, 1, 84, 5, 84, 1007, 8, 84, 10, 84, 12, 84, 1010, 9, 84, 5, 84, 1012, 8, 84, 10, 84, 12, 84, 1015, 9, 84, 1, 84, 1, 84, 1, 84, 0, 0, 85, 0, 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, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 0, 2, 1, 0, 10, 11, 1, 0, 23, 24, 1088, 0, 175, 1, 0, 0, 0, 2, 185, 1, 0, 0, 0, 4, 190, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 8, 199, 1, 0, 0, 0, 10, 211, 1, 0, 0, 0, 12, 215, 1, 0, 0, 0, 14, 238, 1, 0, 0, 0, 16, 250, 1, 0, 0, 0, 18, 255, 1, 0, 0, 0, 20, 261, 1, 0, 0, 0, 22, 263, 1, 0, 0, 0, 24, 272, 1, 0, 0, 0, 26, 274, 1, 0, 0, 0, 28, 284, 1, 0, 0, 0, 30, 286, 1, 0, 0, 0, 32, 288, 1, 0, 0, 0, 34, 292, 1, 0, 0, 0, 36, 294, 1, 0, 0, 0, 38, 297, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 312, 1, 0, 0, 0, 44, 324, 1, 0, 0, 0, 46, 338, 1, 0, 0, 0, 48, 351, 1, 0, 0, 0, 50, 353, 1, 0, 0, 0, 52, 357, 1, 0, 0, 0, 54, 388, 1, 0, 0, 0, 56, 390, 1, 0, 0, 0, 58, 426, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 457, 1, 0, 0, 0, 64, 465, 1, 0, 0, 0, 66, 486, 1, 0, 0, 0, 68, 489, 1, 0, 0, 0, 70, 494, 1, 0, 0, 0, 72, 506, 1, 0, 0, 0, 74, 508, 1, 0, 0, 0, 76, 510, 1, 0, 0, 0, 78, 534, 1, 0, 0, 0, 80, 539, 1, 0, 0, 0, 82, 555, 1, 0, 0, 0, 84, 571, 1, 0, 0, 0, 86, 576, 1, 0, 0, 0, 88, 602, 1, 0, 0, 0, 90, 615, 1, 0, 0, 0, 92, 617, 1, 0, 0, 0, 94, 619, 1, 0, 0, 0, 96, 623, 1, 0, 0, 0, 98, 656, 1, 0, 0, 0, 100, 660, 1, 0, 0, 0, 102, 662, 1, 0, 0, 0, 104, 674, 1, 0, 0, 0, 106, 688, 1, 0, 0, 0, 108, 698, 1, 0, 0, 0, 110, 706, 1, 0, 0, 0, 112, 716, 1, 0, 0, 0, 114, 779, 1, 0, 0, 0, 116, 800, 1, 0, 0, 0, 118, 805, 1, 0, 0, 0, 120, 812, 1, 0, 0, 0, 122, 834, 1, 0, 0, 0, 124, 836, 1, 0, 0, 0, 126, 848, 1, 0, 0, 0, 128, 867, 1, 0, 0, 0, 130, 869, 1, 0, 0, 0, 132, 875, 1, 0, 0, 0, 134, 877, 1, 0, 0, 0, 136, 906, 1, 0, 0, 0, 138, 913, 1, 0, 0, 0, 140, 921, 1, 0, 0, 0, 142, 923, 1, 0, 0, 0, 144, 925, 1, 0, 0, 0, 146, 941, 1, 0, 0, 0, 148, 948, 1, 0, 0, 0, 150, 950, 1, 0, 0, 0, 152, 952, 1, 0, 0, 0, 154, 956, 1, 0, 0, 0, 156, 962, 1, 0, 0, 0, 158, 968, 1, 0, 0, 0, 160, 970, 1, 0, 0, 0, 162, 972, 1, 0, 0, 0, 164, 976, 1, 0, 0, 0, 166, 987, 1, 0, 0, 0, 168, 989, 1, 0, 0, 0, 170, 174, 5, 39, 0, 0, 171, 174, 5, 32, 0, 0, 172, 174, 3, 2, 1, 0, 173, 170, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 186, 3, 12, 6, 0, 181, 186, 3, 38, 19, 0, 182, 186, 3, 68, 34, 0, 183, 186, 3, 84, 42, 0, 184, 186, 3, 108, 54, 0, 185, 180, 1, 0, 0, 0, 185, 181, 1, 0, 0, 0, 185, 182, 1, 0, 0, 0, 185, 183, 1, 0, 0, 0, 185, 184, 1, 0, 0, 0, 186, 3, 1, 0, 0, 0, 187, 188, 3, 6, 3, 0, 188, 189, 5, 39, 0, 0, 189, 191, 1, 0, 0, 0, 190, 187, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 190, 1, 0, 0, 0, 192, 193, 1, 0, 0, 0, 193, 5, 1, 0, 0, 0, 194, 195, 5, 1, 0, 0, 195, 197, 5, 34, 0, 0, 196, 198, 3, 8, 4, 0, 197, 196, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 7, 1, 0, 0, 0, 199, 200, 5, 2, 0, 0, 200, 205, 3, 10, 5, 0, 201, 202, 5, 3, 0, 0, 202, 204, 3, 10, 5, 0, 203, 201, 1, 0, 0, 0, 204, 207, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 208, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 209, 5, 4, 0, 0, 209, 9, 1, 0, 0, 0, 210, 212, 5, 34, 0, 0, 211, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 11, 1, 0, 0, 0, 215, 219, 5, 5, 0, 0, 216, 218, 5, 39, 0, 0, 217, 216, 1, 0, 0, 0, 218, 221, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 222, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 222, 226, 5, 6, 0, 0, 223, 225, 5, 39, 0, 0, 224, 223, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 232, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 231, 3, 14, 7, 0, 230, 229, 1, 0, 0, 0, 231, 234, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 235, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 235, 236, 5, 7, 0, 0, 236, 13, 1, 0, 0, 0, 237, 239, 3, 16, 8, 0, 238, 237, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 242, 3, 18, 9, 0, 241, 243, 5, 3, 0, 0, 242, 241, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 247, 1, 0, 0, 0, 244, 246, 5, 39, 0, 0, 245, 244, 1, 0, 0, 0, 246, 249, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 15, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 251, 5, 34, 0, 0, 251, 17, 1, 0, 0, 0, 252, 253, 3, 20, 10, 0, 253, 254, 5, 8, 0, 0, 254, 256, 1, 0, 0, 0, 255, 252, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 3, 26, 13, 0, 258, 19, 1, 0, 0, 0, 259, 262, 5, 9, 0, 0, 260, 262, 3, 22, 11, 0, 261, 259, 1, 0, 0, 0, 261, 260, 1, 0, 0, 0, 262, 21, 1, 0, 0, 0, 263, 269, 5, 34, 0, 0, 264, 265, 3, 24, 12, 0, 265, 266, 5, 34, 0, 0, 266, 268, 1, 0, 0, 0, 267, 264, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 23, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 7, 0, 0, 0, 273, 25, 1, 0, 0, 0, 274, 279, 5, 34, 0, 0, 275, 276, 5, 10, 0, 0, 276, 278, 5, 34, 0, 0, 277, 275, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 27, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, 282, 285, 3, 32, 16, 0, 283, 285, 3, 30, 15, 0, 284, 282, 1, 0, 0, 0, 284, 283, 1, 0, 0, 0, 285, 29, 1, 0, 0, 0, 286, 287, 5, 34, 0, 0, 287, 31, 1, 0, 0, 0, 288, 289, 3, 34, 17, 0, 289, 290, 5, 11, 0, 0, 290, 291, 3, 36, 18, 0, 291, 33, 1, 0, 0, 0, 292, 293, 5, 34, 0, 0, 293, 35, 1, 0, 0, 0, 294, 295, 5, 34, 0, 0, 295, 37, 1, 0, 0, 0, 296, 298, 5, 33, 0, 0, 297, 296, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 300, 5, 12, 0, 0, 300, 301, 3, 40, 20, 0, 301, 39, 1, 0, 0, 0, 302, 304, 5, 34, 0, 0, 303, 305, 3, 42, 21, 0, 304, 303, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 307, 1, 0, 0, 0, 306, 308, 3, 48, 24, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 310, 1, 0, 0, 0, 309, 311, 5, 32, 0, 0, 310, 309, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 41, 1, 0, 0, 0, 312, 316, 5, 13, 0, 0, 313, 315, 5, 39, 0, 0, 314, 313, 1, 0, 0, 0, 315, 318, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 319, 321, 3, 44, 22, 0, 320, 319, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 323, 5, 14, 0, 0, 323, 43, 1, 0, 0, 0, 324, 335, 3, 46, 23, 0, 325, 329, 5, 3, 0, 0, 326, 328, 5, 39, 0, 0, 327, 326, 1, 0, 0, 0, 328, 331, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 332, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 332, 334, 3, 46, 23, 0, 333, 325, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 45, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 340, 5, 34, 0, 0, 339, 341, 3, 48, 24, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 345, 1, 0, 0, 0, 342, 344, 5, 39, 0, 0, 343, 342, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 47, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 352, 3, 50, 25, 0, 349, 352, 3, 54, 27, 0, 350, 352, 3, 64, 32, 0, 351, 348, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 350, 1, 0, 0, 0, 352, 49, 1, 0, 0, 0, 353, 355, 3, 28, 14, 0, 354, 356, 3, 52, 26, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 51, 1, 0, 0, 0, 357, 361, 5, 13, 0, 0, 358, 360, 5, 39, 0, 0, 359, 358, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 364, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 375, 3, 48, 24, 0, 365, 369, 5, 3, 0, 0, 366, 368, 5, 39, 0, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 374, 3, 48, 24, 0, 373, 365, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 381, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 380, 5, 39, 0, 0, 379, 378, 1, 0, 0, 0, 380, 383, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 5, 14, 0, 0, 385, 53, 1, 0, 0, 0, 386, 389, 3, 56, 28, 0, 387, 389, 3, 58, 29, 0, 388, 386, 1, 0, 0, 0, 388, 387, 1, 0, 0, 0, 389, 55, 1, 0, 0, 0, 390, 394, 5, 15, 0, 0, 391, 393, 5, 39, 0, 0, 392, 391, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 397, 401, 5, 6, 0, 0, 398, 400, 5, 39, 0, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 415, 5, 34, 0, 0, 405, 409, 5, 3, 0, 0, 406, 408, 5, 39, 0, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 414, 5, 34, 0, 0, 413, 405, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 421, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 420, 5, 39, 0, 0, 419, 418, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 424, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 5, 7, 0, 0, 425, 57, 1, 0, 0, 0, 426, 430, 5, 16, 0, 0, 427, 429, 5, 39, 0, 0, 428, 427, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 437, 5, 6, 0, 0, 434, 436, 5, 39, 0, 0, 435, 434, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 442, 3, 60, 30, 0, 441, 440, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 5, 7, 0, 0, 444, 59, 1, 0, 0, 0, 445, 454, 3, 62, 31, 0, 446, 448, 5, 39, 0, 0, 447, 446, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 453, 3, 62, 31, 0, 452, 447, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 61, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 458, 5, 34, 0, 0, 458, 462, 3, 48, 24, 0, 459, 461, 5, 39, 0, 0, 460, 459, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 63, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 480, 3, 66, 33, 0, 466, 468, 5, 39, 0, 0, 467, 466, 1, 0, 0, 0, 468, 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 5, 17, 0, 0, 473, 475, 5, 39, 0, 0, 474, 473, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 481, 3, 66, 33, 0, 480, 469, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 65, 1, 0, 0, 0, 484, 487, 3, 50, 25, 0, 485, 487, 3, 54, 27, 0, 486, 484, 1, 0, 0, 0, 486, 485, 1, 0, 0, 0, 487, 67, 1, 0, 0, 0, 488, 490, 5, 33, 0, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 5, 18, 0, 0, 492, 493, 3, 70, 35, 0, 493, 69, 1, 0, 0, 0, 494, 496, 5, 34, 0, 0, 495, 497, 3, 42, 21, 0, 496, 495, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 3, 72, 36, 0, 499, 503, 3, 74, 37, 0, 500, 502, 5, 39, 0, 0, 501, 500, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 71, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 507, 3, 76, 38, 0, 507, 73, 1, 0, 0, 0, 508, 509, 3, 76, 38, 0, 509, 75, 1, 0, 0, 0, 510, 528, 5, 2, 0, 0, 511, 513, 5, 39, 0, 0, 512, 511, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 529, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 519, 3, 78, 39, 0, 518, 517, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 529, 1, 0, 0, 0, 520, 525, 3, 78, 39, 0, 521, 522, 5, 3, 0, 0, 522, 524, 3, 78, 39, 0, 523, 521, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 528, 514, 1, 0, 0, 0, 528, 518, 1, 0, 0, 0, 528, 520, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 5, 4, 0, 0, 531, 77, 1, 0, 0, 0, 532, 535, 3, 80, 40, 0, 533, 535, 3, 82, 41, 0, 534, 532, 1, 0, 0, 0, 534, 533, 1, 0, 0, 0, 535, 79, 1, 0, 0, 0, 536, 538, 5, 39, 0, 0, 537, 536, 1, 0, 0, 0, 538, 541, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 542, 544, 5, 34, 0, 0, 543, 545, 3, 48, 24, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 549, 1, 0, 0, 0, 546, 548, 5, 39, 0, 0, 547, 546, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 81, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 554, 5, 39, 0, 0, 553, 552, 1, 0, 0, 0, 554, 557, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 558, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 558, 559, 5, 19, 0, 0, 559, 560, 5, 34, 0, 0, 560, 562, 5, 20, 0, 0, 561, 563, 3, 48, 24, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 567, 1, 0, 0, 0, 564, 566, 5, 39, 0, 0, 565, 564, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 83, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 572, 5, 33, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 5, 21, 0, 0, 574, 575, 3, 86, 43, 0, 575, 85, 1, 0, 0, 0, 576, 577, 5, 34, 0, 0, 577, 578, 3, 48, 24, 0, 578, 581, 5, 22, 0, 0, 579, 582, 3, 28, 14, 0, 580, 582, 3, 88, 44, 0, 581, 579, 1, 0, 0, 0, 581, 580, 1, 0, 0, 0, 582, 586, 1, 0, 0, 0, 583, 585, 5, 39, 0, 0, 584, 583, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 87, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 603, 3, 92, 46, 0, 590, 592, 5, 36, 0, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 603, 5, 35, 0, 0, 594, 596, 5, 36, 0, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 603, 5, 37, 0, 0, 598, 603, 5, 38, 0, 0, 599, 603, 3, 94, 47, 0, 600, 603, 3, 96, 48, 0, 601, 603, 3, 102, 51, 0, 602, 589, 1, 0, 0, 0, 602, 591, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 602, 598, 1, 0, 0, 0, 602, 599, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 601, 1, 0, 0, 0, 603, 89, 1, 0, 0, 0, 604, 616, 3, 92, 46, 0, 605, 607, 5, 36, 0, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 616, 5, 35, 0, 0, 609, 611, 5, 36, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 616, 5, 37, 0, 0, 613, 616, 5, 38, 0, 0, 614, 616, 3, 94, 47, 0, 615, 604, 1, 0, 0, 0, 615, 606, 1, 0, 0, 0, 615, 610, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 614, 1, 0, 0, 0, 616, 91, 1, 0, 0, 0, 617, 618, 7, 1, 0, 0, 618, 93, 1, 0, 0, 0, 619, 620, 3, 28, 14, 0, 620, 621, 5, 25, 0, 0, 621, 622, 5, 34, 0, 0, 622, 95, 1, 0, 0, 0, 623, 627, 5, 19, 0, 0, 624, 626, 5, 39, 0, 0, 625, 624, 1, 0, 0, 0, 626, 629, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 631, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 632, 3, 98, 49, 0, 631, 630, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 20, 0, 0, 634, 97, 1, 0, 0, 0, 635, 657, 3, 100, 50, 0, 636, 653, 3, 100, 50, 0, 637, 641, 5, 3, 0, 0, 638, 640, 5, 39, 0, 0, 639, 638, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 644, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 648, 3, 100, 50, 0, 645, 647, 5, 39, 0, 0, 646, 645, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 651, 637, 1, 0, 0, 0, 652, 655, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 657, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 635, 1, 0, 0, 0, 656, 636, 1, 0, 0, 0, 657, 99, 1, 0, 0, 0, 658, 661, 3, 28, 14, 0, 659, 661, 3, 88, 44, 0, 660, 658, 1, 0, 0, 0, 660, 659, 1, 0, 0, 0, 661, 101, 1, 0, 0, 0, 662, 666, 5, 6, 0, 0, 663, 665, 5, 39, 0, 0, 664, 663, 1, 0, 0, 0, 665, 668, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 671, 3, 104, 52, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 7, 0, 0, 673, 103, 1, 0, 0, 0, 674, 685, 3, 106, 53, 0, 675, 679, 5, 3, 0, 0, 676, 678, 5, 39, 0, 0, 677, 676, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 684, 3, 106, 53, 0, 683, 675, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 105, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 689, 5, 34, 0, 0, 689, 690, 5, 8, 0, 0, 690, 694, 3, 100, 50, 0, 691, 693, 5, 39, 0, 0, 692, 691, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 699, 3, 4, 2, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 701, 1, 0, 0, 0, 700, 702, 5, 33, 0, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 704, 5, 26, 0, 0, 704, 705, 3, 110, 55, 0, 705, 109, 1, 0, 0, 0, 706, 708, 3, 70, 35, 0, 707, 709, 3, 112, 56, 0, 708, 707, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 713, 1, 0, 0, 0, 710, 712, 5, 39, 0, 0, 711, 710, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 111, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 720, 5, 6, 0, 0, 717, 719, 5, 39, 0, 0, 718, 717, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 732, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 727, 5, 32, 0, 0, 724, 726, 5, 39, 0, 0, 725, 724, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 723, 1, 0, 0, 0, 731, 734, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 742, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 739, 3, 114, 57, 0, 736, 738, 5, 39, 0, 0, 737, 736, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 735, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 753, 1, 0, 0, 0, 744, 748, 5, 32, 0, 0, 745, 747, 5, 39, 0, 0, 746, 745, 1, 0, 0, 0, 747, 750, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 751, 744, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 763, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 760, 3, 126, 63, 0, 757, 759, 5, 39, 0, 0, 758, 757, 1, 0, 0, 0, 759, 762, 1, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 756, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 774, 1, 0, 0, 0, 765, 769, 5, 32, 0, 0, 766, 768, 5, 39, 0, 0, 767, 766, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 765, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 777, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 778, 5, 7, 0, 0, 778, 113, 1, 0, 0, 0, 779, 781, 3, 116, 58, 0, 780, 782, 5, 39, 0, 0, 781, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 5, 27, 0, 0, 786, 115, 1, 0, 0, 0, 787, 789, 3, 118, 59, 0, 788, 790, 5, 3, 0, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 793, 5, 32, 0, 0, 792, 787, 1, 0, 0, 0, 792, 791, 1, 0, 0, 0, 793, 797, 1, 0, 0, 0, 794, 796, 5, 39, 0, 0, 795, 794, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 117, 1, 0, 0, 0, 804, 806, 3, 4, 2, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 5, 34, 0, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 3, 120, 60, 0, 811, 119, 1, 0, 0, 0, 812, 816, 3, 28, 14, 0, 813, 815, 5, 39, 0, 0, 814, 813, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 821, 3, 52, 26, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 824, 3, 122, 61, 0, 823, 822, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 828, 1, 0, 0, 0, 825, 827, 5, 39, 0, 0, 826, 825, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 833, 3, 124, 62, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 121, 1, 0, 0, 0, 834, 835, 5, 28, 0, 0, 835, 123, 1, 0, 0, 0, 836, 840, 5, 6, 0, 0, 837, 839, 5, 39, 0, 0, 838, 837, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 843, 844, 3, 116, 58, 0, 844, 845, 5, 7, 0, 0, 845, 125, 1, 0, 0, 0, 846, 849, 3, 128, 64, 0, 847, 849, 5, 32, 0, 0, 848, 846, 1, 0, 0, 0, 848, 847, 1, 0, 0, 0, 849, 862, 1, 0, 0, 0, 850, 852, 5, 39, 0, 0, 851, 850, 1, 0, 0, 0, 852, 855, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 858, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 859, 3, 128, 64, 0, 857, 859, 5, 32, 0, 0, 858, 856, 1, 0, 0, 0, 858, 857, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 853, 1, 0, 0, 0, 861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 127, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 868, 3, 130, 65, 0, 866, 868, 3, 136, 68, 0, 867, 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 868, 129, 1, 0, 0, 0, 869, 870, 3, 132, 66, 0, 870, 871, 5, 29, 0, 0, 871, 872, 3, 140, 70, 0, 872, 131, 1, 0, 0, 0, 873, 876, 3, 138, 69, 0, 874, 876, 3, 134, 67, 0, 875, 873, 1, 0, 0, 0, 875, 874, 1, 0, 0, 0, 876, 133, 1, 0, 0, 0, 877, 881, 5, 19, 0, 0, 878, 880, 5, 39, 0, 0, 879, 878, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 901, 3, 138, 69, 0, 885, 889, 5, 3, 0, 0, 886, 888, 5, 39, 0, 0, 887, 886, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 896, 3, 138, 69, 0, 893, 895, 5, 39, 0, 0, 894, 893, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 885, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 904, 905, 5, 20, 0, 0, 905, 135, 1, 0, 0, 0, 906, 907, 3, 154, 77, 0, 907, 908, 5, 30, 0, 0, 908, 909, 3, 154, 77, 0, 909, 137, 1, 0, 0, 0, 910, 914, 3, 148, 74, 0, 911, 914, 3, 146, 73, 0, 912, 914, 3, 90, 45, 0, 913, 910, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 912, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 917, 3, 164, 82, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 139, 1, 0, 0, 0, 918, 922, 3, 142, 71, 0, 919, 922, 3, 166, 83, 0, 920, 922, 3, 168, 84, 0, 921, 918, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 920, 1, 0, 0, 0, 922, 141, 1, 0, 0, 0, 923, 924, 3, 130, 65, 0, 924, 143, 1, 0, 0, 0, 925, 929, 5, 2, 0, 0, 926, 928, 5, 39, 0, 0, 927, 926, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 936, 3, 128, 64, 0, 933, 935, 5, 39, 0, 0, 934, 933, 1, 0, 0, 0, 935, 938, 1, 0, 0, 0, 936, 934, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 5, 4, 0, 0, 940, 145, 1, 0, 0, 0, 941, 942, 5, 31, 0, 0, 942, 943, 3, 28, 14, 0, 943, 147, 1, 0, 0, 0, 944, 949, 3, 154, 77, 0, 945, 949, 3, 156, 78, 0, 946, 949, 3, 150, 75, 0, 947, 949, 3, 152, 76, 0, 948, 944, 1, 0, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 947, 1, 0, 0, 0, 949, 149, 1, 0, 0, 0, 950, 951, 3, 158, 79, 0, 951, 151, 1, 0, 0, 0, 952, 953, 3, 158, 79, 0, 953, 954, 3, 162, 81, 0, 954, 153, 1, 0, 0, 0, 955, 957, 3, 158, 79, 0, 956, 955, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 5, 8, 0, 0, 959, 960, 3, 160, 80, 0, 960, 155, 1, 0, 0, 0, 961, 963, 3, 158, 79, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 8, 0, 0, 965, 966, 3, 160, 80, 0, 966, 967, 3, 162, 81, 0, 967, 157, 1, 0, 0, 0, 968, 969, 5, 34, 0, 0, 969, 159, 1, 0, 0, 0, 970, 971, 5, 34, 0, 0, 971, 161, 1, 0, 0, 0, 972, 973, 5, 19, 0, 0, 973, 974, 5, 35, 0, 0, 974, 975, 5, 20, 0, 0, 975, 163, 1, 0, 0, 0, 976, 977, 5, 11, 0, 0, 977, 982, 5, 34, 0, 0, 978, 979, 5, 11, 0, 0, 979, 981, 5, 34, 0, 0, 980, 978, 1, 0, 0, 0, 981, 984, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 165, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 985, 988, 3, 148, 74, 0, 986, 988, 3, 144, 72, 0, 987, 985, 1, 0, 0, 0, 987, 986, 1, 0, 0, 0, 988, 167, 1, 0, 0, 0, 989, 993, 5, 19, 0, 0, 990, 992, 5, 39, 0, 0, 991, 990, 1, 0, 0, 0, 992, 995, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 993, 1, 0, 0, 0, 996, 1013, 3, 166, 83, 0, 997, 1001, 5, 3, 0, 0, 998, 1000, 5, 39, 0, 0, 999, 998, 1, 0, 0, 0, 1000, 1003, 1, 0, 0, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1004, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1004, 1008, 3, 166, 83, 0, 1005, 1007, 5, 39, 0, 0, 1006, 1005, 1, 0, 0, 0, 1007, 1010, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1011, 997, 1, 0, 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1017, 5, 20, 0, 0, 1017, 169, 1, 0, 0, 0, 137, 173, 175, 185, 192, 197, 205, 213, 219, 226, 232, 238, 242, 247, 255, 261, 269, 279, 284, 297, 304, 307, 310, 316, 320, 329, 335, 340, 345, 351, 355, 361, 369, 375, 381, 388, 394, 401, 409, 415, 421, 430, 437, 441, 449, 454, 462, 469, 476, 482, 486, 489, 496, 503, 514, 518, 525, 528, 534, 539, 544, 549, 555, 562, 567, 571, 581, 586, 591, 595, 602, 606, 610, 615, 627, 631, 641, 648, 653, 656, 660, 666, 670, 679, 685, 694, 698, 701, 708, 713, 720, 727, 732, 739, 742, 748, 753, 760, 763, 769, 774, 783, 789, 792, 797, 802, 805, 808, 816, 820, 823, 828, 832, 840, 848, 853, 858, 862, 867, 875, 881, 889, 896, 901, 913, 916, 921, 929, 936, 948, 956, 962, 982, 987, 993, 1001, 1008, 1013] \ No newline at end of file diff --git a/internal/compiler/parser/generated/neva.tokens b/internal/compiler/parser/generated/neva.tokens index 8c3fc116..e1e07c48 100644 --- a/internal/compiler/parser/generated/neva.tokens +++ b/internal/compiler/parser/generated/neva.tokens @@ -29,16 +29,15 @@ T__27=28 T__28=29 T__29=30 T__30=31 -T__31=32 -COMMENT=33 -PUB_KW=34 -IDENTIFIER=35 -INT=36 -MINUS=37 -FLOAT=38 -STRING=39 -NEWLINE=40 -WS=41 +COMMENT=32 +PUB_KW=33 +IDENTIFIER=34 +INT=35 +MINUS=36 +FLOAT=37 +STRING=38 +NEWLINE=39 +WS=40 '#'=1 '('=2 ','=3 @@ -61,15 +60,14 @@ WS=41 ']'=20 'const'=21 '='=22 -'nil'=23 -'true'=24 -'false'=25 -'::'=26 -'flow'=27 -'nodes'=28 -'?'=29 -'->'=30 -'=>'=31 -'$'=32 -'pub'=34 -'-'=37 +'true'=23 +'false'=24 +'::'=25 +'flow'=26 +'---'=27 +'?'=28 +'->'=29 +'=>'=30 +'$'=31 +'pub'=33 +'-'=36 diff --git a/internal/compiler/parser/generated/nevaLexer.interp b/internal/compiler/parser/generated/nevaLexer.interp index 357ae10b..682d3396 100644 --- a/internal/compiler/parser/generated/nevaLexer.interp +++ b/internal/compiler/parser/generated/nevaLexer.interp @@ -22,12 +22,11 @@ null ']' 'const' '=' -'nil' 'true' 'false' '::' 'flow' -'nodes' +'---' '?' '->' '=>' @@ -75,7 +74,6 @@ null null null null -null COMMENT PUB_KW IDENTIFIER @@ -118,7 +116,6 @@ T__27 T__28 T__29 T__30 -T__31 COMMENT PUB_KW IDENTIFIER @@ -138,4 +135,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 41, 259, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 201, 8, 32, 10, 32, 12, 32, 204, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 5, 34, 213, 8, 34, 10, 34, 12, 34, 216, 9, 34, 1, 35, 1, 35, 1, 36, 4, 36, 221, 8, 36, 11, 36, 12, 36, 222, 1, 37, 1, 37, 1, 38, 5, 38, 228, 8, 38, 10, 38, 12, 38, 231, 9, 38, 1, 38, 1, 38, 4, 38, 235, 8, 38, 11, 38, 12, 38, 236, 1, 39, 1, 39, 5, 39, 241, 8, 39, 10, 39, 12, 39, 244, 9, 39, 1, 39, 1, 39, 1, 40, 3, 40, 249, 8, 40, 1, 40, 1, 40, 1, 41, 4, 41, 254, 8, 41, 11, 41, 12, 41, 255, 1, 41, 1, 41, 1, 242, 0, 42, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 0, 73, 36, 75, 37, 77, 38, 79, 39, 81, 40, 83, 41, 1, 0, 4, 2, 0, 10, 10, 13, 13, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 9, 9, 32, 32, 266, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 1, 85, 1, 0, 0, 0, 3, 87, 1, 0, 0, 0, 5, 89, 1, 0, 0, 0, 7, 91, 1, 0, 0, 0, 9, 93, 1, 0, 0, 0, 11, 100, 1, 0, 0, 0, 13, 102, 1, 0, 0, 0, 15, 104, 1, 0, 0, 0, 17, 106, 1, 0, 0, 0, 19, 108, 1, 0, 0, 0, 21, 110, 1, 0, 0, 0, 23, 112, 1, 0, 0, 0, 25, 117, 1, 0, 0, 0, 27, 119, 1, 0, 0, 0, 29, 121, 1, 0, 0, 0, 31, 126, 1, 0, 0, 0, 33, 133, 1, 0, 0, 0, 35, 135, 1, 0, 0, 0, 37, 145, 1, 0, 0, 0, 39, 147, 1, 0, 0, 0, 41, 149, 1, 0, 0, 0, 43, 155, 1, 0, 0, 0, 45, 157, 1, 0, 0, 0, 47, 161, 1, 0, 0, 0, 49, 166, 1, 0, 0, 0, 51, 172, 1, 0, 0, 0, 53, 175, 1, 0, 0, 0, 55, 180, 1, 0, 0, 0, 57, 186, 1, 0, 0, 0, 59, 188, 1, 0, 0, 0, 61, 191, 1, 0, 0, 0, 63, 194, 1, 0, 0, 0, 65, 196, 1, 0, 0, 0, 67, 205, 1, 0, 0, 0, 69, 209, 1, 0, 0, 0, 71, 217, 1, 0, 0, 0, 73, 220, 1, 0, 0, 0, 75, 224, 1, 0, 0, 0, 77, 229, 1, 0, 0, 0, 79, 238, 1, 0, 0, 0, 81, 248, 1, 0, 0, 0, 83, 253, 1, 0, 0, 0, 85, 86, 5, 35, 0, 0, 86, 2, 1, 0, 0, 0, 87, 88, 5, 40, 0, 0, 88, 4, 1, 0, 0, 0, 89, 90, 5, 44, 0, 0, 90, 6, 1, 0, 0, 0, 91, 92, 5, 41, 0, 0, 92, 8, 1, 0, 0, 0, 93, 94, 5, 105, 0, 0, 94, 95, 5, 109, 0, 0, 95, 96, 5, 112, 0, 0, 96, 97, 5, 111, 0, 0, 97, 98, 5, 114, 0, 0, 98, 99, 5, 116, 0, 0, 99, 10, 1, 0, 0, 0, 100, 101, 5, 123, 0, 0, 101, 12, 1, 0, 0, 0, 102, 103, 5, 125, 0, 0, 103, 14, 1, 0, 0, 0, 104, 105, 5, 58, 0, 0, 105, 16, 1, 0, 0, 0, 106, 107, 5, 64, 0, 0, 107, 18, 1, 0, 0, 0, 108, 109, 5, 47, 0, 0, 109, 20, 1, 0, 0, 0, 110, 111, 5, 46, 0, 0, 111, 22, 1, 0, 0, 0, 112, 113, 5, 116, 0, 0, 113, 114, 5, 121, 0, 0, 114, 115, 5, 112, 0, 0, 115, 116, 5, 101, 0, 0, 116, 24, 1, 0, 0, 0, 117, 118, 5, 60, 0, 0, 118, 26, 1, 0, 0, 0, 119, 120, 5, 62, 0, 0, 120, 28, 1, 0, 0, 0, 121, 122, 5, 101, 0, 0, 122, 123, 5, 110, 0, 0, 123, 124, 5, 117, 0, 0, 124, 125, 5, 109, 0, 0, 125, 30, 1, 0, 0, 0, 126, 127, 5, 115, 0, 0, 127, 128, 5, 116, 0, 0, 128, 129, 5, 114, 0, 0, 129, 130, 5, 117, 0, 0, 130, 131, 5, 99, 0, 0, 131, 132, 5, 116, 0, 0, 132, 32, 1, 0, 0, 0, 133, 134, 5, 124, 0, 0, 134, 34, 1, 0, 0, 0, 135, 136, 5, 105, 0, 0, 136, 137, 5, 110, 0, 0, 137, 138, 5, 116, 0, 0, 138, 139, 5, 101, 0, 0, 139, 140, 5, 114, 0, 0, 140, 141, 5, 102, 0, 0, 141, 142, 5, 97, 0, 0, 142, 143, 5, 99, 0, 0, 143, 144, 5, 101, 0, 0, 144, 36, 1, 0, 0, 0, 145, 146, 5, 91, 0, 0, 146, 38, 1, 0, 0, 0, 147, 148, 5, 93, 0, 0, 148, 40, 1, 0, 0, 0, 149, 150, 5, 99, 0, 0, 150, 151, 5, 111, 0, 0, 151, 152, 5, 110, 0, 0, 152, 153, 5, 115, 0, 0, 153, 154, 5, 116, 0, 0, 154, 42, 1, 0, 0, 0, 155, 156, 5, 61, 0, 0, 156, 44, 1, 0, 0, 0, 157, 158, 5, 110, 0, 0, 158, 159, 5, 105, 0, 0, 159, 160, 5, 108, 0, 0, 160, 46, 1, 0, 0, 0, 161, 162, 5, 116, 0, 0, 162, 163, 5, 114, 0, 0, 163, 164, 5, 117, 0, 0, 164, 165, 5, 101, 0, 0, 165, 48, 1, 0, 0, 0, 166, 167, 5, 102, 0, 0, 167, 168, 5, 97, 0, 0, 168, 169, 5, 108, 0, 0, 169, 170, 5, 115, 0, 0, 170, 171, 5, 101, 0, 0, 171, 50, 1, 0, 0, 0, 172, 173, 5, 58, 0, 0, 173, 174, 5, 58, 0, 0, 174, 52, 1, 0, 0, 0, 175, 176, 5, 102, 0, 0, 176, 177, 5, 108, 0, 0, 177, 178, 5, 111, 0, 0, 178, 179, 5, 119, 0, 0, 179, 54, 1, 0, 0, 0, 180, 181, 5, 110, 0, 0, 181, 182, 5, 111, 0, 0, 182, 183, 5, 100, 0, 0, 183, 184, 5, 101, 0, 0, 184, 185, 5, 115, 0, 0, 185, 56, 1, 0, 0, 0, 186, 187, 5, 63, 0, 0, 187, 58, 1, 0, 0, 0, 188, 189, 5, 45, 0, 0, 189, 190, 5, 62, 0, 0, 190, 60, 1, 0, 0, 0, 191, 192, 5, 61, 0, 0, 192, 193, 5, 62, 0, 0, 193, 62, 1, 0, 0, 0, 194, 195, 5, 36, 0, 0, 195, 64, 1, 0, 0, 0, 196, 197, 5, 47, 0, 0, 197, 198, 5, 47, 0, 0, 198, 202, 1, 0, 0, 0, 199, 201, 8, 0, 0, 0, 200, 199, 1, 0, 0, 0, 201, 204, 1, 0, 0, 0, 202, 200, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 66, 1, 0, 0, 0, 204, 202, 1, 0, 0, 0, 205, 206, 5, 112, 0, 0, 206, 207, 5, 117, 0, 0, 207, 208, 5, 98, 0, 0, 208, 68, 1, 0, 0, 0, 209, 214, 3, 71, 35, 0, 210, 213, 3, 71, 35, 0, 211, 213, 3, 73, 36, 0, 212, 210, 1, 0, 0, 0, 212, 211, 1, 0, 0, 0, 213, 216, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 70, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 218, 7, 1, 0, 0, 218, 72, 1, 0, 0, 0, 219, 221, 7, 2, 0, 0, 220, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 74, 1, 0, 0, 0, 224, 225, 5, 45, 0, 0, 225, 76, 1, 0, 0, 0, 226, 228, 7, 2, 0, 0, 227, 226, 1, 0, 0, 0, 228, 231, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 232, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 232, 234, 5, 46, 0, 0, 233, 235, 7, 2, 0, 0, 234, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 78, 1, 0, 0, 0, 238, 242, 5, 39, 0, 0, 239, 241, 9, 0, 0, 0, 240, 239, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 245, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 246, 5, 39, 0, 0, 246, 80, 1, 0, 0, 0, 247, 249, 5, 13, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 10, 0, 0, 251, 82, 1, 0, 0, 0, 252, 254, 7, 3, 0, 0, 253, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 6, 41, 0, 0, 258, 84, 1, 0, 0, 0, 10, 0, 202, 212, 214, 222, 229, 236, 242, 248, 255, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 40, 251, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 193, 8, 31, 10, 31, 12, 31, 196, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 5, 33, 205, 8, 33, 10, 33, 12, 33, 208, 9, 33, 1, 34, 1, 34, 1, 35, 4, 35, 213, 8, 35, 11, 35, 12, 35, 214, 1, 36, 1, 36, 1, 37, 5, 37, 220, 8, 37, 10, 37, 12, 37, 223, 9, 37, 1, 37, 1, 37, 4, 37, 227, 8, 37, 11, 37, 12, 37, 228, 1, 38, 1, 38, 5, 38, 233, 8, 38, 10, 38, 12, 38, 236, 9, 38, 1, 38, 1, 38, 1, 39, 3, 39, 241, 8, 39, 1, 39, 1, 39, 1, 40, 4, 40, 246, 8, 40, 11, 40, 12, 40, 247, 1, 40, 1, 40, 1, 234, 0, 41, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 0, 71, 35, 73, 36, 75, 37, 77, 38, 79, 39, 81, 40, 1, 0, 4, 2, 0, 10, 10, 13, 13, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 9, 9, 32, 32, 258, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 1, 83, 1, 0, 0, 0, 3, 85, 1, 0, 0, 0, 5, 87, 1, 0, 0, 0, 7, 89, 1, 0, 0, 0, 9, 91, 1, 0, 0, 0, 11, 98, 1, 0, 0, 0, 13, 100, 1, 0, 0, 0, 15, 102, 1, 0, 0, 0, 17, 104, 1, 0, 0, 0, 19, 106, 1, 0, 0, 0, 21, 108, 1, 0, 0, 0, 23, 110, 1, 0, 0, 0, 25, 115, 1, 0, 0, 0, 27, 117, 1, 0, 0, 0, 29, 119, 1, 0, 0, 0, 31, 124, 1, 0, 0, 0, 33, 131, 1, 0, 0, 0, 35, 133, 1, 0, 0, 0, 37, 143, 1, 0, 0, 0, 39, 145, 1, 0, 0, 0, 41, 147, 1, 0, 0, 0, 43, 153, 1, 0, 0, 0, 45, 155, 1, 0, 0, 0, 47, 160, 1, 0, 0, 0, 49, 166, 1, 0, 0, 0, 51, 169, 1, 0, 0, 0, 53, 174, 1, 0, 0, 0, 55, 178, 1, 0, 0, 0, 57, 180, 1, 0, 0, 0, 59, 183, 1, 0, 0, 0, 61, 186, 1, 0, 0, 0, 63, 188, 1, 0, 0, 0, 65, 197, 1, 0, 0, 0, 67, 201, 1, 0, 0, 0, 69, 209, 1, 0, 0, 0, 71, 212, 1, 0, 0, 0, 73, 216, 1, 0, 0, 0, 75, 221, 1, 0, 0, 0, 77, 230, 1, 0, 0, 0, 79, 240, 1, 0, 0, 0, 81, 245, 1, 0, 0, 0, 83, 84, 5, 35, 0, 0, 84, 2, 1, 0, 0, 0, 85, 86, 5, 40, 0, 0, 86, 4, 1, 0, 0, 0, 87, 88, 5, 44, 0, 0, 88, 6, 1, 0, 0, 0, 89, 90, 5, 41, 0, 0, 90, 8, 1, 0, 0, 0, 91, 92, 5, 105, 0, 0, 92, 93, 5, 109, 0, 0, 93, 94, 5, 112, 0, 0, 94, 95, 5, 111, 0, 0, 95, 96, 5, 114, 0, 0, 96, 97, 5, 116, 0, 0, 97, 10, 1, 0, 0, 0, 98, 99, 5, 123, 0, 0, 99, 12, 1, 0, 0, 0, 100, 101, 5, 125, 0, 0, 101, 14, 1, 0, 0, 0, 102, 103, 5, 58, 0, 0, 103, 16, 1, 0, 0, 0, 104, 105, 5, 64, 0, 0, 105, 18, 1, 0, 0, 0, 106, 107, 5, 47, 0, 0, 107, 20, 1, 0, 0, 0, 108, 109, 5, 46, 0, 0, 109, 22, 1, 0, 0, 0, 110, 111, 5, 116, 0, 0, 111, 112, 5, 121, 0, 0, 112, 113, 5, 112, 0, 0, 113, 114, 5, 101, 0, 0, 114, 24, 1, 0, 0, 0, 115, 116, 5, 60, 0, 0, 116, 26, 1, 0, 0, 0, 117, 118, 5, 62, 0, 0, 118, 28, 1, 0, 0, 0, 119, 120, 5, 101, 0, 0, 120, 121, 5, 110, 0, 0, 121, 122, 5, 117, 0, 0, 122, 123, 5, 109, 0, 0, 123, 30, 1, 0, 0, 0, 124, 125, 5, 115, 0, 0, 125, 126, 5, 116, 0, 0, 126, 127, 5, 114, 0, 0, 127, 128, 5, 117, 0, 0, 128, 129, 5, 99, 0, 0, 129, 130, 5, 116, 0, 0, 130, 32, 1, 0, 0, 0, 131, 132, 5, 124, 0, 0, 132, 34, 1, 0, 0, 0, 133, 134, 5, 105, 0, 0, 134, 135, 5, 110, 0, 0, 135, 136, 5, 116, 0, 0, 136, 137, 5, 101, 0, 0, 137, 138, 5, 114, 0, 0, 138, 139, 5, 102, 0, 0, 139, 140, 5, 97, 0, 0, 140, 141, 5, 99, 0, 0, 141, 142, 5, 101, 0, 0, 142, 36, 1, 0, 0, 0, 143, 144, 5, 91, 0, 0, 144, 38, 1, 0, 0, 0, 145, 146, 5, 93, 0, 0, 146, 40, 1, 0, 0, 0, 147, 148, 5, 99, 0, 0, 148, 149, 5, 111, 0, 0, 149, 150, 5, 110, 0, 0, 150, 151, 5, 115, 0, 0, 151, 152, 5, 116, 0, 0, 152, 42, 1, 0, 0, 0, 153, 154, 5, 61, 0, 0, 154, 44, 1, 0, 0, 0, 155, 156, 5, 116, 0, 0, 156, 157, 5, 114, 0, 0, 157, 158, 5, 117, 0, 0, 158, 159, 5, 101, 0, 0, 159, 46, 1, 0, 0, 0, 160, 161, 5, 102, 0, 0, 161, 162, 5, 97, 0, 0, 162, 163, 5, 108, 0, 0, 163, 164, 5, 115, 0, 0, 164, 165, 5, 101, 0, 0, 165, 48, 1, 0, 0, 0, 166, 167, 5, 58, 0, 0, 167, 168, 5, 58, 0, 0, 168, 50, 1, 0, 0, 0, 169, 170, 5, 102, 0, 0, 170, 171, 5, 108, 0, 0, 171, 172, 5, 111, 0, 0, 172, 173, 5, 119, 0, 0, 173, 52, 1, 0, 0, 0, 174, 175, 5, 45, 0, 0, 175, 176, 5, 45, 0, 0, 176, 177, 5, 45, 0, 0, 177, 54, 1, 0, 0, 0, 178, 179, 5, 63, 0, 0, 179, 56, 1, 0, 0, 0, 180, 181, 5, 45, 0, 0, 181, 182, 5, 62, 0, 0, 182, 58, 1, 0, 0, 0, 183, 184, 5, 61, 0, 0, 184, 185, 5, 62, 0, 0, 185, 60, 1, 0, 0, 0, 186, 187, 5, 36, 0, 0, 187, 62, 1, 0, 0, 0, 188, 189, 5, 47, 0, 0, 189, 190, 5, 47, 0, 0, 190, 194, 1, 0, 0, 0, 191, 193, 8, 0, 0, 0, 192, 191, 1, 0, 0, 0, 193, 196, 1, 0, 0, 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 64, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 197, 198, 5, 112, 0, 0, 198, 199, 5, 117, 0, 0, 199, 200, 5, 98, 0, 0, 200, 66, 1, 0, 0, 0, 201, 206, 3, 69, 34, 0, 202, 205, 3, 69, 34, 0, 203, 205, 3, 71, 35, 0, 204, 202, 1, 0, 0, 0, 204, 203, 1, 0, 0, 0, 205, 208, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 68, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 209, 210, 7, 1, 0, 0, 210, 70, 1, 0, 0, 0, 211, 213, 7, 2, 0, 0, 212, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 72, 1, 0, 0, 0, 216, 217, 5, 45, 0, 0, 217, 74, 1, 0, 0, 0, 218, 220, 7, 2, 0, 0, 219, 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 226, 5, 46, 0, 0, 225, 227, 7, 2, 0, 0, 226, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 76, 1, 0, 0, 0, 230, 234, 5, 39, 0, 0, 231, 233, 9, 0, 0, 0, 232, 231, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 235, 237, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 238, 5, 39, 0, 0, 238, 78, 1, 0, 0, 0, 239, 241, 5, 13, 0, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 5, 10, 0, 0, 243, 80, 1, 0, 0, 0, 244, 246, 7, 3, 0, 0, 245, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 6, 40, 0, 0, 250, 82, 1, 0, 0, 0, 10, 0, 194, 204, 206, 214, 221, 228, 234, 240, 247, 1, 0, 1, 0] \ No newline at end of file diff --git a/internal/compiler/parser/generated/nevaLexer.tokens b/internal/compiler/parser/generated/nevaLexer.tokens index 8c3fc116..e1e07c48 100644 --- a/internal/compiler/parser/generated/nevaLexer.tokens +++ b/internal/compiler/parser/generated/nevaLexer.tokens @@ -29,16 +29,15 @@ T__27=28 T__28=29 T__29=30 T__30=31 -T__31=32 -COMMENT=33 -PUB_KW=34 -IDENTIFIER=35 -INT=36 -MINUS=37 -FLOAT=38 -STRING=39 -NEWLINE=40 -WS=41 +COMMENT=32 +PUB_KW=33 +IDENTIFIER=34 +INT=35 +MINUS=36 +FLOAT=37 +STRING=38 +NEWLINE=39 +WS=40 '#'=1 '('=2 ','=3 @@ -61,15 +60,14 @@ WS=41 ']'=20 'const'=21 '='=22 -'nil'=23 -'true'=24 -'false'=25 -'::'=26 -'flow'=27 -'nodes'=28 -'?'=29 -'->'=30 -'=>'=31 -'$'=32 -'pub'=34 -'-'=37 +'true'=23 +'false'=24 +'::'=25 +'flow'=26 +'---'=27 +'?'=28 +'->'=29 +'=>'=30 +'$'=31 +'pub'=33 +'-'=36 diff --git a/internal/compiler/parser/generated/neva_base_listener.go b/internal/compiler/parser/generated/neva_base_listener.go index 27581ff0..9ab59a41 100644 --- a/internal/compiler/parser/generated/neva_base_listener.go +++ b/internal/compiler/parser/generated/neva_base_listener.go @@ -1,4 +1,4 @@ -// Code generated from ./neva.g4 by ANTLR 4.13.1. DO NOT EDIT. +// Code generated from ./neva.g4 by ANTLR 4.13.2. DO NOT EDIT. package parsing // neva import "github.com/antlr4-go/antlr/v4" @@ -296,12 +296,6 @@ func (s *BasenevaListener) EnterPrimitiveConstLit(ctx *PrimitiveConstLitContext) // ExitPrimitiveConstLit is called when production primitiveConstLit is exited. func (s *BasenevaListener) ExitPrimitiveConstLit(ctx *PrimitiveConstLitContext) {} -// EnterNil is called when production nil is entered. -func (s *BasenevaListener) EnterNil(ctx *NilContext) {} - -// ExitNil is called when production nil is exited. -func (s *BasenevaListener) ExitNil(ctx *NilContext) {} - // EnterBool is called when production bool is entered. func (s *BasenevaListener) EnterBool(ctx *BoolContext) {} diff --git a/internal/compiler/parser/generated/neva_lexer.go b/internal/compiler/parser/generated/neva_lexer.go index 598d1423..4b1f303b 100644 --- a/internal/compiler/parser/generated/neva_lexer.go +++ b/internal/compiler/parser/generated/neva_lexer.go @@ -1,4 +1,4 @@ -// Code generated from ./neva.g4 by ANTLR 4.13.1. DO NOT EDIT. +// Code generated from ./neva.g4 by ANTLR 4.13.2. DO NOT EDIT. package parsing @@ -45,13 +45,12 @@ func nevalexerLexerInit() { staticData.LiteralNames = []string{ "", "'#'", "'('", "','", "')'", "'import'", "'{'", "'}'", "':'", "'@'", "'/'", "'.'", "'type'", "'<'", "'>'", "'enum'", "'struct'", "'|'", "'interface'", - "'['", "']'", "'const'", "'='", "'nil'", "'true'", "'false'", "'::'", - "'flow'", "'nodes'", "'?'", "'->'", "'=>'", "'$'", "", "'pub'", "", - "", "'-'", + "'['", "']'", "'const'", "'='", "'true'", "'false'", "'::'", "'flow'", + "'---'", "'?'", "'->'", "'=>'", "'$'", "", "'pub'", "", "", "'-'", } staticData.SymbolicNames = []string{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", "NEWLINE", "WS", } @@ -59,125 +58,121 @@ func nevalexerLexerInit() { "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8", "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16", "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24", - "T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "T__31", "COMMENT", - "PUB_KW", "IDENTIFIER", "LETTER", "INT", "MINUS", "FLOAT", "STRING", - "NEWLINE", "WS", + "T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "COMMENT", "PUB_KW", + "IDENTIFIER", "LETTER", "INT", "MINUS", "FLOAT", "STRING", "NEWLINE", + "WS", } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 0, 41, 259, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, + 4, 0, 40, 251, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, - 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, - 41, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, - 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, - 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, - 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, - 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, - 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, - 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, - 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, - 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, - 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 201, 8, 32, - 10, 32, 12, 32, 204, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, - 34, 5, 34, 213, 8, 34, 10, 34, 12, 34, 216, 9, 34, 1, 35, 1, 35, 1, 36, - 4, 36, 221, 8, 36, 11, 36, 12, 36, 222, 1, 37, 1, 37, 1, 38, 5, 38, 228, - 8, 38, 10, 38, 12, 38, 231, 9, 38, 1, 38, 1, 38, 4, 38, 235, 8, 38, 11, - 38, 12, 38, 236, 1, 39, 1, 39, 5, 39, 241, 8, 39, 10, 39, 12, 39, 244, - 9, 39, 1, 39, 1, 39, 1, 40, 3, 40, 249, 8, 40, 1, 40, 1, 40, 1, 41, 4, - 41, 254, 8, 41, 11, 41, 12, 41, 255, 1, 41, 1, 41, 1, 242, 0, 42, 1, 1, - 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, - 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, - 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, - 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 0, 73, 36, 75, 37, 77, - 38, 79, 39, 81, 40, 83, 41, 1, 0, 4, 2, 0, 10, 10, 13, 13, 3, 0, 65, 90, - 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 9, 9, 32, 32, 266, 0, 1, 1, 0, 0, - 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, - 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, - 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, - 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, - 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, - 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, - 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, - 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, - 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 73, 1, - 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, - 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 1, 85, 1, 0, 0, 0, 3, 87, 1, 0, 0, 0, 5, - 89, 1, 0, 0, 0, 7, 91, 1, 0, 0, 0, 9, 93, 1, 0, 0, 0, 11, 100, 1, 0, 0, - 0, 13, 102, 1, 0, 0, 0, 15, 104, 1, 0, 0, 0, 17, 106, 1, 0, 0, 0, 19, 108, - 1, 0, 0, 0, 21, 110, 1, 0, 0, 0, 23, 112, 1, 0, 0, 0, 25, 117, 1, 0, 0, - 0, 27, 119, 1, 0, 0, 0, 29, 121, 1, 0, 0, 0, 31, 126, 1, 0, 0, 0, 33, 133, - 1, 0, 0, 0, 35, 135, 1, 0, 0, 0, 37, 145, 1, 0, 0, 0, 39, 147, 1, 0, 0, - 0, 41, 149, 1, 0, 0, 0, 43, 155, 1, 0, 0, 0, 45, 157, 1, 0, 0, 0, 47, 161, - 1, 0, 0, 0, 49, 166, 1, 0, 0, 0, 51, 172, 1, 0, 0, 0, 53, 175, 1, 0, 0, - 0, 55, 180, 1, 0, 0, 0, 57, 186, 1, 0, 0, 0, 59, 188, 1, 0, 0, 0, 61, 191, - 1, 0, 0, 0, 63, 194, 1, 0, 0, 0, 65, 196, 1, 0, 0, 0, 67, 205, 1, 0, 0, - 0, 69, 209, 1, 0, 0, 0, 71, 217, 1, 0, 0, 0, 73, 220, 1, 0, 0, 0, 75, 224, - 1, 0, 0, 0, 77, 229, 1, 0, 0, 0, 79, 238, 1, 0, 0, 0, 81, 248, 1, 0, 0, - 0, 83, 253, 1, 0, 0, 0, 85, 86, 5, 35, 0, 0, 86, 2, 1, 0, 0, 0, 87, 88, - 5, 40, 0, 0, 88, 4, 1, 0, 0, 0, 89, 90, 5, 44, 0, 0, 90, 6, 1, 0, 0, 0, - 91, 92, 5, 41, 0, 0, 92, 8, 1, 0, 0, 0, 93, 94, 5, 105, 0, 0, 94, 95, 5, - 109, 0, 0, 95, 96, 5, 112, 0, 0, 96, 97, 5, 111, 0, 0, 97, 98, 5, 114, - 0, 0, 98, 99, 5, 116, 0, 0, 99, 10, 1, 0, 0, 0, 100, 101, 5, 123, 0, 0, - 101, 12, 1, 0, 0, 0, 102, 103, 5, 125, 0, 0, 103, 14, 1, 0, 0, 0, 104, - 105, 5, 58, 0, 0, 105, 16, 1, 0, 0, 0, 106, 107, 5, 64, 0, 0, 107, 18, - 1, 0, 0, 0, 108, 109, 5, 47, 0, 0, 109, 20, 1, 0, 0, 0, 110, 111, 5, 46, - 0, 0, 111, 22, 1, 0, 0, 0, 112, 113, 5, 116, 0, 0, 113, 114, 5, 121, 0, - 0, 114, 115, 5, 112, 0, 0, 115, 116, 5, 101, 0, 0, 116, 24, 1, 0, 0, 0, - 117, 118, 5, 60, 0, 0, 118, 26, 1, 0, 0, 0, 119, 120, 5, 62, 0, 0, 120, - 28, 1, 0, 0, 0, 121, 122, 5, 101, 0, 0, 122, 123, 5, 110, 0, 0, 123, 124, - 5, 117, 0, 0, 124, 125, 5, 109, 0, 0, 125, 30, 1, 0, 0, 0, 126, 127, 5, - 115, 0, 0, 127, 128, 5, 116, 0, 0, 128, 129, 5, 114, 0, 0, 129, 130, 5, - 117, 0, 0, 130, 131, 5, 99, 0, 0, 131, 132, 5, 116, 0, 0, 132, 32, 1, 0, - 0, 0, 133, 134, 5, 124, 0, 0, 134, 34, 1, 0, 0, 0, 135, 136, 5, 105, 0, - 0, 136, 137, 5, 110, 0, 0, 137, 138, 5, 116, 0, 0, 138, 139, 5, 101, 0, - 0, 139, 140, 5, 114, 0, 0, 140, 141, 5, 102, 0, 0, 141, 142, 5, 97, 0, - 0, 142, 143, 5, 99, 0, 0, 143, 144, 5, 101, 0, 0, 144, 36, 1, 0, 0, 0, - 145, 146, 5, 91, 0, 0, 146, 38, 1, 0, 0, 0, 147, 148, 5, 93, 0, 0, 148, - 40, 1, 0, 0, 0, 149, 150, 5, 99, 0, 0, 150, 151, 5, 111, 0, 0, 151, 152, - 5, 110, 0, 0, 152, 153, 5, 115, 0, 0, 153, 154, 5, 116, 0, 0, 154, 42, - 1, 0, 0, 0, 155, 156, 5, 61, 0, 0, 156, 44, 1, 0, 0, 0, 157, 158, 5, 110, - 0, 0, 158, 159, 5, 105, 0, 0, 159, 160, 5, 108, 0, 0, 160, 46, 1, 0, 0, - 0, 161, 162, 5, 116, 0, 0, 162, 163, 5, 114, 0, 0, 163, 164, 5, 117, 0, - 0, 164, 165, 5, 101, 0, 0, 165, 48, 1, 0, 0, 0, 166, 167, 5, 102, 0, 0, - 167, 168, 5, 97, 0, 0, 168, 169, 5, 108, 0, 0, 169, 170, 5, 115, 0, 0, - 170, 171, 5, 101, 0, 0, 171, 50, 1, 0, 0, 0, 172, 173, 5, 58, 0, 0, 173, - 174, 5, 58, 0, 0, 174, 52, 1, 0, 0, 0, 175, 176, 5, 102, 0, 0, 176, 177, - 5, 108, 0, 0, 177, 178, 5, 111, 0, 0, 178, 179, 5, 119, 0, 0, 179, 54, - 1, 0, 0, 0, 180, 181, 5, 110, 0, 0, 181, 182, 5, 111, 0, 0, 182, 183, 5, - 100, 0, 0, 183, 184, 5, 101, 0, 0, 184, 185, 5, 115, 0, 0, 185, 56, 1, - 0, 0, 0, 186, 187, 5, 63, 0, 0, 187, 58, 1, 0, 0, 0, 188, 189, 5, 45, 0, - 0, 189, 190, 5, 62, 0, 0, 190, 60, 1, 0, 0, 0, 191, 192, 5, 61, 0, 0, 192, - 193, 5, 62, 0, 0, 193, 62, 1, 0, 0, 0, 194, 195, 5, 36, 0, 0, 195, 64, - 1, 0, 0, 0, 196, 197, 5, 47, 0, 0, 197, 198, 5, 47, 0, 0, 198, 202, 1, - 0, 0, 0, 199, 201, 8, 0, 0, 0, 200, 199, 1, 0, 0, 0, 201, 204, 1, 0, 0, - 0, 202, 200, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 66, 1, 0, 0, 0, 204, - 202, 1, 0, 0, 0, 205, 206, 5, 112, 0, 0, 206, 207, 5, 117, 0, 0, 207, 208, - 5, 98, 0, 0, 208, 68, 1, 0, 0, 0, 209, 214, 3, 71, 35, 0, 210, 213, 3, - 71, 35, 0, 211, 213, 3, 73, 36, 0, 212, 210, 1, 0, 0, 0, 212, 211, 1, 0, - 0, 0, 213, 216, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, - 215, 70, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 218, 7, 1, 0, 0, 218, 72, - 1, 0, 0, 0, 219, 221, 7, 2, 0, 0, 220, 219, 1, 0, 0, 0, 221, 222, 1, 0, - 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 74, 1, 0, 0, 0, - 224, 225, 5, 45, 0, 0, 225, 76, 1, 0, 0, 0, 226, 228, 7, 2, 0, 0, 227, - 226, 1, 0, 0, 0, 228, 231, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, - 1, 0, 0, 0, 230, 232, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 232, 234, 5, 46, - 0, 0, 233, 235, 7, 2, 0, 0, 234, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, - 236, 234, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 78, 1, 0, 0, 0, 238, 242, - 5, 39, 0, 0, 239, 241, 9, 0, 0, 0, 240, 239, 1, 0, 0, 0, 241, 244, 1, 0, - 0, 0, 242, 243, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 245, 1, 0, 0, 0, - 244, 242, 1, 0, 0, 0, 245, 246, 5, 39, 0, 0, 246, 80, 1, 0, 0, 0, 247, - 249, 5, 13, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, - 1, 0, 0, 0, 250, 251, 5, 10, 0, 0, 251, 82, 1, 0, 0, 0, 252, 254, 7, 3, - 0, 0, 253, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, - 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 6, 41, 0, 0, 258, - 84, 1, 0, 0, 0, 10, 0, 202, 212, 214, 222, 229, 236, 242, 248, 255, 1, - 0, 1, 0, + 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 1, 0, 1, + 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, + 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, + 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, + 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, + 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, + 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, + 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, + 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, + 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 28, 1, 28, + 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, + 31, 193, 8, 31, 10, 31, 12, 31, 196, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, + 1, 33, 1, 33, 1, 33, 5, 33, 205, 8, 33, 10, 33, 12, 33, 208, 9, 33, 1, + 34, 1, 34, 1, 35, 4, 35, 213, 8, 35, 11, 35, 12, 35, 214, 1, 36, 1, 36, + 1, 37, 5, 37, 220, 8, 37, 10, 37, 12, 37, 223, 9, 37, 1, 37, 1, 37, 4, + 37, 227, 8, 37, 11, 37, 12, 37, 228, 1, 38, 1, 38, 5, 38, 233, 8, 38, 10, + 38, 12, 38, 236, 9, 38, 1, 38, 1, 38, 1, 39, 3, 39, 241, 8, 39, 1, 39, + 1, 39, 1, 40, 4, 40, 246, 8, 40, 11, 40, 12, 40, 247, 1, 40, 1, 40, 1, + 234, 0, 41, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, + 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, + 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, + 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 0, 71, 35, 73, + 36, 75, 37, 77, 38, 79, 39, 81, 40, 1, 0, 4, 2, 0, 10, 10, 13, 13, 3, 0, + 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 9, 9, 32, 32, 258, 0, 1, 1, + 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, + 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, + 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, + 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, + 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, + 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, + 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, + 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, + 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, + 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, + 0, 81, 1, 0, 0, 0, 1, 83, 1, 0, 0, 0, 3, 85, 1, 0, 0, 0, 5, 87, 1, 0, 0, + 0, 7, 89, 1, 0, 0, 0, 9, 91, 1, 0, 0, 0, 11, 98, 1, 0, 0, 0, 13, 100, 1, + 0, 0, 0, 15, 102, 1, 0, 0, 0, 17, 104, 1, 0, 0, 0, 19, 106, 1, 0, 0, 0, + 21, 108, 1, 0, 0, 0, 23, 110, 1, 0, 0, 0, 25, 115, 1, 0, 0, 0, 27, 117, + 1, 0, 0, 0, 29, 119, 1, 0, 0, 0, 31, 124, 1, 0, 0, 0, 33, 131, 1, 0, 0, + 0, 35, 133, 1, 0, 0, 0, 37, 143, 1, 0, 0, 0, 39, 145, 1, 0, 0, 0, 41, 147, + 1, 0, 0, 0, 43, 153, 1, 0, 0, 0, 45, 155, 1, 0, 0, 0, 47, 160, 1, 0, 0, + 0, 49, 166, 1, 0, 0, 0, 51, 169, 1, 0, 0, 0, 53, 174, 1, 0, 0, 0, 55, 178, + 1, 0, 0, 0, 57, 180, 1, 0, 0, 0, 59, 183, 1, 0, 0, 0, 61, 186, 1, 0, 0, + 0, 63, 188, 1, 0, 0, 0, 65, 197, 1, 0, 0, 0, 67, 201, 1, 0, 0, 0, 69, 209, + 1, 0, 0, 0, 71, 212, 1, 0, 0, 0, 73, 216, 1, 0, 0, 0, 75, 221, 1, 0, 0, + 0, 77, 230, 1, 0, 0, 0, 79, 240, 1, 0, 0, 0, 81, 245, 1, 0, 0, 0, 83, 84, + 5, 35, 0, 0, 84, 2, 1, 0, 0, 0, 85, 86, 5, 40, 0, 0, 86, 4, 1, 0, 0, 0, + 87, 88, 5, 44, 0, 0, 88, 6, 1, 0, 0, 0, 89, 90, 5, 41, 0, 0, 90, 8, 1, + 0, 0, 0, 91, 92, 5, 105, 0, 0, 92, 93, 5, 109, 0, 0, 93, 94, 5, 112, 0, + 0, 94, 95, 5, 111, 0, 0, 95, 96, 5, 114, 0, 0, 96, 97, 5, 116, 0, 0, 97, + 10, 1, 0, 0, 0, 98, 99, 5, 123, 0, 0, 99, 12, 1, 0, 0, 0, 100, 101, 5, + 125, 0, 0, 101, 14, 1, 0, 0, 0, 102, 103, 5, 58, 0, 0, 103, 16, 1, 0, 0, + 0, 104, 105, 5, 64, 0, 0, 105, 18, 1, 0, 0, 0, 106, 107, 5, 47, 0, 0, 107, + 20, 1, 0, 0, 0, 108, 109, 5, 46, 0, 0, 109, 22, 1, 0, 0, 0, 110, 111, 5, + 116, 0, 0, 111, 112, 5, 121, 0, 0, 112, 113, 5, 112, 0, 0, 113, 114, 5, + 101, 0, 0, 114, 24, 1, 0, 0, 0, 115, 116, 5, 60, 0, 0, 116, 26, 1, 0, 0, + 0, 117, 118, 5, 62, 0, 0, 118, 28, 1, 0, 0, 0, 119, 120, 5, 101, 0, 0, + 120, 121, 5, 110, 0, 0, 121, 122, 5, 117, 0, 0, 122, 123, 5, 109, 0, 0, + 123, 30, 1, 0, 0, 0, 124, 125, 5, 115, 0, 0, 125, 126, 5, 116, 0, 0, 126, + 127, 5, 114, 0, 0, 127, 128, 5, 117, 0, 0, 128, 129, 5, 99, 0, 0, 129, + 130, 5, 116, 0, 0, 130, 32, 1, 0, 0, 0, 131, 132, 5, 124, 0, 0, 132, 34, + 1, 0, 0, 0, 133, 134, 5, 105, 0, 0, 134, 135, 5, 110, 0, 0, 135, 136, 5, + 116, 0, 0, 136, 137, 5, 101, 0, 0, 137, 138, 5, 114, 0, 0, 138, 139, 5, + 102, 0, 0, 139, 140, 5, 97, 0, 0, 140, 141, 5, 99, 0, 0, 141, 142, 5, 101, + 0, 0, 142, 36, 1, 0, 0, 0, 143, 144, 5, 91, 0, 0, 144, 38, 1, 0, 0, 0, + 145, 146, 5, 93, 0, 0, 146, 40, 1, 0, 0, 0, 147, 148, 5, 99, 0, 0, 148, + 149, 5, 111, 0, 0, 149, 150, 5, 110, 0, 0, 150, 151, 5, 115, 0, 0, 151, + 152, 5, 116, 0, 0, 152, 42, 1, 0, 0, 0, 153, 154, 5, 61, 0, 0, 154, 44, + 1, 0, 0, 0, 155, 156, 5, 116, 0, 0, 156, 157, 5, 114, 0, 0, 157, 158, 5, + 117, 0, 0, 158, 159, 5, 101, 0, 0, 159, 46, 1, 0, 0, 0, 160, 161, 5, 102, + 0, 0, 161, 162, 5, 97, 0, 0, 162, 163, 5, 108, 0, 0, 163, 164, 5, 115, + 0, 0, 164, 165, 5, 101, 0, 0, 165, 48, 1, 0, 0, 0, 166, 167, 5, 58, 0, + 0, 167, 168, 5, 58, 0, 0, 168, 50, 1, 0, 0, 0, 169, 170, 5, 102, 0, 0, + 170, 171, 5, 108, 0, 0, 171, 172, 5, 111, 0, 0, 172, 173, 5, 119, 0, 0, + 173, 52, 1, 0, 0, 0, 174, 175, 5, 45, 0, 0, 175, 176, 5, 45, 0, 0, 176, + 177, 5, 45, 0, 0, 177, 54, 1, 0, 0, 0, 178, 179, 5, 63, 0, 0, 179, 56, + 1, 0, 0, 0, 180, 181, 5, 45, 0, 0, 181, 182, 5, 62, 0, 0, 182, 58, 1, 0, + 0, 0, 183, 184, 5, 61, 0, 0, 184, 185, 5, 62, 0, 0, 185, 60, 1, 0, 0, 0, + 186, 187, 5, 36, 0, 0, 187, 62, 1, 0, 0, 0, 188, 189, 5, 47, 0, 0, 189, + 190, 5, 47, 0, 0, 190, 194, 1, 0, 0, 0, 191, 193, 8, 0, 0, 0, 192, 191, + 1, 0, 0, 0, 193, 196, 1, 0, 0, 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, + 0, 0, 195, 64, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 197, 198, 5, 112, 0, 0, + 198, 199, 5, 117, 0, 0, 199, 200, 5, 98, 0, 0, 200, 66, 1, 0, 0, 0, 201, + 206, 3, 69, 34, 0, 202, 205, 3, 69, 34, 0, 203, 205, 3, 71, 35, 0, 204, + 202, 1, 0, 0, 0, 204, 203, 1, 0, 0, 0, 205, 208, 1, 0, 0, 0, 206, 204, + 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 68, 1, 0, 0, 0, 208, 206, 1, 0, + 0, 0, 209, 210, 7, 1, 0, 0, 210, 70, 1, 0, 0, 0, 211, 213, 7, 2, 0, 0, + 212, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, + 215, 1, 0, 0, 0, 215, 72, 1, 0, 0, 0, 216, 217, 5, 45, 0, 0, 217, 74, 1, + 0, 0, 0, 218, 220, 7, 2, 0, 0, 219, 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, + 0, 221, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, + 221, 1, 0, 0, 0, 224, 226, 5, 46, 0, 0, 225, 227, 7, 2, 0, 0, 226, 225, + 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, + 0, 0, 229, 76, 1, 0, 0, 0, 230, 234, 5, 39, 0, 0, 231, 233, 9, 0, 0, 0, + 232, 231, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 234, + 232, 1, 0, 0, 0, 235, 237, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 238, + 5, 39, 0, 0, 238, 78, 1, 0, 0, 0, 239, 241, 5, 13, 0, 0, 240, 239, 1, 0, + 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 5, 10, 0, 0, + 243, 80, 1, 0, 0, 0, 244, 246, 7, 3, 0, 0, 245, 244, 1, 0, 0, 0, 246, 247, + 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 1, 0, + 0, 0, 249, 250, 6, 40, 0, 0, 250, 82, 1, 0, 0, 0, 10, 0, 194, 204, 206, + 214, 221, 228, 234, 240, 247, 1, 0, 1, 0, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -249,14 +244,13 @@ const ( nevaLexerT__28 = 29 nevaLexerT__29 = 30 nevaLexerT__30 = 31 - nevaLexerT__31 = 32 - nevaLexerCOMMENT = 33 - nevaLexerPUB_KW = 34 - nevaLexerIDENTIFIER = 35 - nevaLexerINT = 36 - nevaLexerMINUS = 37 - nevaLexerFLOAT = 38 - nevaLexerSTRING = 39 - nevaLexerNEWLINE = 40 - nevaLexerWS = 41 + nevaLexerCOMMENT = 32 + nevaLexerPUB_KW = 33 + nevaLexerIDENTIFIER = 34 + nevaLexerINT = 35 + nevaLexerMINUS = 36 + nevaLexerFLOAT = 37 + nevaLexerSTRING = 38 + nevaLexerNEWLINE = 39 + nevaLexerWS = 40 ) diff --git a/internal/compiler/parser/generated/neva_listener.go b/internal/compiler/parser/generated/neva_listener.go index ba5d9e4e..7d4378fe 100644 --- a/internal/compiler/parser/generated/neva_listener.go +++ b/internal/compiler/parser/generated/neva_listener.go @@ -1,4 +1,4 @@ -// Code generated from ./neva.g4 by ANTLR 4.13.1. DO NOT EDIT. +// Code generated from ./neva.g4 by ANTLR 4.13.2. DO NOT EDIT. package parsing // neva import "github.com/antlr4-go/antlr/v4" @@ -145,9 +145,6 @@ type nevaListener interface { // EnterPrimitiveConstLit is called when entering the primitiveConstLit production. EnterPrimitiveConstLit(c *PrimitiveConstLitContext) - // EnterNil is called when entering the nil production. - EnterNil(c *NilContext) - // EnterBool is called when entering the bool production. EnterBool(c *BoolContext) @@ -403,9 +400,6 @@ type nevaListener interface { // ExitPrimitiveConstLit is called when exiting the primitiveConstLit production. ExitPrimitiveConstLit(c *PrimitiveConstLitContext) - // ExitNil is called when exiting the nil production. - ExitNil(c *NilContext) - // ExitBool is called when exiting the bool production. ExitBool(c *BoolContext) diff --git a/internal/compiler/parser/generated/neva_parser.go b/internal/compiler/parser/generated/neva_parser.go index 588a98b7..dad1bf54 100644 --- a/internal/compiler/parser/generated/neva_parser.go +++ b/internal/compiler/parser/generated/neva_parser.go @@ -1,4 +1,4 @@ -// Code generated from ./neva.g4 by ANTLR 4.13.1. DO NOT EDIT. +// Code generated from ./neva.g4 by ANTLR 4.13.2. DO NOT EDIT. package parsing // neva import ( @@ -34,13 +34,12 @@ func nevaParserInit() { staticData.LiteralNames = []string{ "", "'#'", "'('", "','", "')'", "'import'", "'{'", "'}'", "':'", "'@'", "'/'", "'.'", "'type'", "'<'", "'>'", "'enum'", "'struct'", "'|'", "'interface'", - "'['", "']'", "'const'", "'='", "'nil'", "'true'", "'false'", "'::'", - "'flow'", "'nodes'", "'?'", "'->'", "'=>'", "'$'", "", "'pub'", "", - "", "'-'", + "'['", "']'", "'const'", "'='", "'true'", "'false'", "'::'", "'flow'", + "'---'", "'?'", "'->'", "'=>'", "'$'", "", "'pub'", "", "", "'-'", } staticData.SymbolicNames = []string{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", "NEWLINE", "WS", } @@ -54,8 +53,8 @@ func nevaParserInit() { "structFields", "structField", "unionTypeExpr", "nonUnionTypeExpr", "interfaceStmt", "interfaceDef", "inPortsDef", "outPortsDef", "portsDef", "portDef", "singlePortDef", "arrayPortDef", "constStmt", "constDef", - "constLit", "primitiveConstLit", "nil", "bool", "enumLit", "listLit", - "listItems", "compositeItem", "structLit", "structValueFields", "structValueField", + "constLit", "primitiveConstLit", "bool", "enumLit", "listLit", "listItems", + "compositeItem", "structLit", "structValueFields", "structValueField", "compStmt", "compDef", "compBody", "compNodesDef", "compNodesDefBody", "compNodeDef", "nodeInst", "errGuard", "nodeDIArgs", "connDefList", "connDef", "normConnDef", "senderSide", "multipleSenderSide", "arrBypassConnDef", @@ -66,7 +65,7 @@ func nevaParserInit() { } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 41, 1028, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, + 4, 1, 40, 1019, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, @@ -82,460 +81,455 @@ func nevaParserInit() { 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, - 84, 7, 84, 2, 85, 7, 85, 1, 0, 1, 0, 1, 0, 5, 0, 176, 8, 0, 10, 0, 12, - 0, 179, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 188, 8, 1, - 1, 2, 1, 2, 1, 2, 4, 2, 193, 8, 2, 11, 2, 12, 2, 194, 1, 3, 1, 3, 1, 3, - 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 206, 8, 4, 10, 4, 12, 4, - 209, 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 214, 8, 5, 11, 5, 12, 5, 215, 1, 6, - 1, 6, 5, 6, 220, 8, 6, 10, 6, 12, 6, 223, 9, 6, 1, 6, 1, 6, 5, 6, 227, - 8, 6, 10, 6, 12, 6, 230, 9, 6, 1, 6, 5, 6, 233, 8, 6, 10, 6, 12, 6, 236, - 9, 6, 1, 6, 1, 6, 1, 7, 3, 7, 241, 8, 7, 1, 7, 1, 7, 3, 7, 245, 8, 7, 1, - 7, 5, 7, 248, 8, 7, 10, 7, 12, 7, 251, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, - 9, 3, 9, 258, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 264, 8, 10, 1, 11, - 1, 11, 1, 11, 1, 11, 5, 11, 270, 8, 11, 10, 11, 12, 11, 273, 9, 11, 1, - 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 280, 8, 13, 10, 13, 12, 13, 283, - 9, 13, 1, 14, 1, 14, 3, 14, 287, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, - 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 3, 19, 300, 8, 19, 1, 19, - 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 307, 8, 20, 1, 20, 3, 20, 310, 8, 20, - 1, 20, 3, 20, 313, 8, 20, 1, 21, 1, 21, 5, 21, 317, 8, 21, 10, 21, 12, - 21, 320, 9, 21, 1, 21, 3, 21, 323, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, - 22, 5, 22, 330, 8, 22, 10, 22, 12, 22, 333, 9, 22, 1, 22, 5, 22, 336, 8, - 22, 10, 22, 12, 22, 339, 9, 22, 1, 23, 1, 23, 3, 23, 343, 8, 23, 1, 23, - 5, 23, 346, 8, 23, 10, 23, 12, 23, 349, 9, 23, 1, 24, 1, 24, 1, 24, 3, - 24, 354, 8, 24, 1, 25, 1, 25, 3, 25, 358, 8, 25, 1, 26, 1, 26, 5, 26, 362, - 8, 26, 10, 26, 12, 26, 365, 9, 26, 1, 26, 1, 26, 1, 26, 5, 26, 370, 8, - 26, 10, 26, 12, 26, 373, 9, 26, 1, 26, 5, 26, 376, 8, 26, 10, 26, 12, 26, - 379, 9, 26, 1, 26, 5, 26, 382, 8, 26, 10, 26, 12, 26, 385, 9, 26, 1, 26, - 1, 26, 1, 27, 1, 27, 3, 27, 391, 8, 27, 1, 28, 1, 28, 5, 28, 395, 8, 28, - 10, 28, 12, 28, 398, 9, 28, 1, 28, 1, 28, 5, 28, 402, 8, 28, 10, 28, 12, - 28, 405, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 410, 8, 28, 10, 28, 12, 28, - 413, 9, 28, 1, 28, 5, 28, 416, 8, 28, 10, 28, 12, 28, 419, 9, 28, 1, 28, - 5, 28, 422, 8, 28, 10, 28, 12, 28, 425, 9, 28, 1, 28, 1, 28, 1, 29, 1, - 29, 5, 29, 431, 8, 29, 10, 29, 12, 29, 434, 9, 29, 1, 29, 1, 29, 5, 29, - 438, 8, 29, 10, 29, 12, 29, 441, 9, 29, 1, 29, 3, 29, 444, 8, 29, 1, 29, - 1, 29, 1, 30, 1, 30, 4, 30, 450, 8, 30, 11, 30, 12, 30, 451, 1, 30, 5, - 30, 455, 8, 30, 10, 30, 12, 30, 458, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, - 463, 8, 31, 10, 31, 12, 31, 466, 9, 31, 1, 32, 1, 32, 5, 32, 470, 8, 32, - 10, 32, 12, 32, 473, 9, 32, 1, 32, 1, 32, 5, 32, 477, 8, 32, 10, 32, 12, - 32, 480, 9, 32, 1, 32, 4, 32, 483, 8, 32, 11, 32, 12, 32, 484, 1, 33, 1, - 33, 3, 33, 489, 8, 33, 1, 34, 3, 34, 492, 8, 34, 1, 34, 1, 34, 1, 34, 1, - 35, 1, 35, 3, 35, 499, 8, 35, 1, 35, 1, 35, 1, 35, 5, 35, 504, 8, 35, 10, - 35, 12, 35, 507, 9, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, - 515, 8, 38, 10, 38, 12, 38, 518, 9, 38, 1, 38, 3, 38, 521, 8, 38, 1, 38, - 1, 38, 1, 38, 5, 38, 526, 8, 38, 10, 38, 12, 38, 529, 9, 38, 3, 38, 531, - 8, 38, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 537, 8, 39, 1, 40, 5, 40, 540, - 8, 40, 10, 40, 12, 40, 543, 9, 40, 1, 40, 1, 40, 3, 40, 547, 8, 40, 1, - 40, 5, 40, 550, 8, 40, 10, 40, 12, 40, 553, 9, 40, 1, 41, 5, 41, 556, 8, - 41, 10, 41, 12, 41, 559, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 565, - 8, 41, 1, 41, 5, 41, 568, 8, 41, 10, 41, 12, 41, 571, 9, 41, 1, 42, 3, - 42, 574, 8, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, - 3, 43, 584, 8, 43, 1, 43, 5, 43, 587, 8, 43, 10, 43, 12, 43, 590, 9, 43, - 1, 44, 1, 44, 1, 44, 3, 44, 595, 8, 44, 1, 44, 1, 44, 3, 44, 599, 8, 44, - 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 606, 8, 44, 1, 45, 1, 45, 1, - 45, 3, 45, 611, 8, 45, 1, 45, 1, 45, 3, 45, 615, 8, 45, 1, 45, 1, 45, 1, - 45, 3, 45, 620, 8, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, - 1, 48, 1, 49, 1, 49, 5, 49, 632, 8, 49, 10, 49, 12, 49, 635, 9, 49, 1, - 49, 3, 49, 638, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, - 646, 8, 50, 10, 50, 12, 50, 649, 9, 50, 1, 50, 1, 50, 5, 50, 653, 8, 50, - 10, 50, 12, 50, 656, 9, 50, 5, 50, 658, 8, 50, 10, 50, 12, 50, 661, 9, - 50, 3, 50, 663, 8, 50, 1, 51, 1, 51, 3, 51, 667, 8, 51, 1, 52, 1, 52, 5, - 52, 671, 8, 52, 10, 52, 12, 52, 674, 9, 52, 1, 52, 3, 52, 677, 8, 52, 1, - 52, 1, 52, 1, 53, 1, 53, 1, 53, 5, 53, 684, 8, 53, 10, 53, 12, 53, 687, - 9, 53, 1, 53, 5, 53, 690, 8, 53, 10, 53, 12, 53, 693, 9, 53, 1, 54, 1, - 54, 1, 54, 1, 54, 5, 54, 699, 8, 54, 10, 54, 12, 54, 702, 9, 54, 1, 55, - 3, 55, 705, 8, 55, 1, 55, 3, 55, 708, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, - 1, 56, 3, 56, 715, 8, 56, 1, 56, 5, 56, 718, 8, 56, 10, 56, 12, 56, 721, - 9, 56, 1, 57, 1, 57, 5, 57, 725, 8, 57, 10, 57, 12, 57, 728, 9, 57, 1, - 57, 1, 57, 5, 57, 732, 8, 57, 10, 57, 12, 57, 735, 9, 57, 5, 57, 737, 8, - 57, 10, 57, 12, 57, 740, 9, 57, 1, 57, 1, 57, 5, 57, 744, 8, 57, 10, 57, - 12, 57, 747, 9, 57, 3, 57, 749, 8, 57, 1, 57, 1, 57, 5, 57, 753, 8, 57, - 10, 57, 12, 57, 756, 9, 57, 5, 57, 758, 8, 57, 10, 57, 12, 57, 761, 9, - 57, 1, 57, 1, 57, 5, 57, 765, 8, 57, 10, 57, 12, 57, 768, 9, 57, 3, 57, - 770, 8, 57, 1, 57, 1, 57, 5, 57, 774, 8, 57, 10, 57, 12, 57, 777, 9, 57, - 5, 57, 779, 8, 57, 10, 57, 12, 57, 782, 9, 57, 1, 57, 1, 57, 1, 58, 1, - 58, 5, 58, 788, 8, 58, 10, 58, 12, 58, 791, 9, 58, 1, 58, 1, 58, 1, 59, - 1, 59, 5, 59, 797, 8, 59, 10, 59, 12, 59, 800, 9, 59, 1, 59, 1, 59, 3, - 59, 804, 8, 59, 1, 59, 3, 59, 807, 8, 59, 1, 59, 5, 59, 810, 8, 59, 10, - 59, 12, 59, 813, 9, 59, 5, 59, 815, 8, 59, 10, 59, 12, 59, 818, 9, 59, - 1, 59, 1, 59, 1, 60, 3, 60, 823, 8, 60, 1, 60, 3, 60, 826, 8, 60, 1, 60, - 1, 60, 1, 61, 1, 61, 5, 61, 832, 8, 61, 10, 61, 12, 61, 835, 9, 61, 1, - 61, 3, 61, 838, 8, 61, 1, 61, 3, 61, 841, 8, 61, 1, 61, 5, 61, 844, 8, - 61, 10, 61, 12, 61, 847, 9, 61, 1, 61, 3, 61, 850, 8, 61, 1, 62, 1, 62, - 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 858, 8, 64, 1, 64, 5, 64, 861, 8, 64, - 10, 64, 12, 64, 864, 9, 64, 1, 64, 1, 64, 3, 64, 868, 8, 64, 5, 64, 870, - 8, 64, 10, 64, 12, 64, 873, 9, 64, 1, 65, 1, 65, 3, 65, 877, 8, 65, 1, - 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 885, 8, 67, 1, 68, 1, 68, - 5, 68, 889, 8, 68, 10, 68, 12, 68, 892, 9, 68, 1, 68, 1, 68, 1, 68, 5, - 68, 897, 8, 68, 10, 68, 12, 68, 900, 9, 68, 1, 68, 1, 68, 5, 68, 904, 8, - 68, 10, 68, 12, 68, 907, 9, 68, 5, 68, 909, 8, 68, 10, 68, 12, 68, 912, - 9, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, - 70, 923, 8, 70, 1, 70, 3, 70, 926, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 931, - 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 5, 73, 937, 8, 73, 10, 73, 12, 73, 940, - 9, 73, 1, 73, 1, 73, 5, 73, 944, 8, 73, 10, 73, 12, 73, 947, 9, 73, 1, - 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 958, - 8, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 3, 78, 966, 8, 78, 1, - 78, 1, 78, 1, 78, 1, 79, 3, 79, 972, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, - 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, - 83, 1, 83, 5, 83, 990, 8, 83, 10, 83, 12, 83, 993, 9, 83, 1, 84, 1, 84, - 3, 84, 997, 8, 84, 1, 85, 1, 85, 5, 85, 1001, 8, 85, 10, 85, 12, 85, 1004, - 9, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1009, 8, 85, 10, 85, 12, 85, 1012, 9, - 85, 1, 85, 1, 85, 5, 85, 1016, 8, 85, 10, 85, 12, 85, 1019, 9, 85, 5, 85, - 1021, 8, 85, 10, 85, 12, 85, 1024, 9, 85, 1, 85, 1, 85, 1, 85, 0, 0, 86, + 84, 7, 84, 1, 0, 1, 0, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, + 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 186, 8, 1, 1, 2, 1, 2, + 1, 2, 4, 2, 191, 8, 2, 11, 2, 12, 2, 192, 1, 3, 1, 3, 1, 3, 3, 3, 198, + 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 204, 8, 4, 10, 4, 12, 4, 207, 9, 4, + 1, 4, 1, 4, 1, 5, 4, 5, 212, 8, 5, 11, 5, 12, 5, 213, 1, 6, 1, 6, 5, 6, + 218, 8, 6, 10, 6, 12, 6, 221, 9, 6, 1, 6, 1, 6, 5, 6, 225, 8, 6, 10, 6, + 12, 6, 228, 9, 6, 1, 6, 5, 6, 231, 8, 6, 10, 6, 12, 6, 234, 9, 6, 1, 6, + 1, 6, 1, 7, 3, 7, 239, 8, 7, 1, 7, 1, 7, 3, 7, 243, 8, 7, 1, 7, 5, 7, 246, + 8, 7, 10, 7, 12, 7, 249, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 256, + 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 262, 8, 10, 1, 11, 1, 11, 1, 11, + 1, 11, 5, 11, 268, 8, 11, 10, 11, 12, 11, 271, 9, 11, 1, 12, 1, 12, 1, + 13, 1, 13, 1, 13, 5, 13, 278, 8, 13, 10, 13, 12, 13, 281, 9, 13, 1, 14, + 1, 14, 3, 14, 285, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, + 17, 1, 17, 1, 18, 1, 18, 1, 19, 3, 19, 298, 8, 19, 1, 19, 1, 19, 1, 19, + 1, 20, 1, 20, 3, 20, 305, 8, 20, 1, 20, 3, 20, 308, 8, 20, 1, 20, 3, 20, + 311, 8, 20, 1, 21, 1, 21, 5, 21, 315, 8, 21, 10, 21, 12, 21, 318, 9, 21, + 1, 21, 3, 21, 321, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 5, 22, 328, + 8, 22, 10, 22, 12, 22, 331, 9, 22, 1, 22, 5, 22, 334, 8, 22, 10, 22, 12, + 22, 337, 9, 22, 1, 23, 1, 23, 3, 23, 341, 8, 23, 1, 23, 5, 23, 344, 8, + 23, 10, 23, 12, 23, 347, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 352, 8, 24, + 1, 25, 1, 25, 3, 25, 356, 8, 25, 1, 26, 1, 26, 5, 26, 360, 8, 26, 10, 26, + 12, 26, 363, 9, 26, 1, 26, 1, 26, 1, 26, 5, 26, 368, 8, 26, 10, 26, 12, + 26, 371, 9, 26, 1, 26, 5, 26, 374, 8, 26, 10, 26, 12, 26, 377, 9, 26, 1, + 26, 5, 26, 380, 8, 26, 10, 26, 12, 26, 383, 9, 26, 1, 26, 1, 26, 1, 27, + 1, 27, 3, 27, 389, 8, 27, 1, 28, 1, 28, 5, 28, 393, 8, 28, 10, 28, 12, + 28, 396, 9, 28, 1, 28, 1, 28, 5, 28, 400, 8, 28, 10, 28, 12, 28, 403, 9, + 28, 1, 28, 1, 28, 1, 28, 5, 28, 408, 8, 28, 10, 28, 12, 28, 411, 9, 28, + 1, 28, 5, 28, 414, 8, 28, 10, 28, 12, 28, 417, 9, 28, 1, 28, 5, 28, 420, + 8, 28, 10, 28, 12, 28, 423, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 5, 29, 429, + 8, 29, 10, 29, 12, 29, 432, 9, 29, 1, 29, 1, 29, 5, 29, 436, 8, 29, 10, + 29, 12, 29, 439, 9, 29, 1, 29, 3, 29, 442, 8, 29, 1, 29, 1, 29, 1, 30, + 1, 30, 4, 30, 448, 8, 30, 11, 30, 12, 30, 449, 1, 30, 5, 30, 453, 8, 30, + 10, 30, 12, 30, 456, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 461, 8, 31, 10, + 31, 12, 31, 464, 9, 31, 1, 32, 1, 32, 5, 32, 468, 8, 32, 10, 32, 12, 32, + 471, 9, 32, 1, 32, 1, 32, 5, 32, 475, 8, 32, 10, 32, 12, 32, 478, 9, 32, + 1, 32, 4, 32, 481, 8, 32, 11, 32, 12, 32, 482, 1, 33, 1, 33, 3, 33, 487, + 8, 33, 1, 34, 3, 34, 490, 8, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, + 35, 497, 8, 35, 1, 35, 1, 35, 1, 35, 5, 35, 502, 8, 35, 10, 35, 12, 35, + 505, 9, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 513, 8, 38, + 10, 38, 12, 38, 516, 9, 38, 1, 38, 3, 38, 519, 8, 38, 1, 38, 1, 38, 1, + 38, 5, 38, 524, 8, 38, 10, 38, 12, 38, 527, 9, 38, 3, 38, 529, 8, 38, 1, + 38, 1, 38, 1, 39, 1, 39, 3, 39, 535, 8, 39, 1, 40, 5, 40, 538, 8, 40, 10, + 40, 12, 40, 541, 9, 40, 1, 40, 1, 40, 3, 40, 545, 8, 40, 1, 40, 5, 40, + 548, 8, 40, 10, 40, 12, 40, 551, 9, 40, 1, 41, 5, 41, 554, 8, 41, 10, 41, + 12, 41, 557, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 41, + 5, 41, 566, 8, 41, 10, 41, 12, 41, 569, 9, 41, 1, 42, 3, 42, 572, 8, 42, + 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 582, 8, + 43, 1, 43, 5, 43, 585, 8, 43, 10, 43, 12, 43, 588, 9, 43, 1, 44, 1, 44, + 3, 44, 592, 8, 44, 1, 44, 1, 44, 3, 44, 596, 8, 44, 1, 44, 1, 44, 1, 44, + 1, 44, 1, 44, 3, 44, 603, 8, 44, 1, 45, 1, 45, 3, 45, 607, 8, 45, 1, 45, + 1, 45, 3, 45, 611, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 616, 8, 45, 1, 46, + 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 5, 48, 626, 8, 48, 10, + 48, 12, 48, 629, 9, 48, 1, 48, 3, 48, 632, 8, 48, 1, 48, 1, 48, 1, 49, + 1, 49, 1, 49, 1, 49, 5, 49, 640, 8, 49, 10, 49, 12, 49, 643, 9, 49, 1, + 49, 1, 49, 5, 49, 647, 8, 49, 10, 49, 12, 49, 650, 9, 49, 5, 49, 652, 8, + 49, 10, 49, 12, 49, 655, 9, 49, 3, 49, 657, 8, 49, 1, 50, 1, 50, 3, 50, + 661, 8, 50, 1, 51, 1, 51, 5, 51, 665, 8, 51, 10, 51, 12, 51, 668, 9, 51, + 1, 51, 3, 51, 671, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 5, 52, 678, + 8, 52, 10, 52, 12, 52, 681, 9, 52, 1, 52, 5, 52, 684, 8, 52, 10, 52, 12, + 52, 687, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 693, 8, 53, 10, 53, + 12, 53, 696, 9, 53, 1, 54, 3, 54, 699, 8, 54, 1, 54, 3, 54, 702, 8, 54, + 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 709, 8, 55, 1, 55, 5, 55, 712, + 8, 55, 10, 55, 12, 55, 715, 9, 55, 1, 56, 1, 56, 5, 56, 719, 8, 56, 10, + 56, 12, 56, 722, 9, 56, 1, 56, 1, 56, 5, 56, 726, 8, 56, 10, 56, 12, 56, + 729, 9, 56, 5, 56, 731, 8, 56, 10, 56, 12, 56, 734, 9, 56, 1, 56, 1, 56, + 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 3, 56, 743, 8, 56, 1, 56, + 1, 56, 5, 56, 747, 8, 56, 10, 56, 12, 56, 750, 9, 56, 5, 56, 752, 8, 56, + 10, 56, 12, 56, 755, 9, 56, 1, 56, 1, 56, 5, 56, 759, 8, 56, 10, 56, 12, + 56, 762, 9, 56, 3, 56, 764, 8, 56, 1, 56, 1, 56, 5, 56, 768, 8, 56, 10, + 56, 12, 56, 771, 9, 56, 5, 56, 773, 8, 56, 10, 56, 12, 56, 776, 9, 56, + 1, 56, 1, 56, 1, 57, 1, 57, 4, 57, 782, 8, 57, 11, 57, 12, 57, 783, 1, + 57, 1, 57, 1, 58, 1, 58, 3, 58, 790, 8, 58, 1, 58, 3, 58, 793, 8, 58, 1, + 58, 5, 58, 796, 8, 58, 10, 58, 12, 58, 799, 9, 58, 4, 58, 801, 8, 58, 11, + 58, 12, 58, 802, 1, 59, 3, 59, 806, 8, 59, 1, 59, 3, 59, 809, 8, 59, 1, + 59, 1, 59, 1, 60, 1, 60, 5, 60, 815, 8, 60, 10, 60, 12, 60, 818, 9, 60, + 1, 60, 3, 60, 821, 8, 60, 1, 60, 3, 60, 824, 8, 60, 1, 60, 5, 60, 827, + 8, 60, 10, 60, 12, 60, 830, 9, 60, 1, 60, 3, 60, 833, 8, 60, 1, 61, 1, + 61, 1, 62, 1, 62, 5, 62, 839, 8, 62, 10, 62, 12, 62, 842, 9, 62, 1, 62, + 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 849, 8, 63, 1, 63, 5, 63, 852, 8, 63, + 10, 63, 12, 63, 855, 9, 63, 1, 63, 1, 63, 3, 63, 859, 8, 63, 5, 63, 861, + 8, 63, 10, 63, 12, 63, 864, 9, 63, 1, 64, 1, 64, 3, 64, 868, 8, 64, 1, + 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 876, 8, 66, 1, 67, 1, 67, + 5, 67, 880, 8, 67, 10, 67, 12, 67, 883, 9, 67, 1, 67, 1, 67, 1, 67, 5, + 67, 888, 8, 67, 10, 67, 12, 67, 891, 9, 67, 1, 67, 1, 67, 5, 67, 895, 8, + 67, 10, 67, 12, 67, 898, 9, 67, 5, 67, 900, 8, 67, 10, 67, 12, 67, 903, + 9, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, + 69, 914, 8, 69, 1, 69, 3, 69, 917, 8, 69, 1, 70, 1, 70, 1, 70, 3, 70, 922, + 8, 70, 1, 71, 1, 71, 1, 72, 1, 72, 5, 72, 928, 8, 72, 10, 72, 12, 72, 931, + 9, 72, 1, 72, 1, 72, 5, 72, 935, 8, 72, 10, 72, 12, 72, 938, 9, 72, 1, + 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 949, + 8, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 3, 77, 957, 8, 77, 1, + 77, 1, 77, 1, 77, 1, 78, 3, 78, 963, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, + 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, + 82, 1, 82, 5, 82, 981, 8, 82, 10, 82, 12, 82, 984, 9, 82, 1, 83, 1, 83, + 3, 83, 988, 8, 83, 1, 84, 1, 84, 5, 84, 992, 8, 84, 10, 84, 12, 84, 995, + 9, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1000, 8, 84, 10, 84, 12, 84, 1003, 9, + 84, 1, 84, 1, 84, 5, 84, 1007, 8, 84, 10, 84, 12, 84, 1010, 9, 84, 5, 84, + 1012, 8, 84, 10, 84, 12, 84, 1015, 9, 84, 1, 84, 1, 84, 1, 84, 0, 0, 85, 0, 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, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, - 168, 170, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1098, 0, 177, 1, 0, 0, 0, 2, - 187, 1, 0, 0, 0, 4, 192, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 8, 201, 1, 0, - 0, 0, 10, 213, 1, 0, 0, 0, 12, 217, 1, 0, 0, 0, 14, 240, 1, 0, 0, 0, 16, - 252, 1, 0, 0, 0, 18, 257, 1, 0, 0, 0, 20, 263, 1, 0, 0, 0, 22, 265, 1, - 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 276, 1, 0, 0, 0, 28, 286, 1, 0, 0, 0, - 30, 288, 1, 0, 0, 0, 32, 290, 1, 0, 0, 0, 34, 294, 1, 0, 0, 0, 36, 296, - 1, 0, 0, 0, 38, 299, 1, 0, 0, 0, 40, 304, 1, 0, 0, 0, 42, 314, 1, 0, 0, - 0, 44, 326, 1, 0, 0, 0, 46, 340, 1, 0, 0, 0, 48, 353, 1, 0, 0, 0, 50, 355, - 1, 0, 0, 0, 52, 359, 1, 0, 0, 0, 54, 390, 1, 0, 0, 0, 56, 392, 1, 0, 0, - 0, 58, 428, 1, 0, 0, 0, 60, 447, 1, 0, 0, 0, 62, 459, 1, 0, 0, 0, 64, 467, - 1, 0, 0, 0, 66, 488, 1, 0, 0, 0, 68, 491, 1, 0, 0, 0, 70, 496, 1, 0, 0, - 0, 72, 508, 1, 0, 0, 0, 74, 510, 1, 0, 0, 0, 76, 512, 1, 0, 0, 0, 78, 536, - 1, 0, 0, 0, 80, 541, 1, 0, 0, 0, 82, 557, 1, 0, 0, 0, 84, 573, 1, 0, 0, - 0, 86, 578, 1, 0, 0, 0, 88, 605, 1, 0, 0, 0, 90, 619, 1, 0, 0, 0, 92, 621, - 1, 0, 0, 0, 94, 623, 1, 0, 0, 0, 96, 625, 1, 0, 0, 0, 98, 629, 1, 0, 0, - 0, 100, 662, 1, 0, 0, 0, 102, 666, 1, 0, 0, 0, 104, 668, 1, 0, 0, 0, 106, - 680, 1, 0, 0, 0, 108, 694, 1, 0, 0, 0, 110, 704, 1, 0, 0, 0, 112, 712, - 1, 0, 0, 0, 114, 722, 1, 0, 0, 0, 116, 785, 1, 0, 0, 0, 118, 794, 1, 0, - 0, 0, 120, 822, 1, 0, 0, 0, 122, 829, 1, 0, 0, 0, 124, 851, 1, 0, 0, 0, - 126, 853, 1, 0, 0, 0, 128, 857, 1, 0, 0, 0, 130, 876, 1, 0, 0, 0, 132, - 878, 1, 0, 0, 0, 134, 884, 1, 0, 0, 0, 136, 886, 1, 0, 0, 0, 138, 915, - 1, 0, 0, 0, 140, 922, 1, 0, 0, 0, 142, 930, 1, 0, 0, 0, 144, 932, 1, 0, - 0, 0, 146, 934, 1, 0, 0, 0, 148, 950, 1, 0, 0, 0, 150, 957, 1, 0, 0, 0, - 152, 959, 1, 0, 0, 0, 154, 961, 1, 0, 0, 0, 156, 965, 1, 0, 0, 0, 158, - 971, 1, 0, 0, 0, 160, 977, 1, 0, 0, 0, 162, 979, 1, 0, 0, 0, 164, 981, - 1, 0, 0, 0, 166, 985, 1, 0, 0, 0, 168, 996, 1, 0, 0, 0, 170, 998, 1, 0, - 0, 0, 172, 176, 5, 40, 0, 0, 173, 176, 5, 33, 0, 0, 174, 176, 3, 2, 1, - 0, 175, 172, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 174, 1, 0, 0, 0, 176, - 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, - 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 181, 5, 0, 0, 1, 181, 1, 1, 0, 0, - 0, 182, 188, 3, 12, 6, 0, 183, 188, 3, 38, 19, 0, 184, 188, 3, 68, 34, - 0, 185, 188, 3, 84, 42, 0, 186, 188, 3, 110, 55, 0, 187, 182, 1, 0, 0, - 0, 187, 183, 1, 0, 0, 0, 187, 184, 1, 0, 0, 0, 187, 185, 1, 0, 0, 0, 187, - 186, 1, 0, 0, 0, 188, 3, 1, 0, 0, 0, 189, 190, 3, 6, 3, 0, 190, 191, 5, - 40, 0, 0, 191, 193, 1, 0, 0, 0, 192, 189, 1, 0, 0, 0, 193, 194, 1, 0, 0, - 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 5, 1, 0, 0, 0, 196, - 197, 5, 1, 0, 0, 197, 199, 5, 35, 0, 0, 198, 200, 3, 8, 4, 0, 199, 198, - 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 2, 0, - 0, 202, 207, 3, 10, 5, 0, 203, 204, 5, 3, 0, 0, 204, 206, 3, 10, 5, 0, - 205, 203, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, - 208, 1, 0, 0, 0, 208, 210, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 211, - 5, 4, 0, 0, 211, 9, 1, 0, 0, 0, 212, 214, 5, 35, 0, 0, 213, 212, 1, 0, - 0, 0, 214, 215, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, - 216, 11, 1, 0, 0, 0, 217, 221, 5, 5, 0, 0, 218, 220, 5, 40, 0, 0, 219, - 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 222, - 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 228, 5, 6, - 0, 0, 225, 227, 5, 40, 0, 0, 226, 225, 1, 0, 0, 0, 227, 230, 1, 0, 0, 0, - 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 234, 1, 0, 0, 0, 230, - 228, 1, 0, 0, 0, 231, 233, 3, 14, 7, 0, 232, 231, 1, 0, 0, 0, 233, 236, - 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 237, 1, 0, - 0, 0, 236, 234, 1, 0, 0, 0, 237, 238, 5, 7, 0, 0, 238, 13, 1, 0, 0, 0, - 239, 241, 3, 16, 8, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, - 242, 1, 0, 0, 0, 242, 244, 3, 18, 9, 0, 243, 245, 5, 3, 0, 0, 244, 243, - 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 249, 1, 0, 0, 0, 246, 248, 5, 40, - 0, 0, 247, 246, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, - 249, 250, 1, 0, 0, 0, 250, 15, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 253, - 5, 35, 0, 0, 253, 17, 1, 0, 0, 0, 254, 255, 3, 20, 10, 0, 255, 256, 5, - 8, 0, 0, 256, 258, 1, 0, 0, 0, 257, 254, 1, 0, 0, 0, 257, 258, 1, 0, 0, - 0, 258, 259, 1, 0, 0, 0, 259, 260, 3, 26, 13, 0, 260, 19, 1, 0, 0, 0, 261, - 264, 5, 9, 0, 0, 262, 264, 3, 22, 11, 0, 263, 261, 1, 0, 0, 0, 263, 262, - 1, 0, 0, 0, 264, 21, 1, 0, 0, 0, 265, 271, 5, 35, 0, 0, 266, 267, 3, 24, - 12, 0, 267, 268, 5, 35, 0, 0, 268, 270, 1, 0, 0, 0, 269, 266, 1, 0, 0, - 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, - 23, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 7, 0, 0, 0, 275, 25, 1, - 0, 0, 0, 276, 281, 5, 35, 0, 0, 277, 278, 5, 10, 0, 0, 278, 280, 5, 35, - 0, 0, 279, 277, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, - 281, 282, 1, 0, 0, 0, 282, 27, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 284, 287, - 3, 32, 16, 0, 285, 287, 3, 30, 15, 0, 286, 284, 1, 0, 0, 0, 286, 285, 1, - 0, 0, 0, 287, 29, 1, 0, 0, 0, 288, 289, 5, 35, 0, 0, 289, 31, 1, 0, 0, - 0, 290, 291, 3, 34, 17, 0, 291, 292, 5, 11, 0, 0, 292, 293, 3, 36, 18, - 0, 293, 33, 1, 0, 0, 0, 294, 295, 5, 35, 0, 0, 295, 35, 1, 0, 0, 0, 296, - 297, 5, 35, 0, 0, 297, 37, 1, 0, 0, 0, 298, 300, 5, 34, 0, 0, 299, 298, - 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 5, 12, - 0, 0, 302, 303, 3, 40, 20, 0, 303, 39, 1, 0, 0, 0, 304, 306, 5, 35, 0, - 0, 305, 307, 3, 42, 21, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, - 307, 309, 1, 0, 0, 0, 308, 310, 3, 48, 24, 0, 309, 308, 1, 0, 0, 0, 309, - 310, 1, 0, 0, 0, 310, 312, 1, 0, 0, 0, 311, 313, 5, 33, 0, 0, 312, 311, - 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 41, 1, 0, 0, 0, 314, 318, 5, 13, - 0, 0, 315, 317, 5, 40, 0, 0, 316, 315, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, - 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, - 318, 1, 0, 0, 0, 321, 323, 3, 44, 22, 0, 322, 321, 1, 0, 0, 0, 322, 323, - 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 325, 5, 14, 0, 0, 325, 43, 1, 0, - 0, 0, 326, 337, 3, 46, 23, 0, 327, 331, 5, 3, 0, 0, 328, 330, 5, 40, 0, - 0, 329, 328, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, - 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 336, - 3, 46, 23, 0, 335, 327, 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, - 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 45, 1, 0, 0, 0, 339, 337, 1, 0, 0, - 0, 340, 342, 5, 35, 0, 0, 341, 343, 3, 48, 24, 0, 342, 341, 1, 0, 0, 0, - 342, 343, 1, 0, 0, 0, 343, 347, 1, 0, 0, 0, 344, 346, 5, 40, 0, 0, 345, - 344, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, - 1, 0, 0, 0, 348, 47, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 350, 354, 3, 50, - 25, 0, 351, 354, 3, 54, 27, 0, 352, 354, 3, 64, 32, 0, 353, 350, 1, 0, - 0, 0, 353, 351, 1, 0, 0, 0, 353, 352, 1, 0, 0, 0, 354, 49, 1, 0, 0, 0, - 355, 357, 3, 28, 14, 0, 356, 358, 3, 52, 26, 0, 357, 356, 1, 0, 0, 0, 357, - 358, 1, 0, 0, 0, 358, 51, 1, 0, 0, 0, 359, 363, 5, 13, 0, 0, 360, 362, - 5, 40, 0, 0, 361, 360, 1, 0, 0, 0, 362, 365, 1, 0, 0, 0, 363, 361, 1, 0, - 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, - 366, 377, 3, 48, 24, 0, 367, 371, 5, 3, 0, 0, 368, 370, 5, 40, 0, 0, 369, - 368, 1, 0, 0, 0, 370, 373, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 371, 372, - 1, 0, 0, 0, 372, 374, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 374, 376, 3, 48, - 24, 0, 375, 367, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, - 377, 378, 1, 0, 0, 0, 378, 383, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, - 382, 5, 40, 0, 0, 381, 380, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 381, - 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 386, 1, 0, 0, 0, 385, 383, 1, 0, - 0, 0, 386, 387, 5, 14, 0, 0, 387, 53, 1, 0, 0, 0, 388, 391, 3, 56, 28, - 0, 389, 391, 3, 58, 29, 0, 390, 388, 1, 0, 0, 0, 390, 389, 1, 0, 0, 0, - 391, 55, 1, 0, 0, 0, 392, 396, 5, 15, 0, 0, 393, 395, 5, 40, 0, 0, 394, - 393, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, - 1, 0, 0, 0, 397, 399, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 403, 5, 6, - 0, 0, 400, 402, 5, 40, 0, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, - 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, - 403, 1, 0, 0, 0, 406, 417, 5, 35, 0, 0, 407, 411, 5, 3, 0, 0, 408, 410, - 5, 40, 0, 0, 409, 408, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 409, 1, 0, - 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, - 414, 416, 5, 35, 0, 0, 415, 407, 1, 0, 0, 0, 416, 419, 1, 0, 0, 0, 417, - 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 423, 1, 0, 0, 0, 419, 417, - 1, 0, 0, 0, 420, 422, 5, 40, 0, 0, 421, 420, 1, 0, 0, 0, 422, 425, 1, 0, - 0, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 426, 1, 0, 0, 0, - 425, 423, 1, 0, 0, 0, 426, 427, 5, 7, 0, 0, 427, 57, 1, 0, 0, 0, 428, 432, - 5, 16, 0, 0, 429, 431, 5, 40, 0, 0, 430, 429, 1, 0, 0, 0, 431, 434, 1, - 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, - 0, 434, 432, 1, 0, 0, 0, 435, 439, 5, 6, 0, 0, 436, 438, 5, 40, 0, 0, 437, - 436, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, - 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 444, 3, 60, - 30, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, - 445, 446, 5, 7, 0, 0, 446, 59, 1, 0, 0, 0, 447, 456, 3, 62, 31, 0, 448, - 450, 5, 40, 0, 0, 449, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 449, - 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 3, 62, - 31, 0, 454, 449, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, - 456, 457, 1, 0, 0, 0, 457, 61, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, - 5, 35, 0, 0, 460, 464, 3, 48, 24, 0, 461, 463, 5, 40, 0, 0, 462, 461, 1, - 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, - 0, 465, 63, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 482, 3, 66, 33, 0, 468, - 470, 5, 40, 0, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, - 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 474, 1, 0, 0, 0, 473, 471, 1, 0, - 0, 0, 474, 478, 5, 17, 0, 0, 475, 477, 5, 40, 0, 0, 476, 475, 1, 0, 0, - 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, - 481, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 483, 3, 66, 33, 0, 482, 471, - 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, - 0, 0, 485, 65, 1, 0, 0, 0, 486, 489, 3, 50, 25, 0, 487, 489, 3, 54, 27, - 0, 488, 486, 1, 0, 0, 0, 488, 487, 1, 0, 0, 0, 489, 67, 1, 0, 0, 0, 490, - 492, 5, 34, 0, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 493, - 1, 0, 0, 0, 493, 494, 5, 18, 0, 0, 494, 495, 3, 70, 35, 0, 495, 69, 1, - 0, 0, 0, 496, 498, 5, 35, 0, 0, 497, 499, 3, 42, 21, 0, 498, 497, 1, 0, - 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 72, 36, - 0, 501, 505, 3, 74, 37, 0, 502, 504, 5, 40, 0, 0, 503, 502, 1, 0, 0, 0, - 504, 507, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, - 71, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 509, 3, 76, 38, 0, 509, 73, - 1, 0, 0, 0, 510, 511, 3, 76, 38, 0, 511, 75, 1, 0, 0, 0, 512, 530, 5, 2, - 0, 0, 513, 515, 5, 40, 0, 0, 514, 513, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, - 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 531, 1, 0, 0, 0, 518, - 516, 1, 0, 0, 0, 519, 521, 3, 78, 39, 0, 520, 519, 1, 0, 0, 0, 520, 521, - 1, 0, 0, 0, 521, 531, 1, 0, 0, 0, 522, 527, 3, 78, 39, 0, 523, 524, 5, - 3, 0, 0, 524, 526, 3, 78, 39, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, - 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 531, 1, 0, 0, 0, - 529, 527, 1, 0, 0, 0, 530, 516, 1, 0, 0, 0, 530, 520, 1, 0, 0, 0, 530, - 522, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 4, 0, 0, 533, 77, 1, - 0, 0, 0, 534, 537, 3, 80, 40, 0, 535, 537, 3, 82, 41, 0, 536, 534, 1, 0, - 0, 0, 536, 535, 1, 0, 0, 0, 537, 79, 1, 0, 0, 0, 538, 540, 5, 40, 0, 0, - 539, 538, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 541, - 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 544, 546, - 5, 35, 0, 0, 545, 547, 3, 48, 24, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, - 0, 0, 0, 547, 551, 1, 0, 0, 0, 548, 550, 5, 40, 0, 0, 549, 548, 1, 0, 0, - 0, 550, 553, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, - 81, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 554, 556, 5, 40, 0, 0, 555, 554, - 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, - 0, 0, 558, 560, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 560, 561, 5, 19, 0, 0, - 561, 562, 5, 35, 0, 0, 562, 564, 5, 20, 0, 0, 563, 565, 3, 48, 24, 0, 564, - 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 569, 1, 0, 0, 0, 566, 568, - 5, 40, 0, 0, 567, 566, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 567, 1, 0, - 0, 0, 569, 570, 1, 0, 0, 0, 570, 83, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, - 572, 574, 5, 34, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, - 575, 1, 0, 0, 0, 575, 576, 5, 21, 0, 0, 576, 577, 3, 86, 43, 0, 577, 85, - 1, 0, 0, 0, 578, 579, 5, 35, 0, 0, 579, 580, 3, 48, 24, 0, 580, 583, 5, - 22, 0, 0, 581, 584, 3, 28, 14, 0, 582, 584, 3, 88, 44, 0, 583, 581, 1, - 0, 0, 0, 583, 582, 1, 0, 0, 0, 584, 588, 1, 0, 0, 0, 585, 587, 5, 40, 0, - 0, 586, 585, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, - 589, 1, 0, 0, 0, 589, 87, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 591, 606, 3, - 92, 46, 0, 592, 606, 3, 94, 47, 0, 593, 595, 5, 37, 0, 0, 594, 593, 1, - 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 606, 5, 36, 0, - 0, 597, 599, 5, 37, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, - 600, 1, 0, 0, 0, 600, 606, 5, 38, 0, 0, 601, 606, 5, 39, 0, 0, 602, 606, - 3, 96, 48, 0, 603, 606, 3, 98, 49, 0, 604, 606, 3, 104, 52, 0, 605, 591, - 1, 0, 0, 0, 605, 592, 1, 0, 0, 0, 605, 594, 1, 0, 0, 0, 605, 598, 1, 0, - 0, 0, 605, 601, 1, 0, 0, 0, 605, 602, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, - 605, 604, 1, 0, 0, 0, 606, 89, 1, 0, 0, 0, 607, 620, 3, 92, 46, 0, 608, - 620, 3, 94, 47, 0, 609, 611, 5, 37, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, - 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 620, 5, 36, 0, 0, 613, 615, 5, 37, - 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, - 616, 620, 5, 38, 0, 0, 617, 620, 5, 39, 0, 0, 618, 620, 3, 96, 48, 0, 619, - 607, 1, 0, 0, 0, 619, 608, 1, 0, 0, 0, 619, 610, 1, 0, 0, 0, 619, 614, - 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 618, 1, 0, 0, 0, 620, 91, 1, 0, - 0, 0, 621, 622, 5, 23, 0, 0, 622, 93, 1, 0, 0, 0, 623, 624, 7, 1, 0, 0, - 624, 95, 1, 0, 0, 0, 625, 626, 3, 28, 14, 0, 626, 627, 5, 26, 0, 0, 627, - 628, 5, 35, 0, 0, 628, 97, 1, 0, 0, 0, 629, 633, 5, 19, 0, 0, 630, 632, - 5, 40, 0, 0, 631, 630, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, - 0, 0, 633, 634, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, - 636, 638, 3, 100, 50, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, - 639, 1, 0, 0, 0, 639, 640, 5, 20, 0, 0, 640, 99, 1, 0, 0, 0, 641, 663, - 3, 102, 51, 0, 642, 659, 3, 102, 51, 0, 643, 647, 5, 3, 0, 0, 644, 646, - 5, 40, 0, 0, 645, 644, 1, 0, 0, 0, 646, 649, 1, 0, 0, 0, 647, 645, 1, 0, - 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, - 650, 654, 3, 102, 51, 0, 651, 653, 5, 40, 0, 0, 652, 651, 1, 0, 0, 0, 653, - 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 658, - 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 657, 643, 1, 0, 0, 0, 658, 661, 1, 0, - 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, - 661, 659, 1, 0, 0, 0, 662, 641, 1, 0, 0, 0, 662, 642, 1, 0, 0, 0, 663, - 101, 1, 0, 0, 0, 664, 667, 3, 28, 14, 0, 665, 667, 3, 88, 44, 0, 666, 664, - 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 103, 1, 0, 0, 0, 668, 672, 5, 6, - 0, 0, 669, 671, 5, 40, 0, 0, 670, 669, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, - 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, - 672, 1, 0, 0, 0, 675, 677, 3, 106, 53, 0, 676, 675, 1, 0, 0, 0, 676, 677, - 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 7, 0, 0, 679, 105, 1, 0, - 0, 0, 680, 691, 3, 108, 54, 0, 681, 685, 5, 3, 0, 0, 682, 684, 5, 40, 0, - 0, 683, 682, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, - 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 690, - 3, 108, 54, 0, 689, 681, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 689, 1, - 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 107, 1, 0, 0, 0, 693, 691, 1, 0, 0, - 0, 694, 695, 5, 35, 0, 0, 695, 696, 5, 8, 0, 0, 696, 700, 3, 102, 51, 0, - 697, 699, 5, 40, 0, 0, 698, 697, 1, 0, 0, 0, 699, 702, 1, 0, 0, 0, 700, - 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 109, 1, 0, 0, 0, 702, 700, - 1, 0, 0, 0, 703, 705, 3, 4, 2, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, - 0, 0, 705, 707, 1, 0, 0, 0, 706, 708, 5, 34, 0, 0, 707, 706, 1, 0, 0, 0, - 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 27, 0, 0, 710, - 711, 3, 112, 56, 0, 711, 111, 1, 0, 0, 0, 712, 714, 3, 70, 35, 0, 713, - 715, 3, 114, 57, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 719, - 1, 0, 0, 0, 716, 718, 5, 40, 0, 0, 717, 716, 1, 0, 0, 0, 718, 721, 1, 0, - 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 113, 1, 0, 0, 0, - 721, 719, 1, 0, 0, 0, 722, 726, 5, 6, 0, 0, 723, 725, 5, 40, 0, 0, 724, - 723, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 726, 727, - 1, 0, 0, 0, 727, 738, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 729, 733, 5, 33, - 0, 0, 730, 732, 5, 40, 0, 0, 731, 730, 1, 0, 0, 0, 732, 735, 1, 0, 0, 0, - 733, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, - 733, 1, 0, 0, 0, 736, 729, 1, 0, 0, 0, 737, 740, 1, 0, 0, 0, 738, 736, - 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 748, 1, 0, 0, 0, 740, 738, 1, 0, - 0, 0, 741, 745, 3, 116, 58, 0, 742, 744, 5, 40, 0, 0, 743, 742, 1, 0, 0, - 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, - 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 741, 1, 0, 0, 0, 748, 749, - 1, 0, 0, 0, 749, 759, 1, 0, 0, 0, 750, 754, 5, 33, 0, 0, 751, 753, 5, 40, - 0, 0, 752, 751, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, - 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, - 750, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 759, 760, - 1, 0, 0, 0, 760, 769, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 762, 766, 3, 128, - 64, 0, 763, 765, 5, 40, 0, 0, 764, 763, 1, 0, 0, 0, 765, 768, 1, 0, 0, - 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, - 766, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 780, - 1, 0, 0, 0, 771, 775, 5, 33, 0, 0, 772, 774, 5, 40, 0, 0, 773, 772, 1, - 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, - 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 771, 1, 0, 0, 0, 779, - 782, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, - 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 784, 5, 7, 0, 0, 784, 115, 1, 0, - 0, 0, 785, 789, 5, 28, 0, 0, 786, 788, 5, 40, 0, 0, 787, 786, 1, 0, 0, - 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, - 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 118, 59, 0, 793, 117, - 1, 0, 0, 0, 794, 798, 5, 6, 0, 0, 795, 797, 5, 40, 0, 0, 796, 795, 1, 0, - 0, 0, 797, 800, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, - 799, 816, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 801, 804, 3, 120, 60, 0, 802, - 804, 5, 33, 0, 0, 803, 801, 1, 0, 0, 0, 803, 802, 1, 0, 0, 0, 804, 806, - 1, 0, 0, 0, 805, 807, 5, 3, 0, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, - 0, 0, 807, 811, 1, 0, 0, 0, 808, 810, 5, 40, 0, 0, 809, 808, 1, 0, 0, 0, - 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, - 815, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 803, 1, 0, 0, 0, 815, 818, - 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, - 0, 0, 818, 816, 1, 0, 0, 0, 819, 820, 5, 7, 0, 0, 820, 119, 1, 0, 0, 0, - 821, 823, 3, 4, 2, 0, 822, 821, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, - 825, 1, 0, 0, 0, 824, 826, 5, 35, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, - 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 3, 122, 61, 0, 828, 121, 1, - 0, 0, 0, 829, 833, 3, 28, 14, 0, 830, 832, 5, 40, 0, 0, 831, 830, 1, 0, - 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, - 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 838, 3, 52, 26, 0, 837, - 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, - 3, 124, 62, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 845, 1, - 0, 0, 0, 842, 844, 5, 40, 0, 0, 843, 842, 1, 0, 0, 0, 844, 847, 1, 0, 0, - 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, - 845, 1, 0, 0, 0, 848, 850, 3, 126, 63, 0, 849, 848, 1, 0, 0, 0, 849, 850, - 1, 0, 0, 0, 850, 123, 1, 0, 0, 0, 851, 852, 5, 29, 0, 0, 852, 125, 1, 0, - 0, 0, 853, 854, 3, 118, 59, 0, 854, 127, 1, 0, 0, 0, 855, 858, 3, 130, - 65, 0, 856, 858, 5, 33, 0, 0, 857, 855, 1, 0, 0, 0, 857, 856, 1, 0, 0, - 0, 858, 871, 1, 0, 0, 0, 859, 861, 5, 40, 0, 0, 860, 859, 1, 0, 0, 0, 861, - 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 867, - 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 868, 3, 130, 65, 0, 866, 868, 5, - 33, 0, 0, 867, 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 868, 870, 1, 0, 0, - 0, 869, 862, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, - 872, 1, 0, 0, 0, 872, 129, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 877, - 3, 132, 66, 0, 875, 877, 3, 138, 69, 0, 876, 874, 1, 0, 0, 0, 876, 875, - 1, 0, 0, 0, 877, 131, 1, 0, 0, 0, 878, 879, 3, 134, 67, 0, 879, 880, 5, - 30, 0, 0, 880, 881, 3, 142, 71, 0, 881, 133, 1, 0, 0, 0, 882, 885, 3, 140, - 70, 0, 883, 885, 3, 136, 68, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, - 0, 885, 135, 1, 0, 0, 0, 886, 890, 5, 19, 0, 0, 887, 889, 5, 40, 0, 0, - 888, 887, 1, 0, 0, 0, 889, 892, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 890, - 891, 1, 0, 0, 0, 891, 893, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 893, 910, - 3, 140, 70, 0, 894, 898, 5, 3, 0, 0, 895, 897, 5, 40, 0, 0, 896, 895, 1, - 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, - 0, 899, 901, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 905, 3, 140, 70, 0, - 902, 904, 5, 40, 0, 0, 903, 902, 1, 0, 0, 0, 904, 907, 1, 0, 0, 0, 905, - 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, - 1, 0, 0, 0, 908, 894, 1, 0, 0, 0, 909, 912, 1, 0, 0, 0, 910, 908, 1, 0, - 0, 0, 910, 911, 1, 0, 0, 0, 911, 913, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, - 913, 914, 5, 20, 0, 0, 914, 137, 1, 0, 0, 0, 915, 916, 3, 156, 78, 0, 916, - 917, 5, 31, 0, 0, 917, 918, 3, 156, 78, 0, 918, 139, 1, 0, 0, 0, 919, 923, - 3, 150, 75, 0, 920, 923, 3, 148, 74, 0, 921, 923, 3, 90, 45, 0, 922, 919, - 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 925, 1, 0, - 0, 0, 924, 926, 3, 166, 83, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, - 0, 926, 141, 1, 0, 0, 0, 927, 931, 3, 144, 72, 0, 928, 931, 3, 168, 84, - 0, 929, 931, 3, 170, 85, 0, 930, 927, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, - 930, 929, 1, 0, 0, 0, 931, 143, 1, 0, 0, 0, 932, 933, 3, 132, 66, 0, 933, - 145, 1, 0, 0, 0, 934, 938, 5, 2, 0, 0, 935, 937, 5, 40, 0, 0, 936, 935, - 1, 0, 0, 0, 937, 940, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 939, 1, 0, - 0, 0, 939, 941, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 941, 945, 3, 130, 65, - 0, 942, 944, 5, 40, 0, 0, 943, 942, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, - 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 945, - 1, 0, 0, 0, 948, 949, 5, 4, 0, 0, 949, 147, 1, 0, 0, 0, 950, 951, 5, 32, - 0, 0, 951, 952, 3, 28, 14, 0, 952, 149, 1, 0, 0, 0, 953, 958, 3, 156, 78, - 0, 954, 958, 3, 158, 79, 0, 955, 958, 3, 152, 76, 0, 956, 958, 3, 154, - 77, 0, 957, 953, 1, 0, 0, 0, 957, 954, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, - 957, 956, 1, 0, 0, 0, 958, 151, 1, 0, 0, 0, 959, 960, 3, 160, 80, 0, 960, - 153, 1, 0, 0, 0, 961, 962, 3, 160, 80, 0, 962, 963, 3, 164, 82, 0, 963, - 155, 1, 0, 0, 0, 964, 966, 3, 160, 80, 0, 965, 964, 1, 0, 0, 0, 965, 966, - 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 5, 8, 0, 0, 968, 969, 3, 162, - 81, 0, 969, 157, 1, 0, 0, 0, 970, 972, 3, 160, 80, 0, 971, 970, 1, 0, 0, - 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 5, 8, 0, 0, 974, - 975, 3, 162, 81, 0, 975, 976, 3, 164, 82, 0, 976, 159, 1, 0, 0, 0, 977, - 978, 5, 35, 0, 0, 978, 161, 1, 0, 0, 0, 979, 980, 5, 35, 0, 0, 980, 163, - 1, 0, 0, 0, 981, 982, 5, 19, 0, 0, 982, 983, 5, 36, 0, 0, 983, 984, 5, - 20, 0, 0, 984, 165, 1, 0, 0, 0, 985, 986, 5, 11, 0, 0, 986, 991, 5, 35, - 0, 0, 987, 988, 5, 11, 0, 0, 988, 990, 5, 35, 0, 0, 989, 987, 1, 0, 0, - 0, 990, 993, 1, 0, 0, 0, 991, 989, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, - 167, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 994, 997, 3, 150, 75, 0, 995, 997, - 3, 146, 73, 0, 996, 994, 1, 0, 0, 0, 996, 995, 1, 0, 0, 0, 997, 169, 1, - 0, 0, 0, 998, 1002, 5, 19, 0, 0, 999, 1001, 5, 40, 0, 0, 1000, 999, 1, - 0, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, - 0, 0, 0, 1003, 1005, 1, 0, 0, 0, 1004, 1002, 1, 0, 0, 0, 1005, 1022, 3, - 168, 84, 0, 1006, 1010, 5, 3, 0, 0, 1007, 1009, 5, 40, 0, 0, 1008, 1007, - 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, - 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1013, 1017, - 3, 168, 84, 0, 1014, 1016, 5, 40, 0, 0, 1015, 1014, 1, 0, 0, 0, 1016, 1019, - 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1021, - 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1020, 1006, 1, 0, 0, 0, 1021, 1024, - 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, - 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1026, 5, 20, 0, 0, 1026, 171, - 1, 0, 0, 0, 137, 175, 177, 187, 194, 199, 207, 215, 221, 228, 234, 240, - 244, 249, 257, 263, 271, 281, 286, 299, 306, 309, 312, 318, 322, 331, 337, - 342, 347, 353, 357, 363, 371, 377, 383, 390, 396, 403, 411, 417, 423, 432, - 439, 443, 451, 456, 464, 471, 478, 484, 488, 491, 498, 505, 516, 520, 527, - 530, 536, 541, 546, 551, 557, 564, 569, 573, 583, 588, 594, 598, 605, 610, - 614, 619, 633, 637, 647, 654, 659, 662, 666, 672, 676, 685, 691, 700, 704, - 707, 714, 719, 726, 733, 738, 745, 748, 754, 759, 766, 769, 775, 780, 789, - 798, 803, 806, 811, 816, 822, 825, 833, 837, 840, 845, 849, 857, 862, 867, - 871, 876, 884, 890, 898, 905, 910, 922, 925, 930, 938, 945, 957, 965, 971, - 991, 996, 1002, 1010, 1017, 1022, + 168, 0, 2, 1, 0, 10, 11, 1, 0, 23, 24, 1088, 0, 175, 1, 0, 0, 0, 2, 185, + 1, 0, 0, 0, 4, 190, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 8, 199, 1, 0, 0, 0, + 10, 211, 1, 0, 0, 0, 12, 215, 1, 0, 0, 0, 14, 238, 1, 0, 0, 0, 16, 250, + 1, 0, 0, 0, 18, 255, 1, 0, 0, 0, 20, 261, 1, 0, 0, 0, 22, 263, 1, 0, 0, + 0, 24, 272, 1, 0, 0, 0, 26, 274, 1, 0, 0, 0, 28, 284, 1, 0, 0, 0, 30, 286, + 1, 0, 0, 0, 32, 288, 1, 0, 0, 0, 34, 292, 1, 0, 0, 0, 36, 294, 1, 0, 0, + 0, 38, 297, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 312, 1, 0, 0, 0, 44, 324, + 1, 0, 0, 0, 46, 338, 1, 0, 0, 0, 48, 351, 1, 0, 0, 0, 50, 353, 1, 0, 0, + 0, 52, 357, 1, 0, 0, 0, 54, 388, 1, 0, 0, 0, 56, 390, 1, 0, 0, 0, 58, 426, + 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 457, 1, 0, 0, 0, 64, 465, 1, 0, 0, + 0, 66, 486, 1, 0, 0, 0, 68, 489, 1, 0, 0, 0, 70, 494, 1, 0, 0, 0, 72, 506, + 1, 0, 0, 0, 74, 508, 1, 0, 0, 0, 76, 510, 1, 0, 0, 0, 78, 534, 1, 0, 0, + 0, 80, 539, 1, 0, 0, 0, 82, 555, 1, 0, 0, 0, 84, 571, 1, 0, 0, 0, 86, 576, + 1, 0, 0, 0, 88, 602, 1, 0, 0, 0, 90, 615, 1, 0, 0, 0, 92, 617, 1, 0, 0, + 0, 94, 619, 1, 0, 0, 0, 96, 623, 1, 0, 0, 0, 98, 656, 1, 0, 0, 0, 100, + 660, 1, 0, 0, 0, 102, 662, 1, 0, 0, 0, 104, 674, 1, 0, 0, 0, 106, 688, + 1, 0, 0, 0, 108, 698, 1, 0, 0, 0, 110, 706, 1, 0, 0, 0, 112, 716, 1, 0, + 0, 0, 114, 779, 1, 0, 0, 0, 116, 800, 1, 0, 0, 0, 118, 805, 1, 0, 0, 0, + 120, 812, 1, 0, 0, 0, 122, 834, 1, 0, 0, 0, 124, 836, 1, 0, 0, 0, 126, + 848, 1, 0, 0, 0, 128, 867, 1, 0, 0, 0, 130, 869, 1, 0, 0, 0, 132, 875, + 1, 0, 0, 0, 134, 877, 1, 0, 0, 0, 136, 906, 1, 0, 0, 0, 138, 913, 1, 0, + 0, 0, 140, 921, 1, 0, 0, 0, 142, 923, 1, 0, 0, 0, 144, 925, 1, 0, 0, 0, + 146, 941, 1, 0, 0, 0, 148, 948, 1, 0, 0, 0, 150, 950, 1, 0, 0, 0, 152, + 952, 1, 0, 0, 0, 154, 956, 1, 0, 0, 0, 156, 962, 1, 0, 0, 0, 158, 968, + 1, 0, 0, 0, 160, 970, 1, 0, 0, 0, 162, 972, 1, 0, 0, 0, 164, 976, 1, 0, + 0, 0, 166, 987, 1, 0, 0, 0, 168, 989, 1, 0, 0, 0, 170, 174, 5, 39, 0, 0, + 171, 174, 5, 32, 0, 0, 172, 174, 3, 2, 1, 0, 173, 170, 1, 0, 0, 0, 173, + 171, 1, 0, 0, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, + 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, + 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 186, 3, 12, 6, 0, + 181, 186, 3, 38, 19, 0, 182, 186, 3, 68, 34, 0, 183, 186, 3, 84, 42, 0, + 184, 186, 3, 108, 54, 0, 185, 180, 1, 0, 0, 0, 185, 181, 1, 0, 0, 0, 185, + 182, 1, 0, 0, 0, 185, 183, 1, 0, 0, 0, 185, 184, 1, 0, 0, 0, 186, 3, 1, + 0, 0, 0, 187, 188, 3, 6, 3, 0, 188, 189, 5, 39, 0, 0, 189, 191, 1, 0, 0, + 0, 190, 187, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 190, 1, 0, 0, 0, 192, + 193, 1, 0, 0, 0, 193, 5, 1, 0, 0, 0, 194, 195, 5, 1, 0, 0, 195, 197, 5, + 34, 0, 0, 196, 198, 3, 8, 4, 0, 197, 196, 1, 0, 0, 0, 197, 198, 1, 0, 0, + 0, 198, 7, 1, 0, 0, 0, 199, 200, 5, 2, 0, 0, 200, 205, 3, 10, 5, 0, 201, + 202, 5, 3, 0, 0, 202, 204, 3, 10, 5, 0, 203, 201, 1, 0, 0, 0, 204, 207, + 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 208, 1, 0, + 0, 0, 207, 205, 1, 0, 0, 0, 208, 209, 5, 4, 0, 0, 209, 9, 1, 0, 0, 0, 210, + 212, 5, 34, 0, 0, 211, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 211, + 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 11, 1, 0, 0, 0, 215, 219, 5, 5, + 0, 0, 216, 218, 5, 39, 0, 0, 217, 216, 1, 0, 0, 0, 218, 221, 1, 0, 0, 0, + 219, 217, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 222, 1, 0, 0, 0, 221, + 219, 1, 0, 0, 0, 222, 226, 5, 6, 0, 0, 223, 225, 5, 39, 0, 0, 224, 223, + 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, + 0, 0, 227, 232, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 231, 3, 14, 7, 0, + 230, 229, 1, 0, 0, 0, 231, 234, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, + 233, 1, 0, 0, 0, 233, 235, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 235, 236, + 5, 7, 0, 0, 236, 13, 1, 0, 0, 0, 237, 239, 3, 16, 8, 0, 238, 237, 1, 0, + 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 242, 3, 18, 9, 0, + 241, 243, 5, 3, 0, 0, 242, 241, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, + 247, 1, 0, 0, 0, 244, 246, 5, 39, 0, 0, 245, 244, 1, 0, 0, 0, 246, 249, + 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 15, 1, 0, + 0, 0, 249, 247, 1, 0, 0, 0, 250, 251, 5, 34, 0, 0, 251, 17, 1, 0, 0, 0, + 252, 253, 3, 20, 10, 0, 253, 254, 5, 8, 0, 0, 254, 256, 1, 0, 0, 0, 255, + 252, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, + 3, 26, 13, 0, 258, 19, 1, 0, 0, 0, 259, 262, 5, 9, 0, 0, 260, 262, 3, 22, + 11, 0, 261, 259, 1, 0, 0, 0, 261, 260, 1, 0, 0, 0, 262, 21, 1, 0, 0, 0, + 263, 269, 5, 34, 0, 0, 264, 265, 3, 24, 12, 0, 265, 266, 5, 34, 0, 0, 266, + 268, 1, 0, 0, 0, 267, 264, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, + 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 23, 1, 0, 0, 0, 271, 269, 1, 0, + 0, 0, 272, 273, 7, 0, 0, 0, 273, 25, 1, 0, 0, 0, 274, 279, 5, 34, 0, 0, + 275, 276, 5, 10, 0, 0, 276, 278, 5, 34, 0, 0, 277, 275, 1, 0, 0, 0, 278, + 281, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 27, 1, + 0, 0, 0, 281, 279, 1, 0, 0, 0, 282, 285, 3, 32, 16, 0, 283, 285, 3, 30, + 15, 0, 284, 282, 1, 0, 0, 0, 284, 283, 1, 0, 0, 0, 285, 29, 1, 0, 0, 0, + 286, 287, 5, 34, 0, 0, 287, 31, 1, 0, 0, 0, 288, 289, 3, 34, 17, 0, 289, + 290, 5, 11, 0, 0, 290, 291, 3, 36, 18, 0, 291, 33, 1, 0, 0, 0, 292, 293, + 5, 34, 0, 0, 293, 35, 1, 0, 0, 0, 294, 295, 5, 34, 0, 0, 295, 37, 1, 0, + 0, 0, 296, 298, 5, 33, 0, 0, 297, 296, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, + 298, 299, 1, 0, 0, 0, 299, 300, 5, 12, 0, 0, 300, 301, 3, 40, 20, 0, 301, + 39, 1, 0, 0, 0, 302, 304, 5, 34, 0, 0, 303, 305, 3, 42, 21, 0, 304, 303, + 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 307, 1, 0, 0, 0, 306, 308, 3, 48, + 24, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 310, 1, 0, 0, 0, + 309, 311, 5, 32, 0, 0, 310, 309, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, + 41, 1, 0, 0, 0, 312, 316, 5, 13, 0, 0, 313, 315, 5, 39, 0, 0, 314, 313, + 1, 0, 0, 0, 315, 318, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, + 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 319, 321, 3, 44, 22, + 0, 320, 319, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, + 323, 5, 14, 0, 0, 323, 43, 1, 0, 0, 0, 324, 335, 3, 46, 23, 0, 325, 329, + 5, 3, 0, 0, 326, 328, 5, 39, 0, 0, 327, 326, 1, 0, 0, 0, 328, 331, 1, 0, + 0, 0, 329, 327, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 332, 1, 0, 0, 0, + 331, 329, 1, 0, 0, 0, 332, 334, 3, 46, 23, 0, 333, 325, 1, 0, 0, 0, 334, + 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 45, 1, + 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 340, 5, 34, 0, 0, 339, 341, 3, 48, + 24, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 345, 1, 0, 0, 0, + 342, 344, 5, 39, 0, 0, 343, 342, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, + 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 47, 1, 0, 0, 0, 347, 345, 1, + 0, 0, 0, 348, 352, 3, 50, 25, 0, 349, 352, 3, 54, 27, 0, 350, 352, 3, 64, + 32, 0, 351, 348, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 350, 1, 0, 0, 0, + 352, 49, 1, 0, 0, 0, 353, 355, 3, 28, 14, 0, 354, 356, 3, 52, 26, 0, 355, + 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 51, 1, 0, 0, 0, 357, 361, 5, + 13, 0, 0, 358, 360, 5, 39, 0, 0, 359, 358, 1, 0, 0, 0, 360, 363, 1, 0, + 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 364, 1, 0, 0, 0, + 363, 361, 1, 0, 0, 0, 364, 375, 3, 48, 24, 0, 365, 369, 5, 3, 0, 0, 366, + 368, 5, 39, 0, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, + 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, + 0, 0, 372, 374, 3, 48, 24, 0, 373, 365, 1, 0, 0, 0, 374, 377, 1, 0, 0, + 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 381, 1, 0, 0, 0, 377, + 375, 1, 0, 0, 0, 378, 380, 5, 39, 0, 0, 379, 378, 1, 0, 0, 0, 380, 383, + 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 1, 0, + 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 5, 14, 0, 0, 385, 53, 1, 0, 0, 0, + 386, 389, 3, 56, 28, 0, 387, 389, 3, 58, 29, 0, 388, 386, 1, 0, 0, 0, 388, + 387, 1, 0, 0, 0, 389, 55, 1, 0, 0, 0, 390, 394, 5, 15, 0, 0, 391, 393, + 5, 39, 0, 0, 392, 391, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 392, 1, 0, + 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, + 397, 401, 5, 6, 0, 0, 398, 400, 5, 39, 0, 0, 399, 398, 1, 0, 0, 0, 400, + 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, + 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 415, 5, 34, 0, 0, 405, 409, 5, 3, + 0, 0, 406, 408, 5, 39, 0, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, + 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, + 409, 1, 0, 0, 0, 412, 414, 5, 34, 0, 0, 413, 405, 1, 0, 0, 0, 414, 417, + 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 421, 1, 0, + 0, 0, 417, 415, 1, 0, 0, 0, 418, 420, 5, 39, 0, 0, 419, 418, 1, 0, 0, 0, + 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, + 424, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 5, 7, 0, 0, 425, 57, 1, + 0, 0, 0, 426, 430, 5, 16, 0, 0, 427, 429, 5, 39, 0, 0, 428, 427, 1, 0, + 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, + 431, 433, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 437, 5, 6, 0, 0, 434, + 436, 5, 39, 0, 0, 435, 434, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, + 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, + 0, 0, 440, 442, 3, 60, 30, 0, 441, 440, 1, 0, 0, 0, 441, 442, 1, 0, 0, + 0, 442, 443, 1, 0, 0, 0, 443, 444, 5, 7, 0, 0, 444, 59, 1, 0, 0, 0, 445, + 454, 3, 62, 31, 0, 446, 448, 5, 39, 0, 0, 447, 446, 1, 0, 0, 0, 448, 449, + 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, + 0, 0, 451, 453, 3, 62, 31, 0, 452, 447, 1, 0, 0, 0, 453, 456, 1, 0, 0, + 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 61, 1, 0, 0, 0, 456, + 454, 1, 0, 0, 0, 457, 458, 5, 34, 0, 0, 458, 462, 3, 48, 24, 0, 459, 461, + 5, 39, 0, 0, 460, 459, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, + 0, 0, 462, 463, 1, 0, 0, 0, 463, 63, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, + 465, 480, 3, 66, 33, 0, 466, 468, 5, 39, 0, 0, 467, 466, 1, 0, 0, 0, 468, + 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, + 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 5, 17, 0, 0, 473, 475, 5, 39, + 0, 0, 474, 473, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, + 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, + 481, 3, 66, 33, 0, 480, 469, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 480, + 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 65, 1, 0, 0, 0, 484, 487, 3, 50, + 25, 0, 485, 487, 3, 54, 27, 0, 486, 484, 1, 0, 0, 0, 486, 485, 1, 0, 0, + 0, 487, 67, 1, 0, 0, 0, 488, 490, 5, 33, 0, 0, 489, 488, 1, 0, 0, 0, 489, + 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 5, 18, 0, 0, 492, 493, + 3, 70, 35, 0, 493, 69, 1, 0, 0, 0, 494, 496, 5, 34, 0, 0, 495, 497, 3, + 42, 21, 0, 496, 495, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, + 0, 0, 498, 499, 3, 72, 36, 0, 499, 503, 3, 74, 37, 0, 500, 502, 5, 39, + 0, 0, 501, 500, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, + 503, 504, 1, 0, 0, 0, 504, 71, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 507, + 3, 76, 38, 0, 507, 73, 1, 0, 0, 0, 508, 509, 3, 76, 38, 0, 509, 75, 1, + 0, 0, 0, 510, 528, 5, 2, 0, 0, 511, 513, 5, 39, 0, 0, 512, 511, 1, 0, 0, + 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, + 529, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 519, 3, 78, 39, 0, 518, 517, + 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 529, 1, 0, 0, 0, 520, 525, 3, 78, + 39, 0, 521, 522, 5, 3, 0, 0, 522, 524, 3, 78, 39, 0, 523, 521, 1, 0, 0, + 0, 524, 527, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, + 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 528, 514, 1, 0, 0, 0, 528, 518, + 1, 0, 0, 0, 528, 520, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 5, 4, + 0, 0, 531, 77, 1, 0, 0, 0, 532, 535, 3, 80, 40, 0, 533, 535, 3, 82, 41, + 0, 534, 532, 1, 0, 0, 0, 534, 533, 1, 0, 0, 0, 535, 79, 1, 0, 0, 0, 536, + 538, 5, 39, 0, 0, 537, 536, 1, 0, 0, 0, 538, 541, 1, 0, 0, 0, 539, 537, + 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 1, 0, 0, 0, 541, 539, 1, 0, + 0, 0, 542, 544, 5, 34, 0, 0, 543, 545, 3, 48, 24, 0, 544, 543, 1, 0, 0, + 0, 544, 545, 1, 0, 0, 0, 545, 549, 1, 0, 0, 0, 546, 548, 5, 39, 0, 0, 547, + 546, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, + 1, 0, 0, 0, 550, 81, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 554, 5, 39, + 0, 0, 553, 552, 1, 0, 0, 0, 554, 557, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, + 555, 556, 1, 0, 0, 0, 556, 558, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 558, + 559, 5, 19, 0, 0, 559, 560, 5, 34, 0, 0, 560, 562, 5, 20, 0, 0, 561, 563, + 3, 48, 24, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 567, 1, + 0, 0, 0, 564, 566, 5, 39, 0, 0, 565, 564, 1, 0, 0, 0, 566, 569, 1, 0, 0, + 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 83, 1, 0, 0, 0, 569, + 567, 1, 0, 0, 0, 570, 572, 5, 33, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, + 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 5, 21, 0, 0, 574, 575, 3, 86, + 43, 0, 575, 85, 1, 0, 0, 0, 576, 577, 5, 34, 0, 0, 577, 578, 3, 48, 24, + 0, 578, 581, 5, 22, 0, 0, 579, 582, 3, 28, 14, 0, 580, 582, 3, 88, 44, + 0, 581, 579, 1, 0, 0, 0, 581, 580, 1, 0, 0, 0, 582, 586, 1, 0, 0, 0, 583, + 585, 5, 39, 0, 0, 584, 583, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, + 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 87, 1, 0, 0, 0, 588, 586, 1, 0, + 0, 0, 589, 603, 3, 92, 46, 0, 590, 592, 5, 36, 0, 0, 591, 590, 1, 0, 0, + 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 603, 5, 35, 0, 0, 594, + 596, 5, 36, 0, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, + 1, 0, 0, 0, 597, 603, 5, 37, 0, 0, 598, 603, 5, 38, 0, 0, 599, 603, 3, + 94, 47, 0, 600, 603, 3, 96, 48, 0, 601, 603, 3, 102, 51, 0, 602, 589, 1, + 0, 0, 0, 602, 591, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 602, 598, 1, 0, 0, + 0, 602, 599, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 601, 1, 0, 0, 0, 603, + 89, 1, 0, 0, 0, 604, 616, 3, 92, 46, 0, 605, 607, 5, 36, 0, 0, 606, 605, + 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 616, 5, 35, + 0, 0, 609, 611, 5, 36, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, + 611, 612, 1, 0, 0, 0, 612, 616, 5, 37, 0, 0, 613, 616, 5, 38, 0, 0, 614, + 616, 3, 94, 47, 0, 615, 604, 1, 0, 0, 0, 615, 606, 1, 0, 0, 0, 615, 610, + 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 614, 1, 0, 0, 0, 616, 91, 1, 0, + 0, 0, 617, 618, 7, 1, 0, 0, 618, 93, 1, 0, 0, 0, 619, 620, 3, 28, 14, 0, + 620, 621, 5, 25, 0, 0, 621, 622, 5, 34, 0, 0, 622, 95, 1, 0, 0, 0, 623, + 627, 5, 19, 0, 0, 624, 626, 5, 39, 0, 0, 625, 624, 1, 0, 0, 0, 626, 629, + 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 631, 1, 0, + 0, 0, 629, 627, 1, 0, 0, 0, 630, 632, 3, 98, 49, 0, 631, 630, 1, 0, 0, + 0, 631, 632, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 20, 0, 0, 634, + 97, 1, 0, 0, 0, 635, 657, 3, 100, 50, 0, 636, 653, 3, 100, 50, 0, 637, + 641, 5, 3, 0, 0, 638, 640, 5, 39, 0, 0, 639, 638, 1, 0, 0, 0, 640, 643, + 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 644, 1, 0, + 0, 0, 643, 641, 1, 0, 0, 0, 644, 648, 3, 100, 50, 0, 645, 647, 5, 39, 0, + 0, 646, 645, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 648, + 649, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 651, 637, + 1, 0, 0, 0, 652, 655, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, + 0, 0, 654, 657, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 635, 1, 0, 0, 0, + 656, 636, 1, 0, 0, 0, 657, 99, 1, 0, 0, 0, 658, 661, 3, 28, 14, 0, 659, + 661, 3, 88, 44, 0, 660, 658, 1, 0, 0, 0, 660, 659, 1, 0, 0, 0, 661, 101, + 1, 0, 0, 0, 662, 666, 5, 6, 0, 0, 663, 665, 5, 39, 0, 0, 664, 663, 1, 0, + 0, 0, 665, 668, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, + 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 671, 3, 104, 52, 0, 670, + 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, + 5, 7, 0, 0, 673, 103, 1, 0, 0, 0, 674, 685, 3, 106, 53, 0, 675, 679, 5, + 3, 0, 0, 676, 678, 5, 39, 0, 0, 677, 676, 1, 0, 0, 0, 678, 681, 1, 0, 0, + 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, + 679, 1, 0, 0, 0, 682, 684, 3, 106, 53, 0, 683, 675, 1, 0, 0, 0, 684, 687, + 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 105, 1, 0, + 0, 0, 687, 685, 1, 0, 0, 0, 688, 689, 5, 34, 0, 0, 689, 690, 5, 8, 0, 0, + 690, 694, 3, 100, 50, 0, 691, 693, 5, 39, 0, 0, 692, 691, 1, 0, 0, 0, 693, + 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 107, + 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 699, 3, 4, 2, 0, 698, 697, 1, 0, + 0, 0, 698, 699, 1, 0, 0, 0, 699, 701, 1, 0, 0, 0, 700, 702, 5, 33, 0, 0, + 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, + 704, 5, 26, 0, 0, 704, 705, 3, 110, 55, 0, 705, 109, 1, 0, 0, 0, 706, 708, + 3, 70, 35, 0, 707, 709, 3, 112, 56, 0, 708, 707, 1, 0, 0, 0, 708, 709, + 1, 0, 0, 0, 709, 713, 1, 0, 0, 0, 710, 712, 5, 39, 0, 0, 711, 710, 1, 0, + 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, + 714, 111, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 720, 5, 6, 0, 0, 717, + 719, 5, 39, 0, 0, 718, 717, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, + 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 732, 1, 0, 0, 0, 722, 720, 1, 0, + 0, 0, 723, 727, 5, 32, 0, 0, 724, 726, 5, 39, 0, 0, 725, 724, 1, 0, 0, + 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, + 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 723, 1, 0, 0, 0, 731, 734, + 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 742, 1, 0, + 0, 0, 734, 732, 1, 0, 0, 0, 735, 739, 3, 114, 57, 0, 736, 738, 5, 39, 0, + 0, 737, 736, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, + 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 735, + 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 753, 1, 0, 0, 0, 744, 748, 5, 32, + 0, 0, 745, 747, 5, 39, 0, 0, 746, 745, 1, 0, 0, 0, 747, 750, 1, 0, 0, 0, + 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, + 748, 1, 0, 0, 0, 751, 744, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, + 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 763, 1, 0, 0, 0, 755, 753, 1, 0, + 0, 0, 756, 760, 3, 126, 63, 0, 757, 759, 5, 39, 0, 0, 758, 757, 1, 0, 0, + 0, 759, 762, 1, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, + 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 756, 1, 0, 0, 0, 763, 764, + 1, 0, 0, 0, 764, 774, 1, 0, 0, 0, 765, 769, 5, 32, 0, 0, 766, 768, 5, 39, + 0, 0, 767, 766, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, + 769, 770, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, + 765, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, + 1, 0, 0, 0, 775, 777, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 778, 5, 7, + 0, 0, 778, 113, 1, 0, 0, 0, 779, 781, 3, 116, 58, 0, 780, 782, 5, 39, 0, + 0, 781, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 783, + 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 5, 27, 0, 0, 786, 115, + 1, 0, 0, 0, 787, 789, 3, 118, 59, 0, 788, 790, 5, 3, 0, 0, 789, 788, 1, + 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 793, 5, 32, 0, + 0, 792, 787, 1, 0, 0, 0, 792, 791, 1, 0, 0, 0, 793, 797, 1, 0, 0, 0, 794, + 796, 5, 39, 0, 0, 795, 794, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, + 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, + 0, 0, 800, 792, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, + 802, 803, 1, 0, 0, 0, 803, 117, 1, 0, 0, 0, 804, 806, 3, 4, 2, 0, 805, + 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, + 5, 34, 0, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, + 0, 0, 810, 811, 3, 120, 60, 0, 811, 119, 1, 0, 0, 0, 812, 816, 3, 28, 14, + 0, 813, 815, 5, 39, 0, 0, 814, 813, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, + 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, + 1, 0, 0, 0, 819, 821, 3, 52, 26, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, + 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 824, 3, 122, 61, 0, 823, 822, 1, 0, + 0, 0, 823, 824, 1, 0, 0, 0, 824, 828, 1, 0, 0, 0, 825, 827, 5, 39, 0, 0, + 826, 825, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, + 829, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 833, + 3, 124, 62, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 121, 1, + 0, 0, 0, 834, 835, 5, 28, 0, 0, 835, 123, 1, 0, 0, 0, 836, 840, 5, 6, 0, + 0, 837, 839, 5, 39, 0, 0, 838, 837, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, + 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 1, 0, 0, 0, 842, 840, + 1, 0, 0, 0, 843, 844, 3, 116, 58, 0, 844, 845, 5, 7, 0, 0, 845, 125, 1, + 0, 0, 0, 846, 849, 3, 128, 64, 0, 847, 849, 5, 32, 0, 0, 848, 846, 1, 0, + 0, 0, 848, 847, 1, 0, 0, 0, 849, 862, 1, 0, 0, 0, 850, 852, 5, 39, 0, 0, + 851, 850, 1, 0, 0, 0, 852, 855, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 853, + 854, 1, 0, 0, 0, 854, 858, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 859, + 3, 128, 64, 0, 857, 859, 5, 32, 0, 0, 858, 856, 1, 0, 0, 0, 858, 857, 1, + 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 853, 1, 0, 0, 0, 861, 864, 1, 0, 0, + 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 127, 1, 0, 0, 0, 864, + 862, 1, 0, 0, 0, 865, 868, 3, 130, 65, 0, 866, 868, 3, 136, 68, 0, 867, + 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 868, 129, 1, 0, 0, 0, 869, 870, + 3, 132, 66, 0, 870, 871, 5, 29, 0, 0, 871, 872, 3, 140, 70, 0, 872, 131, + 1, 0, 0, 0, 873, 876, 3, 138, 69, 0, 874, 876, 3, 134, 67, 0, 875, 873, + 1, 0, 0, 0, 875, 874, 1, 0, 0, 0, 876, 133, 1, 0, 0, 0, 877, 881, 5, 19, + 0, 0, 878, 880, 5, 39, 0, 0, 879, 878, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, + 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, + 881, 1, 0, 0, 0, 884, 901, 3, 138, 69, 0, 885, 889, 5, 3, 0, 0, 886, 888, + 5, 39, 0, 0, 887, 886, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, + 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, + 892, 896, 3, 138, 69, 0, 893, 895, 5, 39, 0, 0, 894, 893, 1, 0, 0, 0, 895, + 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 900, + 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 885, 1, 0, 0, 0, 900, 903, 1, 0, + 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, + 903, 901, 1, 0, 0, 0, 904, 905, 5, 20, 0, 0, 905, 135, 1, 0, 0, 0, 906, + 907, 3, 154, 77, 0, 907, 908, 5, 30, 0, 0, 908, 909, 3, 154, 77, 0, 909, + 137, 1, 0, 0, 0, 910, 914, 3, 148, 74, 0, 911, 914, 3, 146, 73, 0, 912, + 914, 3, 90, 45, 0, 913, 910, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 912, + 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 917, 3, 164, 82, 0, 916, 915, 1, + 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 139, 1, 0, 0, 0, 918, 922, 3, 142, + 71, 0, 919, 922, 3, 166, 83, 0, 920, 922, 3, 168, 84, 0, 921, 918, 1, 0, + 0, 0, 921, 919, 1, 0, 0, 0, 921, 920, 1, 0, 0, 0, 922, 141, 1, 0, 0, 0, + 923, 924, 3, 130, 65, 0, 924, 143, 1, 0, 0, 0, 925, 929, 5, 2, 0, 0, 926, + 928, 5, 39, 0, 0, 927, 926, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, + 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, + 0, 0, 932, 936, 3, 128, 64, 0, 933, 935, 5, 39, 0, 0, 934, 933, 1, 0, 0, + 0, 935, 938, 1, 0, 0, 0, 936, 934, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, + 939, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 5, 4, 0, 0, 940, 145, + 1, 0, 0, 0, 941, 942, 5, 31, 0, 0, 942, 943, 3, 28, 14, 0, 943, 147, 1, + 0, 0, 0, 944, 949, 3, 154, 77, 0, 945, 949, 3, 156, 78, 0, 946, 949, 3, + 150, 75, 0, 947, 949, 3, 152, 76, 0, 948, 944, 1, 0, 0, 0, 948, 945, 1, + 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 947, 1, 0, 0, 0, 949, 149, 1, 0, 0, + 0, 950, 951, 3, 158, 79, 0, 951, 151, 1, 0, 0, 0, 952, 953, 3, 158, 79, + 0, 953, 954, 3, 162, 81, 0, 954, 153, 1, 0, 0, 0, 955, 957, 3, 158, 79, + 0, 956, 955, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, + 959, 5, 8, 0, 0, 959, 960, 3, 160, 80, 0, 960, 155, 1, 0, 0, 0, 961, 963, + 3, 158, 79, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, + 0, 0, 0, 964, 965, 5, 8, 0, 0, 965, 966, 3, 160, 80, 0, 966, 967, 3, 162, + 81, 0, 967, 157, 1, 0, 0, 0, 968, 969, 5, 34, 0, 0, 969, 159, 1, 0, 0, + 0, 970, 971, 5, 34, 0, 0, 971, 161, 1, 0, 0, 0, 972, 973, 5, 19, 0, 0, + 973, 974, 5, 35, 0, 0, 974, 975, 5, 20, 0, 0, 975, 163, 1, 0, 0, 0, 976, + 977, 5, 11, 0, 0, 977, 982, 5, 34, 0, 0, 978, 979, 5, 11, 0, 0, 979, 981, + 5, 34, 0, 0, 980, 978, 1, 0, 0, 0, 981, 984, 1, 0, 0, 0, 982, 980, 1, 0, + 0, 0, 982, 983, 1, 0, 0, 0, 983, 165, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, + 985, 988, 3, 148, 74, 0, 986, 988, 3, 144, 72, 0, 987, 985, 1, 0, 0, 0, + 987, 986, 1, 0, 0, 0, 988, 167, 1, 0, 0, 0, 989, 993, 5, 19, 0, 0, 990, + 992, 5, 39, 0, 0, 991, 990, 1, 0, 0, 0, 992, 995, 1, 0, 0, 0, 993, 991, + 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 993, 1, 0, + 0, 0, 996, 1013, 3, 166, 83, 0, 997, 1001, 5, 3, 0, 0, 998, 1000, 5, 39, + 0, 0, 999, 998, 1, 0, 0, 0, 1000, 1003, 1, 0, 0, 0, 1001, 999, 1, 0, 0, + 0, 1001, 1002, 1, 0, 0, 0, 1002, 1004, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, + 0, 1004, 1008, 3, 166, 83, 0, 1005, 1007, 5, 39, 0, 0, 1006, 1005, 1, 0, + 0, 0, 1007, 1010, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, + 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1011, 997, 1, 0, + 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, + 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1017, 5, 20, + 0, 0, 1017, 169, 1, 0, 0, 0, 137, 173, 175, 185, 192, 197, 205, 213, 219, + 226, 232, 238, 242, 247, 255, 261, 269, 279, 284, 297, 304, 307, 310, 316, + 320, 329, 335, 340, 345, 351, 355, 361, 369, 375, 381, 388, 394, 401, 409, + 415, 421, 430, 437, 441, 449, 454, 462, 469, 476, 482, 486, 489, 496, 503, + 514, 518, 525, 528, 534, 539, 544, 549, 555, 562, 567, 571, 581, 586, 591, + 595, 602, 606, 610, 615, 627, 631, 641, 648, 653, 656, 660, 666, 670, 679, + 685, 694, 698, 701, 708, 713, 720, 727, 732, 739, 742, 748, 753, 760, 763, + 769, 774, 783, 789, 792, 797, 802, 805, 808, 816, 820, 823, 828, 832, 840, + 848, 853, 858, 862, 867, 875, 881, 889, 896, 901, 913, 916, 921, 929, 936, + 948, 956, 962, 982, 987, 993, 1001, 1008, 1013, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -605,16 +599,15 @@ const ( nevaParserT__28 = 29 nevaParserT__29 = 30 nevaParserT__30 = 31 - nevaParserT__31 = 32 - nevaParserCOMMENT = 33 - nevaParserPUB_KW = 34 - nevaParserIDENTIFIER = 35 - nevaParserINT = 36 - nevaParserMINUS = 37 - nevaParserFLOAT = 38 - nevaParserSTRING = 39 - nevaParserNEWLINE = 40 - nevaParserWS = 41 + nevaParserCOMMENT = 32 + nevaParserPUB_KW = 33 + nevaParserIDENTIFIER = 34 + nevaParserINT = 35 + nevaParserMINUS = 36 + nevaParserFLOAT = 37 + nevaParserSTRING = 38 + nevaParserNEWLINE = 39 + nevaParserWS = 40 ) // nevaParser rules. @@ -665,46 +658,45 @@ const ( nevaParserRULE_constDef = 43 nevaParserRULE_constLit = 44 nevaParserRULE_primitiveConstLit = 45 - nevaParserRULE_nil = 46 - nevaParserRULE_bool = 47 - nevaParserRULE_enumLit = 48 - nevaParserRULE_listLit = 49 - nevaParserRULE_listItems = 50 - nevaParserRULE_compositeItem = 51 - nevaParserRULE_structLit = 52 - nevaParserRULE_structValueFields = 53 - nevaParserRULE_structValueField = 54 - nevaParserRULE_compStmt = 55 - nevaParserRULE_compDef = 56 - nevaParserRULE_compBody = 57 - nevaParserRULE_compNodesDef = 58 - nevaParserRULE_compNodesDefBody = 59 - nevaParserRULE_compNodeDef = 60 - nevaParserRULE_nodeInst = 61 - nevaParserRULE_errGuard = 62 - nevaParserRULE_nodeDIArgs = 63 - nevaParserRULE_connDefList = 64 - nevaParserRULE_connDef = 65 - nevaParserRULE_normConnDef = 66 - nevaParserRULE_senderSide = 67 - nevaParserRULE_multipleSenderSide = 68 - nevaParserRULE_arrBypassConnDef = 69 - nevaParserRULE_singleSenderSide = 70 - nevaParserRULE_receiverSide = 71 - nevaParserRULE_chainedNormConn = 72 - nevaParserRULE_deferredConn = 73 - nevaParserRULE_senderConstRef = 74 - nevaParserRULE_portAddr = 75 - nevaParserRULE_lonelySinglePortAddr = 76 - nevaParserRULE_lonelyArrPortAddr = 77 - nevaParserRULE_singlePortAddr = 78 - nevaParserRULE_arrPortAddr = 79 - nevaParserRULE_portAddrNode = 80 - nevaParserRULE_portAddrPort = 81 - nevaParserRULE_portAddrIdx = 82 - nevaParserRULE_structSelectors = 83 - nevaParserRULE_singleReceiverSide = 84 - nevaParserRULE_multipleReceiverSide = 85 + nevaParserRULE_bool = 46 + nevaParserRULE_enumLit = 47 + nevaParserRULE_listLit = 48 + nevaParserRULE_listItems = 49 + nevaParserRULE_compositeItem = 50 + nevaParserRULE_structLit = 51 + nevaParserRULE_structValueFields = 52 + nevaParserRULE_structValueField = 53 + nevaParserRULE_compStmt = 54 + nevaParserRULE_compDef = 55 + nevaParserRULE_compBody = 56 + nevaParserRULE_compNodesDef = 57 + nevaParserRULE_compNodesDefBody = 58 + nevaParserRULE_compNodeDef = 59 + nevaParserRULE_nodeInst = 60 + nevaParserRULE_errGuard = 61 + nevaParserRULE_nodeDIArgs = 62 + nevaParserRULE_connDefList = 63 + nevaParserRULE_connDef = 64 + nevaParserRULE_normConnDef = 65 + nevaParserRULE_senderSide = 66 + nevaParserRULE_multipleSenderSide = 67 + nevaParserRULE_arrBypassConnDef = 68 + nevaParserRULE_singleSenderSide = 69 + nevaParserRULE_receiverSide = 70 + nevaParserRULE_chainedNormConn = 71 + nevaParserRULE_deferredConn = 72 + nevaParserRULE_senderConstRef = 73 + nevaParserRULE_portAddr = 74 + nevaParserRULE_lonelySinglePortAddr = 75 + nevaParserRULE_lonelyArrPortAddr = 76 + nevaParserRULE_singlePortAddr = 77 + nevaParserRULE_arrPortAddr = 78 + nevaParserRULE_portAddrNode = 79 + nevaParserRULE_portAddrPort = 80 + nevaParserRULE_portAddrIdx = 81 + nevaParserRULE_structSelectors = 82 + nevaParserRULE_singleReceiverSide = 83 + nevaParserRULE_multipleReceiverSide = 84 ) // IProgContext is an interface to support dynamic dispatch. @@ -846,15 +838,15 @@ func (p *nevaParser) Prog() (localctx IProgContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(177) + p.SetState(175) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1125418012706) != 0 { - p.SetState(175) + for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&562710188066) != 0 { + p.SetState(173) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -863,7 +855,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { switch p.GetTokenStream().LA(1) { case nevaParserNEWLINE: { - p.SetState(172) + p.SetState(170) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -873,7 +865,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { case nevaParserCOMMENT: { - p.SetState(173) + p.SetState(171) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -881,9 +873,9 @@ func (p *nevaParser) Prog() (localctx IProgContext) { } } - case nevaParserT__0, nevaParserT__4, nevaParserT__11, nevaParserT__17, nevaParserT__20, nevaParserT__26, nevaParserPUB_KW: + case nevaParserT__0, nevaParserT__4, nevaParserT__11, nevaParserT__17, nevaParserT__20, nevaParserT__25, nevaParserPUB_KW: { - p.SetState(174) + p.SetState(172) p.Stmt() } @@ -892,7 +884,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { goto errorExit } - p.SetState(179) + p.SetState(177) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -900,7 +892,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(180) + p.SetState(178) p.Match(nevaParserEOF) if p.HasError() { // Recognition error - abort rule @@ -1074,7 +1066,7 @@ func (s *StmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) Stmt() (localctx IStmtContext) { localctx = NewStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 2, nevaParserRULE_stmt) - p.SetState(187) + p.SetState(185) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1084,35 +1076,35 @@ func (p *nevaParser) Stmt() (localctx IStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(182) + p.SetState(180) p.ImportStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(183) + p.SetState(181) p.TypeStmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(184) + p.SetState(182) p.InterfaceStmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(185) + p.SetState(183) p.ConstStmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(186) + p.SetState(184) p.CompStmt() } @@ -1257,7 +1249,7 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(192) + p.SetState(190) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1266,11 +1258,11 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) for ok := true; ok; ok = _la == nevaParserT__0 { { - p.SetState(189) + p.SetState(187) p.CompilerDirective() } { - p.SetState(190) + p.SetState(188) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -1278,7 +1270,7 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) } } - p.SetState(194) + p.SetState(192) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1393,7 +1385,7 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(196) + p.SetState(194) p.Match(nevaParserT__0) if p.HasError() { // Recognition error - abort rule @@ -1401,14 +1393,14 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { } } { - p.SetState(197) + p.SetState(195) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(199) + p.SetState(197) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1417,7 +1409,7 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { if _la == nevaParserT__1 { { - p.SetState(198) + p.SetState(196) p.CompilerDirectivesArgs() } @@ -1551,7 +1543,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC p.EnterOuterAlt(localctx, 1) { - p.SetState(201) + p.SetState(199) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule @@ -1559,10 +1551,10 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC } } { - p.SetState(202) + p.SetState(200) p.Compiler_directive_arg() } - p.SetState(207) + p.SetState(205) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1571,7 +1563,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC for _la == nevaParserT__2 { { - p.SetState(203) + p.SetState(201) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -1579,11 +1571,11 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC } } { - p.SetState(204) + p.SetState(202) p.Compiler_directive_arg() } - p.SetState(209) + p.SetState(207) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1591,7 +1583,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC _la = p.GetTokenStream().LA(1) } { - p.SetState(210) + p.SetState(208) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -1693,7 +1685,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(213) + p.SetState(211) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1702,7 +1694,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC for ok := true; ok; ok = _la == nevaParserIDENTIFIER { { - p.SetState(212) + p.SetState(210) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -1710,7 +1702,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC } } - p.SetState(215) + p.SetState(213) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1856,14 +1848,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(217) + p.SetState(215) p.Match(nevaParserT__4) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(221) + p.SetState(219) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1872,7 +1864,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(218) + p.SetState(216) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -1880,7 +1872,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { } } - p.SetState(223) + p.SetState(221) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1888,14 +1880,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(224) + p.SetState(222) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(228) + p.SetState(226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1904,7 +1896,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(225) + p.SetState(223) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -1912,14 +1904,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { } } - p.SetState(230) + p.SetState(228) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(234) + p.SetState(232) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1928,11 +1920,11 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserT__8 || _la == nevaParserIDENTIFIER { { - p.SetState(231) + p.SetState(229) p.ImportDef() } - p.SetState(236) + p.SetState(234) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1940,7 +1932,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(237) + p.SetState(235) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -2076,12 +2068,12 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(240) + p.SetState(238) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 10, p.GetParserRuleContext()) == 1 { { - p.SetState(239) + p.SetState(237) p.ImportAlias() } @@ -2089,10 +2081,10 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { goto errorExit } { - p.SetState(242) + p.SetState(240) p.ImportPath() } - p.SetState(244) + p.SetState(242) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2101,7 +2093,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { if _la == nevaParserT__2 { { - p.SetState(243) + p.SetState(241) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -2110,7 +2102,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { } } - p.SetState(249) + p.SetState(247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2119,7 +2111,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(246) + p.SetState(244) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -2127,7 +2119,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { } } - p.SetState(251) + p.SetState(249) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2223,7 +2215,7 @@ func (p *nevaParser) ImportAlias() (localctx IImportAliasContext) { p.EnterRule(localctx, 16, nevaParserRULE_importAlias) p.EnterOuterAlt(localctx, 1) { - p.SetState(252) + p.SetState(250) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2347,16 +2339,16 @@ func (p *nevaParser) ImportPath() (localctx IImportPathContext) { localctx = NewImportPathContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 18, nevaParserRULE_importPath) p.EnterOuterAlt(localctx, 1) - p.SetState(257) + p.SetState(255) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 13, p.GetParserRuleContext()) == 1 { { - p.SetState(254) + p.SetState(252) p.ImportPathMod() } { - p.SetState(255) + p.SetState(253) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -2368,7 +2360,7 @@ func (p *nevaParser) ImportPath() (localctx IImportPathContext) { goto errorExit } { - p.SetState(259) + p.SetState(257) p.ImportPathPkg() } @@ -2470,7 +2462,7 @@ func (s *ImportPathModContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ImportPathMod() (localctx IImportPathModContext) { localctx = NewImportPathModContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 20, nevaParserRULE_importPathMod) - p.SetState(263) + p.SetState(261) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2480,7 +2472,7 @@ func (p *nevaParser) ImportPathMod() (localctx IImportPathModContext) { case nevaParserT__8: p.EnterOuterAlt(localctx, 1) { - p.SetState(261) + p.SetState(259) p.Match(nevaParserT__8) if p.HasError() { // Recognition error - abort rule @@ -2491,7 +2483,7 @@ func (p *nevaParser) ImportPathMod() (localctx IImportPathModContext) { case nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(262) + p.SetState(260) p.ImportMod() } @@ -2638,14 +2630,14 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(265) + p.SetState(263) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(271) + p.SetState(269) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2654,11 +2646,11 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { for _la == nevaParserT__9 || _la == nevaParserT__10 { { - p.SetState(266) + p.SetState(264) p.ImportModeDelim() } { - p.SetState(267) + p.SetState(265) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2666,7 +2658,7 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { } } - p.SetState(273) + p.SetState(271) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2755,7 +2747,7 @@ func (p *nevaParser) ImportModeDelim() (localctx IImportModeDelimContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(274) + p.SetState(272) _la = p.GetTokenStream().LA(1) if !(_la == nevaParserT__9 || _la == nevaParserT__10) { @@ -2861,14 +2853,14 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(276) + p.SetState(274) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(281) + p.SetState(279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2877,7 +2869,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { for _la == nevaParserT__9 { { - p.SetState(277) + p.SetState(275) p.Match(nevaParserT__9) if p.HasError() { // Recognition error - abort rule @@ -2885,7 +2877,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { } } { - p.SetState(278) + p.SetState(276) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2893,7 +2885,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { } } - p.SetState(283) + p.SetState(281) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3016,7 +3008,7 @@ func (s *EntityRefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) EntityRef() (localctx IEntityRefContext) { localctx = NewEntityRefContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 28, nevaParserRULE_entityRef) - p.SetState(286) + p.SetState(284) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3026,14 +3018,14 @@ func (p *nevaParser) EntityRef() (localctx IEntityRefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(284) + p.SetState(282) p.ImportedEntityRef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(285) + p.SetState(283) p.LocalEntityRef() } @@ -3129,7 +3121,7 @@ func (p *nevaParser) LocalEntityRef() (localctx ILocalEntityRefContext) { p.EnterRule(localctx, 30, nevaParserRULE_localEntityRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(288) + p.SetState(286) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3254,11 +3246,11 @@ func (p *nevaParser) ImportedEntityRef() (localctx IImportedEntityRefContext) { p.EnterRule(localctx, 32, nevaParserRULE_importedEntityRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(290) + p.SetState(288) p.PkgRef() } { - p.SetState(291) + p.SetState(289) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -3266,7 +3258,7 @@ func (p *nevaParser) ImportedEntityRef() (localctx IImportedEntityRefContext) { } } { - p.SetState(292) + p.SetState(290) p.EntityName() } @@ -3358,7 +3350,7 @@ func (p *nevaParser) PkgRef() (localctx IPkgRefContext) { p.EnterRule(localctx, 34, nevaParserRULE_pkgRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(294) + p.SetState(292) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3454,7 +3446,7 @@ func (p *nevaParser) EntityName() (localctx IEntityNameContext) { p.EnterRule(localctx, 36, nevaParserRULE_entityName) p.EnterOuterAlt(localctx, 1) { - p.SetState(296) + p.SetState(294) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3568,7 +3560,7 @@ func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(299) + p.SetState(297) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3577,7 +3569,7 @@ func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(298) + p.SetState(296) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -3587,7 +3579,7 @@ func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { } { - p.SetState(301) + p.SetState(299) p.Match(nevaParserT__11) if p.HasError() { // Recognition error - abort rule @@ -3595,7 +3587,7 @@ func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { } } { - p.SetState(302) + p.SetState(300) p.TypeDef() } @@ -3728,14 +3720,14 @@ func (p *nevaParser) TypeDef() (localctx ITypeDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(304) + p.SetState(302) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(306) + p.SetState(304) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3744,31 +3736,31 @@ func (p *nevaParser) TypeDef() (localctx ITypeDefContext) { if _la == nevaParserT__12 { { - p.SetState(305) + p.SetState(303) p.TypeParams() } } - p.SetState(309) + p.SetState(307) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&34359836672) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&17179967488) != 0 { { - p.SetState(308) + p.SetState(306) p.TypeExpr() } } - p.SetState(312) + p.SetState(310) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 21, p.GetParserRuleContext()) == 1 { { - p.SetState(311) + p.SetState(309) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -3892,14 +3884,14 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(314) + p.SetState(312) p.Match(nevaParserT__12) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(318) + p.SetState(316) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3908,7 +3900,7 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { for _la == nevaParserNEWLINE { { - p.SetState(315) + p.SetState(313) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -3916,14 +3908,14 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { } } - p.SetState(320) + p.SetState(318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(322) + p.SetState(320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3932,13 +3924,13 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(321) + p.SetState(319) p.TypeParamList() } } { - p.SetState(324) + p.SetState(322) p.Match(nevaParserT__13) if p.HasError() { // Recognition error - abort rule @@ -4084,10 +4076,10 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(326) + p.SetState(324) p.TypeParam() } - p.SetState(337) + p.SetState(335) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4096,14 +4088,14 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { for _la == nevaParserT__2 { { - p.SetState(327) + p.SetState(325) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(331) + p.SetState(329) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4112,7 +4104,7 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { for _la == nevaParserNEWLINE { { - p.SetState(328) + p.SetState(326) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4120,7 +4112,7 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { } } - p.SetState(333) + p.SetState(331) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4128,11 +4120,11 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(334) + p.SetState(332) p.TypeParam() } - p.SetState(339) + p.SetState(337) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4257,28 +4249,28 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(340) + p.SetState(338) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(342) + p.SetState(340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&34359836672) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&17179967488) != 0 { { - p.SetState(341) + p.SetState(339) p.TypeExpr() } } - p.SetState(347) + p.SetState(345) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4287,7 +4279,7 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { for _la == nevaParserNEWLINE { { - p.SetState(344) + p.SetState(342) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4295,7 +4287,7 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { } } - p.SetState(349) + p.SetState(347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4435,7 +4427,7 @@ func (s *TypeExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) TypeExpr() (localctx ITypeExprContext) { localctx = NewTypeExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 48, nevaParserRULE_typeExpr) - p.SetState(353) + p.SetState(351) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4445,21 +4437,21 @@ func (p *nevaParser) TypeExpr() (localctx ITypeExprContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(350) + p.SetState(348) p.TypeInstExpr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(351) + p.SetState(349) p.TypeLitExpr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(352) + p.SetState(350) p.UnionTypeExpr() } @@ -4586,10 +4578,10 @@ func (p *nevaParser) TypeInstExpr() (localctx ITypeInstExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(355) + p.SetState(353) p.EntityRef() } - p.SetState(357) + p.SetState(355) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4598,7 +4590,7 @@ func (p *nevaParser) TypeInstExpr() (localctx ITypeInstExprContext) { if _la == nevaParserT__12 { { - p.SetState(356) + p.SetState(354) p.TypeArgs() } @@ -4742,14 +4734,14 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(359) + p.SetState(357) p.Match(nevaParserT__12) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(363) + p.SetState(361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4758,7 +4750,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(360) + p.SetState(358) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4766,7 +4758,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(365) + p.SetState(363) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4774,10 +4766,10 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(366) + p.SetState(364) p.TypeExpr() } - p.SetState(377) + p.SetState(375) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4786,14 +4778,14 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserT__2 { { - p.SetState(367) + p.SetState(365) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(371) + p.SetState(369) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4802,7 +4794,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(368) + p.SetState(366) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4810,7 +4802,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(373) + p.SetState(371) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4818,18 +4810,18 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(374) + p.SetState(372) p.TypeExpr() } - p.SetState(379) + p.SetState(377) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(383) + p.SetState(381) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4838,7 +4830,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(380) + p.SetState(378) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4846,7 +4838,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(385) + p.SetState(383) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4854,7 +4846,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(386) + p.SetState(384) p.Match(nevaParserT__13) if p.HasError() { // Recognition error - abort rule @@ -4977,7 +4969,7 @@ func (s *TypeLitExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) TypeLitExpr() (localctx ITypeLitExprContext) { localctx = NewTypeLitExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 54, nevaParserRULE_typeLitExpr) - p.SetState(390) + p.SetState(388) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4987,14 +4979,14 @@ func (p *nevaParser) TypeLitExpr() (localctx ITypeLitExprContext) { case nevaParserT__14: p.EnterOuterAlt(localctx, 1) { - p.SetState(388) + p.SetState(386) p.EnumTypeExpr() } case nevaParserT__15: p.EnterOuterAlt(localctx, 2) { - p.SetState(389) + p.SetState(387) p.StructTypeExpr() } @@ -5108,14 +5100,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(392) + p.SetState(390) p.Match(nevaParserT__14) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(396) + p.SetState(394) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5124,7 +5116,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(393) + p.SetState(391) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5132,7 +5124,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(398) + p.SetState(396) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5140,14 +5132,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(399) + p.SetState(397) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(403) + p.SetState(401) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5156,7 +5148,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(400) + p.SetState(398) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5164,7 +5156,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(405) + p.SetState(403) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5172,14 +5164,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(406) + p.SetState(404) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(417) + p.SetState(415) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5188,14 +5180,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserT__2 { { - p.SetState(407) + p.SetState(405) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(411) + p.SetState(409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5204,7 +5196,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(408) + p.SetState(406) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5212,7 +5204,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(413) + p.SetState(411) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5220,7 +5212,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(414) + p.SetState(412) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -5228,14 +5220,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(419) + p.SetState(417) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(423) + p.SetState(421) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5244,7 +5236,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(420) + p.SetState(418) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5252,7 +5244,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(425) + p.SetState(423) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5260,7 +5252,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(426) + p.SetState(424) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -5380,14 +5372,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(428) + p.SetState(426) p.Match(nevaParserT__15) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(432) + p.SetState(430) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5396,7 +5388,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(429) + p.SetState(427) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5404,7 +5396,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { } } - p.SetState(434) + p.SetState(432) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5412,14 +5404,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(435) + p.SetState(433) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(439) + p.SetState(437) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5428,7 +5420,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(436) + p.SetState(434) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5436,14 +5428,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { } } - p.SetState(441) + p.SetState(439) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(443) + p.SetState(441) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5452,13 +5444,13 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(442) + p.SetState(440) p.StructFields() } } { - p.SetState(445) + p.SetState(443) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -5604,10 +5596,10 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(447) + p.SetState(445) p.StructField() } - p.SetState(456) + p.SetState(454) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5615,7 +5607,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { _la = p.GetTokenStream().LA(1) for _la == nevaParserNEWLINE { - p.SetState(449) + p.SetState(447) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5624,7 +5616,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { for ok := true; ok; ok = _la == nevaParserNEWLINE { { - p.SetState(448) + p.SetState(446) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5632,7 +5624,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { } } - p.SetState(451) + p.SetState(449) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5640,11 +5632,11 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(453) + p.SetState(451) p.StructField() } - p.SetState(458) + p.SetState(456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5769,7 +5761,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(459) + p.SetState(457) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -5777,10 +5769,10 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { } } { - p.SetState(460) + p.SetState(458) p.TypeExpr() } - p.SetState(464) + p.SetState(462) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5792,7 +5784,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(461) + p.SetState(459) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5801,7 +5793,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { } } - p.SetState(466) + p.SetState(464) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5952,10 +5944,10 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(467) + p.SetState(465) p.NonUnionTypeExpr() } - p.SetState(482) + p.SetState(480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5964,7 +5956,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for ok := true; ok; ok = _alt != 2 && _alt != antlr.ATNInvalidAltNumber { switch _alt { case 1: - p.SetState(471) + p.SetState(469) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5973,7 +5965,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(468) + p.SetState(466) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5981,7 +5973,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { } } - p.SetState(473) + p.SetState(471) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5989,14 +5981,14 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(474) + p.SetState(472) p.Match(nevaParserT__16) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(478) + p.SetState(476) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6005,7 +5997,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(475) + p.SetState(473) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6013,7 +6005,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { } } - p.SetState(480) + p.SetState(478) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6021,7 +6013,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(481) + p.SetState(479) p.NonUnionTypeExpr() } @@ -6030,7 +6022,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { goto errorExit } - p.SetState(484) + p.SetState(482) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 48, p.GetParserRuleContext()) if p.HasError() { @@ -6153,7 +6145,7 @@ func (s *NonUnionTypeExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NonUnionTypeExpr() (localctx INonUnionTypeExprContext) { localctx = NewNonUnionTypeExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 66, nevaParserRULE_nonUnionTypeExpr) - p.SetState(488) + p.SetState(486) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6163,14 +6155,14 @@ func (p *nevaParser) NonUnionTypeExpr() (localctx INonUnionTypeExprContext) { case nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(486) + p.SetState(484) p.TypeInstExpr() } case nevaParserT__14, nevaParserT__15: p.EnterOuterAlt(localctx, 2) { - p.SetState(487) + p.SetState(485) p.TypeLitExpr() } @@ -6285,7 +6277,7 @@ func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(491) + p.SetState(489) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6294,7 +6286,7 @@ func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(490) + p.SetState(488) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -6304,7 +6296,7 @@ func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { } { - p.SetState(493) + p.SetState(491) p.Match(nevaParserT__17) if p.HasError() { // Recognition error - abort rule @@ -6312,7 +6304,7 @@ func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { } } { - p.SetState(494) + p.SetState(492) p.InterfaceDef() } @@ -6469,14 +6461,14 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(496) + p.SetState(494) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(498) + p.SetState(496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6485,20 +6477,20 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { if _la == nevaParserT__12 { { - p.SetState(497) + p.SetState(495) p.TypeParams() } } { - p.SetState(500) + p.SetState(498) p.InPortsDef() } { - p.SetState(501) + p.SetState(499) p.OutPortsDef() } - p.SetState(505) + p.SetState(503) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6510,7 +6502,7 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(502) + p.SetState(500) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6519,7 +6511,7 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { } } - p.SetState(507) + p.SetState(505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6630,7 +6622,7 @@ func (p *nevaParser) InPortsDef() (localctx IInPortsDefContext) { p.EnterRule(localctx, 72, nevaParserRULE_inPortsDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(508) + p.SetState(506) p.PortsDef() } @@ -6734,7 +6726,7 @@ func (p *nevaParser) OutPortsDef() (localctx IOutPortsDefContext) { p.EnterRule(localctx, 74, nevaParserRULE_outPortsDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(510) + p.SetState(508) p.PortsDef() } @@ -6876,14 +6868,14 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(512) + p.SetState(510) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(530) + p.SetState(528) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6891,7 +6883,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 56, p.GetParserRuleContext()) { case 1: - p.SetState(516) + p.SetState(514) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6900,7 +6892,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(513) + p.SetState(511) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6908,7 +6900,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } } - p.SetState(518) + p.SetState(516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6917,16 +6909,16 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } case 2: - p.SetState(520) + p.SetState(518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1133871890432) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&566936207360) != 0 { { - p.SetState(519) + p.SetState(517) p.PortDef() } @@ -6934,10 +6926,10 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { case 3: { - p.SetState(522) + p.SetState(520) p.PortDef() } - p.SetState(527) + p.SetState(525) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6946,7 +6938,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { for _la == nevaParserT__2 { { - p.SetState(523) + p.SetState(521) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -6954,11 +6946,11 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } } { - p.SetState(524) + p.SetState(522) p.PortDef() } - p.SetState(529) + p.SetState(527) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6970,7 +6962,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { goto errorExit } { - p.SetState(532) + p.SetState(530) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -7093,7 +7085,7 @@ func (s *PortDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortDef() (localctx IPortDefContext) { localctx = NewPortDefContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 78, nevaParserRULE_portDef) - p.SetState(536) + p.SetState(534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7103,14 +7095,14 @@ func (p *nevaParser) PortDef() (localctx IPortDefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(534) + p.SetState(532) p.SinglePortDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(535) + p.SetState(533) p.ArrayPortDef() } @@ -7234,7 +7226,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(541) + p.SetState(539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7243,7 +7235,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(538) + p.SetState(536) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7251,7 +7243,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { } } - p.SetState(543) + p.SetState(541) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7259,28 +7251,28 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(544) + p.SetState(542) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(546) + p.SetState(544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&34359836672) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&17179967488) != 0 { { - p.SetState(545) + p.SetState(543) p.TypeExpr() } } - p.SetState(551) + p.SetState(549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7289,7 +7281,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(548) + p.SetState(546) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7297,7 +7289,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { } } - p.SetState(553) + p.SetState(551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7421,7 +7413,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(557) + p.SetState(555) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7430,7 +7422,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(554) + p.SetState(552) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7438,7 +7430,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } - p.SetState(559) + p.SetState(557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7446,7 +7438,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(560) + p.SetState(558) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule @@ -7454,7 +7446,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } { - p.SetState(561) + p.SetState(559) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -7462,28 +7454,28 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } { - p.SetState(562) + p.SetState(560) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(564) + p.SetState(562) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&34359836672) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&17179967488) != 0 { { - p.SetState(563) + p.SetState(561) p.TypeExpr() } } - p.SetState(569) + p.SetState(567) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7492,7 +7484,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(566) + p.SetState(564) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7500,7 +7492,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } - p.SetState(571) + p.SetState(569) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7614,7 +7606,7 @@ func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(573) + p.SetState(571) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7623,7 +7615,7 @@ func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(572) + p.SetState(570) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -7633,7 +7625,7 @@ func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { } { - p.SetState(575) + p.SetState(573) p.Match(nevaParserT__20) if p.HasError() { // Recognition error - abort rule @@ -7641,7 +7633,7 @@ func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { } } { - p.SetState(576) + p.SetState(574) p.ConstDef() } @@ -7796,7 +7788,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(578) + p.SetState(576) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -7804,18 +7796,18 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { } } { - p.SetState(579) + p.SetState(577) p.TypeExpr() } { - p.SetState(580) + p.SetState(578) p.Match(nevaParserT__21) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(583) + p.SetState(581) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7824,20 +7816,20 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 65, p.GetParserRuleContext()) { case 1: { - p.SetState(581) + p.SetState(579) p.EntityRef() } case 2: { - p.SetState(582) + p.SetState(580) p.ConstLit() } case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(588) + p.SetState(586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7849,7 +7841,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(585) + p.SetState(583) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7858,7 +7850,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { } } - p.SetState(590) + p.SetState(588) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7890,7 +7882,6 @@ type IConstLitContext interface { GetParser() antlr.Parser // Getter signatures - Nil_() INilContext Bool_() IBoolContext INT() antlr.TerminalNode MINUS() antlr.TerminalNode @@ -7936,22 +7927,6 @@ func NewConstLitContext(parser antlr.Parser, parent antlr.ParserRuleContext, inv func (s *ConstLitContext) GetParser() antlr.Parser { return s.parser } -func (s *ConstLitContext) Nil_() INilContext { - var t antlr.RuleContext - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(INilContext); ok { - t = ctx.(antlr.RuleContext) - break - } - } - - if t == nil { - return nil - } - - return t.(INilContext) -} - func (s *ConstLitContext) Bool_() IBoolContext { var t antlr.RuleContext for _, ctx := range s.GetChildren() { @@ -8057,7 +8032,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { p.EnterRule(localctx, 88, nevaParserRULE_constLit) var _la int - p.SetState(605) + p.SetState(602) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8067,20 +8042,13 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(591) - p.Nil_() + p.SetState(589) + p.Bool_() } case 2: p.EnterOuterAlt(localctx, 2) - { - p.SetState(592) - p.Bool_() - } - - case 3: - p.EnterOuterAlt(localctx, 3) - p.SetState(594) + p.SetState(591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8089,7 +8057,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(593) + p.SetState(590) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -8099,7 +8067,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } { - p.SetState(596) + p.SetState(593) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -8107,9 +8075,9 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } } - case 4: - p.EnterOuterAlt(localctx, 4) - p.SetState(598) + case 3: + p.EnterOuterAlt(localctx, 3) + p.SetState(595) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8118,7 +8086,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(597) + p.SetState(594) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -8128,7 +8096,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } { - p.SetState(600) + p.SetState(597) p.Match(nevaParserFLOAT) if p.HasError() { // Recognition error - abort rule @@ -8136,10 +8104,10 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } } - case 5: - p.EnterOuterAlt(localctx, 5) + case 4: + p.EnterOuterAlt(localctx, 4) { - p.SetState(601) + p.SetState(598) p.Match(nevaParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -8147,24 +8115,24 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } } - case 6: - p.EnterOuterAlt(localctx, 6) + case 5: + p.EnterOuterAlt(localctx, 5) { - p.SetState(602) + p.SetState(599) p.EnumLit() } - case 7: - p.EnterOuterAlt(localctx, 7) + case 6: + p.EnterOuterAlt(localctx, 6) { - p.SetState(603) + p.SetState(600) p.ListLit() } - case 8: - p.EnterOuterAlt(localctx, 8) + case 7: + p.EnterOuterAlt(localctx, 7) { - p.SetState(604) + p.SetState(601) p.StructLit() } @@ -8193,7 +8161,6 @@ type IPrimitiveConstLitContext interface { GetParser() antlr.Parser // Getter signatures - Nil_() INilContext Bool_() IBoolContext INT() antlr.TerminalNode MINUS() antlr.TerminalNode @@ -8237,22 +8204,6 @@ func NewPrimitiveConstLitContext(parser antlr.Parser, parent antlr.ParserRuleCon func (s *PrimitiveConstLitContext) GetParser() antlr.Parser { return s.parser } -func (s *PrimitiveConstLitContext) Nil_() INilContext { - var t antlr.RuleContext - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(INilContext); ok { - t = ctx.(antlr.RuleContext) - break - } - } - - if t == nil { - return nil - } - - return t.(INilContext) -} - func (s *PrimitiveConstLitContext) Bool_() IBoolContext { var t antlr.RuleContext for _, ctx := range s.GetChildren() { @@ -8326,7 +8277,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { p.EnterRule(localctx, 90, nevaParserRULE_primitiveConstLit) var _la int - p.SetState(619) + p.SetState(615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8336,20 +8287,13 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(607) - p.Nil_() + p.SetState(604) + p.Bool_() } case 2: p.EnterOuterAlt(localctx, 2) - { - p.SetState(608) - p.Bool_() - } - - case 3: - p.EnterOuterAlt(localctx, 3) - p.SetState(610) + p.SetState(606) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8358,7 +8302,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(609) + p.SetState(605) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -8368,7 +8312,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } { - p.SetState(612) + p.SetState(608) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -8376,9 +8320,9 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } } - case 4: - p.EnterOuterAlt(localctx, 4) - p.SetState(614) + case 3: + p.EnterOuterAlt(localctx, 3) + p.SetState(610) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8387,7 +8331,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(613) + p.SetState(609) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -8397,7 +8341,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } { - p.SetState(616) + p.SetState(612) p.Match(nevaParserFLOAT) if p.HasError() { // Recognition error - abort rule @@ -8405,10 +8349,10 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } } - case 5: - p.EnterOuterAlt(localctx, 5) + case 4: + p.EnterOuterAlt(localctx, 4) { - p.SetState(617) + p.SetState(613) p.Match(nevaParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -8416,10 +8360,10 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } } - case 6: - p.EnterOuterAlt(localctx, 6) + case 5: + p.EnterOuterAlt(localctx, 5) { - p.SetState(618) + p.SetState(614) p.EnumLit() } @@ -8440,93 +8384,6 @@ errorExit: goto errorExit // Trick to prevent compiler error if the label is not used } -// INilContext is an interface to support dynamic dispatch. -type INilContext interface { - antlr.ParserRuleContext - - // GetParser returns the parser. - GetParser() antlr.Parser - // IsNilContext differentiates from other interfaces. - IsNilContext() -} - -type NilContext struct { - antlr.BaseParserRuleContext - parser antlr.Parser -} - -func NewEmptyNilContext() *NilContext { - var p = new(NilContext) - antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) - p.RuleIndex = nevaParserRULE_nil - return p -} - -func InitEmptyNilContext(p *NilContext) { - antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) - p.RuleIndex = nevaParserRULE_nil -} - -func (*NilContext) IsNilContext() {} - -func NewNilContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *NilContext { - var p = new(NilContext) - - antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState) - - p.parser = parser - p.RuleIndex = nevaParserRULE_nil - - return p -} - -func (s *NilContext) GetParser() antlr.Parser { return s.parser } -func (s *NilContext) GetRuleContext() antlr.RuleContext { - return s -} - -func (s *NilContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { - return antlr.TreesStringTree(s, ruleNames, recog) -} - -func (s *NilContext) EnterRule(listener antlr.ParseTreeListener) { - if listenerT, ok := listener.(nevaListener); ok { - listenerT.EnterNil(s) - } -} - -func (s *NilContext) ExitRule(listener antlr.ParseTreeListener) { - if listenerT, ok := listener.(nevaListener); ok { - listenerT.ExitNil(s) - } -} - -func (p *nevaParser) Nil_() (localctx INilContext) { - localctx = NewNilContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 92, nevaParserRULE_nil) - p.EnterOuterAlt(localctx, 1) - { - p.SetState(621) - p.Match(nevaParserT__22) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - -errorExit: - if p.HasError() { - v := p.GetError() - localctx.SetException(v) - p.GetErrorHandler().ReportError(p, v) - p.GetErrorHandler().Recover(p, v) - p.SetError(nil) - } - p.ExitRule() - return localctx - goto errorExit // Trick to prevent compiler error if the label is not used -} - // IBoolContext is an interface to support dynamic dispatch. type IBoolContext interface { antlr.ParserRuleContext @@ -8590,15 +8447,15 @@ func (s *BoolContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) Bool_() (localctx IBoolContext) { localctx = NewBoolContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 94, nevaParserRULE_bool) + p.EnterRule(localctx, 92, nevaParserRULE_bool) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(623) + p.SetState(617) _la = p.GetTokenStream().LA(1) - if !(_la == nevaParserT__23 || _la == nevaParserT__24) { + if !(_la == nevaParserT__22 || _la == nevaParserT__23) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -8708,22 +8565,22 @@ func (s *EnumLitContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) EnumLit() (localctx IEnumLitContext) { localctx = NewEnumLitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 96, nevaParserRULE_enumLit) + p.EnterRule(localctx, 94, nevaParserRULE_enumLit) p.EnterOuterAlt(localctx, 1) { - p.SetState(625) + p.SetState(619) p.EntityRef() } { - p.SetState(626) - p.Match(nevaParserT__25) + p.SetState(620) + p.Match(nevaParserT__24) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(627) + p.SetState(621) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -8838,19 +8695,19 @@ func (s *ListLitContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ListLit() (localctx IListLitContext) { localctx = NewListLitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 98, nevaParserRULE_listLit) + p.EnterRule(localctx, 96, nevaParserRULE_listLit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(629) + p.SetState(623) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(633) + p.SetState(627) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8859,7 +8716,7 @@ func (p *nevaParser) ListLit() (localctx IListLitContext) { for _la == nevaParserNEWLINE { { - p.SetState(630) + p.SetState(624) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8867,29 +8724,29 @@ func (p *nevaParser) ListLit() (localctx IListLitContext) { } } - p.SetState(635) + p.SetState(629) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(637) + p.SetState(631) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1065211134016) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&532601634880) != 0 { { - p.SetState(636) + p.SetState(630) p.ListItems() } } { - p.SetState(639) + p.SetState(633) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -9030,10 +8887,10 @@ func (s *ListItemsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ListItems() (localctx IListItemsContext) { localctx = NewListItemsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 100, nevaParserRULE_listItems) + p.EnterRule(localctx, 98, nevaParserRULE_listItems) var _la int - p.SetState(662) + p.SetState(656) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9043,17 +8900,17 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(641) + p.SetState(635) p.CompositeItem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(642) + p.SetState(636) p.CompositeItem() } - p.SetState(659) + p.SetState(653) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9062,14 +8919,14 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserT__2 { { - p.SetState(643) + p.SetState(637) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(647) + p.SetState(641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9078,7 +8935,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserNEWLINE { { - p.SetState(644) + p.SetState(638) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9086,7 +8943,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { } } - p.SetState(649) + p.SetState(643) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9094,10 +8951,10 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(650) + p.SetState(644) p.CompositeItem() } - p.SetState(654) + p.SetState(648) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9106,7 +8963,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserNEWLINE { { - p.SetState(651) + p.SetState(645) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9114,7 +8971,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { } } - p.SetState(656) + p.SetState(650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9122,7 +8979,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(661) + p.SetState(655) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9248,8 +9105,8 @@ func (s *CompositeItemContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompositeItem() (localctx ICompositeItemContext) { localctx = NewCompositeItemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 102, nevaParserRULE_compositeItem) - p.SetState(666) + p.EnterRule(localctx, 100, nevaParserRULE_compositeItem) + p.SetState(660) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9259,14 +9116,14 @@ func (p *nevaParser) CompositeItem() (localctx ICompositeItemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(664) + p.SetState(658) p.EntityRef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(665) + p.SetState(659) p.ConstLit() } @@ -9381,19 +9238,19 @@ func (s *StructLitContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) StructLit() (localctx IStructLitContext) { localctx = NewStructLitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 104, nevaParserRULE_structLit) + p.EnterRule(localctx, 102, nevaParserRULE_structLit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(668) + p.SetState(662) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(672) + p.SetState(666) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9402,7 +9259,7 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { for _la == nevaParserNEWLINE { { - p.SetState(669) + p.SetState(663) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9410,14 +9267,14 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { } } - p.SetState(674) + p.SetState(668) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(676) + p.SetState(670) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9426,13 +9283,13 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(675) + p.SetState(669) p.StructValueFields() } } { - p.SetState(678) + p.SetState(672) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -9573,15 +9430,15 @@ func (s *StructValueFieldsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { localctx = NewStructValueFieldsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 106, nevaParserRULE_structValueFields) + p.EnterRule(localctx, 104, nevaParserRULE_structValueFields) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(680) + p.SetState(674) p.StructValueField() } - p.SetState(691) + p.SetState(685) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9590,14 +9447,14 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { for _la == nevaParserT__2 { { - p.SetState(681) + p.SetState(675) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(685) + p.SetState(679) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9606,7 +9463,7 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { for _la == nevaParserNEWLINE { { - p.SetState(682) + p.SetState(676) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9614,7 +9471,7 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { } } - p.SetState(687) + p.SetState(681) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9622,11 +9479,11 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(688) + p.SetState(682) p.StructValueField() } - p.SetState(693) + p.SetState(687) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9746,12 +9603,12 @@ func (s *StructValueFieldContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { localctx = NewStructValueFieldContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 108, nevaParserRULE_structValueField) + p.EnterRule(localctx, 106, nevaParserRULE_structValueField) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(694) + p.SetState(688) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -9759,7 +9616,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } { - p.SetState(695) + p.SetState(689) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -9767,10 +9624,10 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } { - p.SetState(696) + p.SetState(690) p.CompositeItem() } - p.SetState(700) + p.SetState(694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9779,7 +9636,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { for _la == nevaParserNEWLINE { { - p.SetState(697) + p.SetState(691) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9787,7 +9644,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } - p.SetState(702) + p.SetState(696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9914,11 +9771,11 @@ func (s *CompStmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { localctx = NewCompStmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 110, nevaParserRULE_compStmt) + p.EnterRule(localctx, 108, nevaParserRULE_compStmt) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(704) + p.SetState(698) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9927,12 +9784,12 @@ func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { if _la == nevaParserT__0 { { - p.SetState(703) + p.SetState(697) p.CompilerDirectives() } } - p.SetState(707) + p.SetState(701) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9941,7 +9798,7 @@ func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(706) + p.SetState(700) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -9951,15 +9808,15 @@ func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { } { - p.SetState(709) - p.Match(nevaParserT__26) + p.SetState(703) + p.Match(nevaParserT__25) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(710) + p.SetState(704) p.CompDef() } @@ -10087,17 +9944,17 @@ func (s *CompDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompDef() (localctx ICompDefContext) { localctx = NewCompDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 112, nevaParserRULE_compDef) + p.EnterRule(localctx, 110, nevaParserRULE_compDef) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(712) + p.SetState(706) p.InterfaceDef() } - p.SetState(714) + p.SetState(708) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10106,12 +9963,12 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { if _la == nevaParserT__5 { { - p.SetState(713) + p.SetState(707) p.CompBody() } } - p.SetState(719) + p.SetState(713) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10123,7 +9980,7 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(716) + p.SetState(710) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10132,7 +9989,7 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { } } - p.SetState(721) + p.SetState(715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10277,21 +10134,21 @@ func (s *CompBodyContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompBody() (localctx ICompBodyContext) { localctx = NewCompBodyContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 114, nevaParserRULE_compBody) + p.EnterRule(localctx, 112, nevaParserRULE_compBody) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(722) + p.SetState(716) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(726) + p.SetState(720) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10300,7 +10157,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(723) + p.SetState(717) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10308,14 +10165,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(728) + p.SetState(722) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(738) + p.SetState(732) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10327,14 +10184,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(729) + p.SetState(723) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(733) + p.SetState(727) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10343,7 +10200,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(730) + p.SetState(724) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10351,7 +10208,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(735) + p.SetState(729) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10360,7 +10217,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(740) + p.SetState(734) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10370,19 +10227,15 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { goto errorExit } } - p.SetState(748) + p.SetState(742) p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) - if _la == nevaParserT__27 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 93, p.GetParserRuleContext()) == 1 { { - p.SetState(741) + p.SetState(735) p.CompNodesDef() } - p.SetState(745) + p.SetState(739) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10391,7 +10244,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(742) + p.SetState(736) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10399,7 +10252,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(747) + p.SetState(741) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10407,8 +10260,10 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { _la = p.GetTokenStream().LA(1) } + } else if p.HasError() { // JIM + goto errorExit } - p.SetState(759) + p.SetState(753) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10420,14 +10275,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(750) + p.SetState(744) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(754) + p.SetState(748) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10436,7 +10291,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(751) + p.SetState(745) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10444,7 +10299,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(756) + p.SetState(750) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10453,7 +10308,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(761) + p.SetState(755) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10463,15 +10318,15 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { goto errorExit } } - p.SetState(769) + p.SetState(763) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 97, p.GetParserRuleContext()) == 1 { { - p.SetState(762) + p.SetState(756) p.ConnDefList() } - p.SetState(766) + p.SetState(760) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10480,7 +10335,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(763) + p.SetState(757) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10488,7 +10343,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(768) + p.SetState(762) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10499,7 +10354,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(780) + p.SetState(774) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10508,14 +10363,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserCOMMENT { { - p.SetState(771) + p.SetState(765) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(775) + p.SetState(769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10524,7 +10379,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(772) + p.SetState(766) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10532,7 +10387,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(777) + p.SetState(771) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10540,7 +10395,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(782) + p.SetState(776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10548,7 +10403,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(783) + p.SetState(777) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -10663,28 +10518,24 @@ func (s *CompNodesDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { localctx = NewCompNodesDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 116, nevaParserRULE_compNodesDef) + p.EnterRule(localctx, 114, nevaParserRULE_compNodesDef) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(785) - p.Match(nevaParserT__27) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } + p.SetState(779) + p.CompNodesDefBody() } - p.SetState(789) + p.SetState(781) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == nevaParserNEWLINE { + for ok := true; ok; ok = _la == nevaParserNEWLINE { { - p.SetState(786) + p.SetState(780) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10692,7 +10543,7 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { } } - p.SetState(791) + p.SetState(783) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10700,8 +10551,12 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(792) - p.CompNodesDefBody() + p.SetState(785) + p.Match(nevaParserT__26) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } errorExit: @@ -10725,12 +10580,12 @@ type ICompNodesDefBodyContext interface { GetParser() antlr.Parser // Getter signatures - AllNEWLINE() []antlr.TerminalNode - NEWLINE(i int) antlr.TerminalNode AllCompNodeDef() []ICompNodeDefContext CompNodeDef(i int) ICompNodeDefContext AllCOMMENT() []antlr.TerminalNode COMMENT(i int) antlr.TerminalNode + AllNEWLINE() []antlr.TerminalNode + NEWLINE(i int) antlr.TerminalNode // IsCompNodesDefBodyContext differentiates from other interfaces. IsCompNodesDefBodyContext() @@ -10768,14 +10623,6 @@ func NewCompNodesDefBodyContext(parser antlr.Parser, parent antlr.ParserRuleCont func (s *CompNodesDefBodyContext) GetParser() antlr.Parser { return s.parser } -func (s *CompNodesDefBodyContext) AllNEWLINE() []antlr.TerminalNode { - return s.GetTokens(nevaParserNEWLINE) -} - -func (s *CompNodesDefBodyContext) NEWLINE(i int) antlr.TerminalNode { - return s.GetToken(nevaParserNEWLINE, i) -} - func (s *CompNodesDefBodyContext) AllCompNodeDef() []ICompNodeDefContext { children := s.GetChildren() len := 0 @@ -10825,6 +10672,14 @@ func (s *CompNodesDefBodyContext) COMMENT(i int) antlr.TerminalNode { return s.GetToken(nevaParserCOMMENT, i) } +func (s *CompNodesDefBodyContext) AllNEWLINE() []antlr.TerminalNode { + return s.GetTokens(nevaParserNEWLINE) +} + +func (s *CompNodesDefBodyContext) NEWLINE(i int) antlr.TerminalNode { + return s.GetToken(nevaParserNEWLINE, i) +} + func (s *CompNodesDefBodyContext) GetRuleContext() antlr.RuleContext { return s } @@ -10847,51 +10702,21 @@ func (s *CompNodesDefBodyContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { localctx = NewCompNodesDefBodyContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 118, nevaParserRULE_compNodesDefBody) + p.EnterRule(localctx, 116, nevaParserRULE_compNodesDefBody) var _la int - p.EnterOuterAlt(localctx, 1) - { - p.SetState(794) - p.Match(nevaParserT__5) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - p.SetState(798) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) - - for _la == nevaParserNEWLINE { - { - p.SetState(795) - p.Match(nevaParserNEWLINE) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } + var _alt int - p.SetState(800) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) - } - p.SetState(816) + p.EnterOuterAlt(localctx, 1) + p.SetState(800) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&42949672962) != 0 { - p.SetState(803) + for ok := true; ok; ok = ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&21474836482) != 0) { + p.SetState(792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10900,13 +10725,31 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { switch p.GetTokenStream().LA(1) { case nevaParserT__0, nevaParserIDENTIFIER: { - p.SetState(801) + p.SetState(787) p.CompNodeDef() } + p.SetState(789) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == nevaParserT__2 { + { + p.SetState(788) + p.Match(nevaParserT__2) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + } case nevaParserCOMMENT: { - p.SetState(802) + p.SetState(791) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -10918,64 +10761,45 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(806) + p.SetState(797) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _la = p.GetTokenStream().LA(1) - - if _la == nevaParserT__2 { - { - p.SetState(805) - p.Match(nevaParserT__2) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - - } - p.SetState(811) - p.GetErrorHandler().Sync(p) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 103, p.GetParserRuleContext()) if p.HasError() { goto errorExit } - _la = p.GetTokenStream().LA(1) - - for _la == nevaParserNEWLINE { - { - p.SetState(808) - p.Match(nevaParserNEWLINE) - if p.HasError() { - // Recognition error - abort rule - goto errorExit + for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { + if _alt == 1 { + { + p.SetState(794) + p.Match(nevaParserNEWLINE) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } - } - p.SetState(813) + } + p.SetState(799) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _la = p.GetTokenStream().LA(1) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 103, p.GetParserRuleContext()) + if p.HasError() { + goto errorExit + } } - p.SetState(818) + p.SetState(802) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - { - p.SetState(819) - p.Match(nevaParserT__6) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } errorExit: if p.HasError() { @@ -11096,11 +10920,11 @@ func (s *CompNodeDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { localctx = NewCompNodeDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 120, nevaParserRULE_compNodeDef) + p.EnterRule(localctx, 118, nevaParserRULE_compNodeDef) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(822) + p.SetState(805) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11109,17 +10933,17 @@ func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { if _la == nevaParserT__0 { { - p.SetState(821) + p.SetState(804) p.CompilerDirectives() } } - p.SetState(825) + p.SetState(808) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 107, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 106, p.GetParserRuleContext()) == 1 { { - p.SetState(824) + p.SetState(807) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11131,7 +10955,7 @@ func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { goto errorExit } { - p.SetState(827) + p.SetState(810) p.NodeInst() } @@ -11293,29 +11117,29 @@ func (s *NodeInstContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NodeInst() (localctx INodeInstContext) { localctx = NewNodeInstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 122, nevaParserRULE_nodeInst) + p.EnterRule(localctx, 120, nevaParserRULE_nodeInst) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(829) + p.SetState(812) p.EntityRef() } - p.SetState(833) + p.SetState(816) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 108, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 107, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(830) + p.SetState(813) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11324,17 +11148,17 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { } } - p.SetState(835) + p.SetState(818) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 108, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 107, p.GetParserRuleContext()) if p.HasError() { goto errorExit } } - p.SetState(837) + p.SetState(820) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11343,38 +11167,38 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { if _la == nevaParserT__12 { { - p.SetState(836) + p.SetState(819) p.TypeArgs() } } - p.SetState(840) + p.SetState(823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if _la == nevaParserT__28 { + if _la == nevaParserT__27 { { - p.SetState(839) + p.SetState(822) p.ErrGuard() } } - p.SetState(845) + p.SetState(828) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 111, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 110, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(842) + p.SetState(825) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11383,17 +11207,17 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { } } - p.SetState(847) + p.SetState(830) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 111, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 110, p.GetParserRuleContext()) if p.HasError() { goto errorExit } } - p.SetState(849) + p.SetState(832) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11402,7 +11226,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { if _la == nevaParserT__5 { { - p.SetState(848) + p.SetState(831) p.NodeDIArgs() } @@ -11484,11 +11308,11 @@ func (s *ErrGuardContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ErrGuard() (localctx IErrGuardContext) { localctx = NewErrGuardContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 124, nevaParserRULE_errGuard) + p.EnterRule(localctx, 122, nevaParserRULE_errGuard) p.EnterOuterAlt(localctx, 1) { - p.SetState(851) - p.Match(nevaParserT__28) + p.SetState(834) + p.Match(nevaParserT__27) if p.HasError() { // Recognition error - abort rule goto errorExit @@ -11517,6 +11341,8 @@ type INodeDIArgsContext interface { // Getter signatures CompNodesDefBody() ICompNodesDefBodyContext + AllNEWLINE() []antlr.TerminalNode + NEWLINE(i int) antlr.TerminalNode // IsNodeDIArgsContext differentiates from other interfaces. IsNodeDIArgsContext() @@ -11570,6 +11396,14 @@ func (s *NodeDIArgsContext) CompNodesDefBody() ICompNodesDefBodyContext { return t.(ICompNodesDefBodyContext) } +func (s *NodeDIArgsContext) AllNEWLINE() []antlr.TerminalNode { + return s.GetTokens(nevaParserNEWLINE) +} + +func (s *NodeDIArgsContext) NEWLINE(i int) antlr.TerminalNode { + return s.GetToken(nevaParserNEWLINE, i) +} + func (s *NodeDIArgsContext) GetRuleContext() antlr.RuleContext { return s } @@ -11592,12 +11426,54 @@ func (s *NodeDIArgsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NodeDIArgs() (localctx INodeDIArgsContext) { localctx = NewNodeDIArgsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 126, nevaParserRULE_nodeDIArgs) + p.EnterRule(localctx, 124, nevaParserRULE_nodeDIArgs) + var _la int + p.EnterOuterAlt(localctx, 1) { - p.SetState(853) + p.SetState(836) + p.Match(nevaParserT__5) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + p.SetState(840) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + for _la == nevaParserNEWLINE { + { + p.SetState(837) + p.Match(nevaParserNEWLINE) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + p.SetState(842) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + } + { + p.SetState(843) p.CompNodesDefBody() } + { + p.SetState(844) + p.Match(nevaParserT__6) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } errorExit: if p.HasError() { @@ -11742,28 +11618,28 @@ func (s *ConnDefListContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { localctx = NewConnDefListContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 128, nevaParserRULE_connDefList) + p.EnterRule(localctx, 126, nevaParserRULE_connDefList) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(857) + p.SetState(848) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case nevaParserT__7, nevaParserT__18, nevaParserT__22, nevaParserT__23, nevaParserT__24, nevaParserT__31, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: + case nevaParserT__7, nevaParserT__18, nevaParserT__22, nevaParserT__23, nevaParserT__30, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: { - p.SetState(855) + p.SetState(846) p.ConnDef() } case nevaParserCOMMENT: { - p.SetState(856) + p.SetState(847) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -11775,7 +11651,7 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(871) + p.SetState(862) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11786,7 +11662,7 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { - p.SetState(862) + p.SetState(853) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11795,7 +11671,7 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { for _la == nevaParserNEWLINE { { - p.SetState(859) + p.SetState(850) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11803,29 +11679,29 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { } } - p.SetState(864) + p.SetState(855) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(867) + p.SetState(858) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case nevaParserT__7, nevaParserT__18, nevaParserT__22, nevaParserT__23, nevaParserT__24, nevaParserT__31, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: + case nevaParserT__7, nevaParserT__18, nevaParserT__22, nevaParserT__23, nevaParserT__30, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: { - p.SetState(865) + p.SetState(856) p.ConnDef() } case nevaParserCOMMENT: { - p.SetState(866) + p.SetState(857) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -11839,7 +11715,7 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { } } - p.SetState(873) + p.SetState(864) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11964,8 +11840,8 @@ func (s *ConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ConnDef() (localctx IConnDefContext) { localctx = NewConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 130, nevaParserRULE_connDef) - p.SetState(876) + p.EnterRule(localctx, 128, nevaParserRULE_connDef) + p.SetState(867) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11975,14 +11851,14 @@ func (p *nevaParser) ConnDef() (localctx IConnDefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(874) + p.SetState(865) p.NormConnDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(875) + p.SetState(866) p.ArrBypassConnDef() } @@ -12104,22 +11980,22 @@ func (s *NormConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NormConnDef() (localctx INormConnDefContext) { localctx = NewNormConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 132, nevaParserRULE_normConnDef) + p.EnterRule(localctx, 130, nevaParserRULE_normConnDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(878) + p.SetState(869) p.SenderSide() } { - p.SetState(879) - p.Match(nevaParserT__29) + p.SetState(870) + p.Match(nevaParserT__28) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(880) + p.SetState(871) p.ReceiverSide() } @@ -12237,25 +12113,25 @@ func (s *SenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SenderSide() (localctx ISenderSideContext) { localctx = NewSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 134, nevaParserRULE_senderSide) - p.SetState(884) + p.EnterRule(localctx, 132, nevaParserRULE_senderSide) + p.SetState(875) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case nevaParserT__7, nevaParserT__22, nevaParserT__23, nevaParserT__24, nevaParserT__31, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: + case nevaParserT__7, nevaParserT__22, nevaParserT__23, nevaParserT__30, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: p.EnterOuterAlt(localctx, 1) { - p.SetState(882) + p.SetState(873) p.SingleSenderSide() } case nevaParserT__18: p.EnterOuterAlt(localctx, 2) { - p.SetState(883) + p.SetState(874) p.MultipleSenderSide() } @@ -12397,19 +12273,19 @@ func (s *MultipleSenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) { localctx = NewMultipleSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 136, nevaParserRULE_multipleSenderSide) + p.EnterRule(localctx, 134, nevaParserRULE_multipleSenderSide) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(886) + p.SetState(877) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(890) + p.SetState(881) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12418,7 +12294,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(887) + p.SetState(878) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12426,7 +12302,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(892) + p.SetState(883) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12434,10 +12310,10 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(893) + p.SetState(884) p.SingleSenderSide() } - p.SetState(910) + p.SetState(901) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12446,14 +12322,14 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserT__2 { { - p.SetState(894) + p.SetState(885) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(898) + p.SetState(889) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12462,7 +12338,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(895) + p.SetState(886) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12470,7 +12346,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(900) + p.SetState(891) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12478,10 +12354,10 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(901) + p.SetState(892) p.SingleSenderSide() } - p.SetState(905) + p.SetState(896) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12490,7 +12366,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(902) + p.SetState(893) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12498,7 +12374,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(907) + p.SetState(898) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12506,7 +12382,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } - p.SetState(912) + p.SetState(903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12514,7 +12390,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(913) + p.SetState(904) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -12645,22 +12521,22 @@ func (s *ArrBypassConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ArrBypassConnDef() (localctx IArrBypassConnDefContext) { localctx = NewArrBypassConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 138, nevaParserRULE_arrBypassConnDef) + p.EnterRule(localctx, 136, nevaParserRULE_arrBypassConnDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(915) + p.SetState(906) p.SinglePortAddr() } { - p.SetState(916) - p.Match(nevaParserT__30) + p.SetState(907) + p.Match(nevaParserT__29) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(917) + p.SetState(908) p.SinglePortAddr() } @@ -12812,11 +12688,11 @@ func (s *SingleSenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SingleSenderSide() (localctx ISingleSenderSideContext) { localctx = NewSingleSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 140, nevaParserRULE_singleSenderSide) + p.EnterRule(localctx, 138, nevaParserRULE_singleSenderSide) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(922) + p.SetState(913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12825,26 +12701,26 @@ func (p *nevaParser) SingleSenderSide() (localctx ISingleSenderSideContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 123, p.GetParserRuleContext()) { case 1: { - p.SetState(919) + p.SetState(910) p.PortAddr() } case 2: { - p.SetState(920) + p.SetState(911) p.SenderConstRef() } case 3: { - p.SetState(921) + p.SetState(912) p.PrimitiveConstLit() } case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(925) + p.SetState(916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12853,7 +12729,7 @@ func (p *nevaParser) SingleSenderSide() (localctx ISingleSenderSideContext) { if _la == nevaParserT__10 { { - p.SetState(924) + p.SetState(915) p.StructSelectors() } @@ -12990,8 +12866,8 @@ func (s *ReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ReceiverSide() (localctx IReceiverSideContext) { localctx = NewReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 142, nevaParserRULE_receiverSide) - p.SetState(930) + p.EnterRule(localctx, 140, nevaParserRULE_receiverSide) + p.SetState(921) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13001,21 +12877,21 @@ func (p *nevaParser) ReceiverSide() (localctx IReceiverSideContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(927) + p.SetState(918) p.ChainedNormConn() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(928) + p.SetState(919) p.SingleReceiverSide() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(929) + p.SetState(920) p.MultipleReceiverSide() } @@ -13120,10 +12996,10 @@ func (s *ChainedNormConnContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ChainedNormConn() (localctx IChainedNormConnContext) { localctx = NewChainedNormConnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 144, nevaParserRULE_chainedNormConn) + p.EnterRule(localctx, 142, nevaParserRULE_chainedNormConn) p.EnterOuterAlt(localctx, 1) { - p.SetState(932) + p.SetState(923) p.NormConnDef() } @@ -13234,19 +13110,19 @@ func (s *DeferredConnContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { localctx = NewDeferredConnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 146, nevaParserRULE_deferredConn) + p.EnterRule(localctx, 144, nevaParserRULE_deferredConn) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(934) + p.SetState(925) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(938) + p.SetState(929) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13255,7 +13131,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { for _la == nevaParserNEWLINE { { - p.SetState(935) + p.SetState(926) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13263,7 +13139,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { } } - p.SetState(940) + p.SetState(931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13271,10 +13147,10 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(941) + p.SetState(932) p.ConnDef() } - p.SetState(945) + p.SetState(936) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13283,7 +13159,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { for _la == nevaParserNEWLINE { { - p.SetState(942) + p.SetState(933) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13291,7 +13167,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { } } - p.SetState(947) + p.SetState(938) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13299,7 +13175,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(948) + p.SetState(939) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -13404,18 +13280,18 @@ func (s *SenderConstRefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SenderConstRef() (localctx ISenderConstRefContext) { localctx = NewSenderConstRefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 148, nevaParserRULE_senderConstRef) + p.EnterRule(localctx, 146, nevaParserRULE_senderConstRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(950) - p.Match(nevaParserT__31) + p.SetState(941) + p.Match(nevaParserT__30) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(951) + p.SetState(942) p.EntityRef() } @@ -13567,8 +13443,8 @@ func (s *PortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddr() (localctx IPortAddrContext) { localctx = NewPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 150, nevaParserRULE_portAddr) - p.SetState(957) + p.EnterRule(localctx, 148, nevaParserRULE_portAddr) + p.SetState(948) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13578,28 +13454,28 @@ func (p *nevaParser) PortAddr() (localctx IPortAddrContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(953) + p.SetState(944) p.SinglePortAddr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(954) + p.SetState(945) p.ArrPortAddr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(955) + p.SetState(946) p.LonelySinglePortAddr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(956) + p.SetState(947) p.LonelyArrPortAddr() } @@ -13704,10 +13580,10 @@ func (s *LonelySinglePortAddrContext) ExitRule(listener antlr.ParseTreeListener) func (p *nevaParser) LonelySinglePortAddr() (localctx ILonelySinglePortAddrContext) { localctx = NewLonelySinglePortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 152, nevaParserRULE_lonelySinglePortAddr) + p.EnterRule(localctx, 150, nevaParserRULE_lonelySinglePortAddr) p.EnterOuterAlt(localctx, 1) { - p.SetState(959) + p.SetState(950) p.PortAddrNode() } @@ -13825,14 +13701,14 @@ func (s *LonelyArrPortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) LonelyArrPortAddr() (localctx ILonelyArrPortAddrContext) { localctx = NewLonelyArrPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 154, nevaParserRULE_lonelyArrPortAddr) + p.EnterRule(localctx, 152, nevaParserRULE_lonelyArrPortAddr) p.EnterOuterAlt(localctx, 1) { - p.SetState(961) + p.SetState(952) p.PortAddrNode() } { - p.SetState(962) + p.SetState(953) p.PortAddrIdx() } @@ -13950,11 +13826,11 @@ func (s *SinglePortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { localctx = NewSinglePortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 156, nevaParserRULE_singlePortAddr) + p.EnterRule(localctx, 154, nevaParserRULE_singlePortAddr) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(965) + p.SetState(956) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13963,13 +13839,13 @@ func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(964) + p.SetState(955) p.PortAddrNode() } } { - p.SetState(967) + p.SetState(958) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -13977,7 +13853,7 @@ func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { } } { - p.SetState(968) + p.SetState(959) p.PortAddrPort() } @@ -14112,11 +13988,11 @@ func (s *ArrPortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { localctx = NewArrPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 158, nevaParserRULE_arrPortAddr) + p.EnterRule(localctx, 156, nevaParserRULE_arrPortAddr) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(971) + p.SetState(962) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14125,13 +14001,13 @@ func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(970) + p.SetState(961) p.PortAddrNode() } } { - p.SetState(973) + p.SetState(964) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -14139,11 +14015,11 @@ func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { } } { - p.SetState(974) + p.SetState(965) p.PortAddrPort() } { - p.SetState(975) + p.SetState(966) p.PortAddrIdx() } @@ -14232,10 +14108,10 @@ func (s *PortAddrNodeContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrNode() (localctx IPortAddrNodeContext) { localctx = NewPortAddrNodeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 160, nevaParserRULE_portAddrNode) + p.EnterRule(localctx, 158, nevaParserRULE_portAddrNode) p.EnterOuterAlt(localctx, 1) { - p.SetState(977) + p.SetState(968) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -14328,10 +14204,10 @@ func (s *PortAddrPortContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrPort() (localctx IPortAddrPortContext) { localctx = NewPortAddrPortContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 162, nevaParserRULE_portAddrPort) + p.EnterRule(localctx, 160, nevaParserRULE_portAddrPort) p.EnterOuterAlt(localctx, 1) { - p.SetState(979) + p.SetState(970) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -14424,10 +14300,10 @@ func (s *PortAddrIdxContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { localctx = NewPortAddrIdxContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 164, nevaParserRULE_portAddrIdx) + p.EnterRule(localctx, 162, nevaParserRULE_portAddrIdx) p.EnterOuterAlt(localctx, 1) { - p.SetState(981) + p.SetState(972) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule @@ -14435,7 +14311,7 @@ func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { } } { - p.SetState(982) + p.SetState(973) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -14443,7 +14319,7 @@ func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { } } { - p.SetState(983) + p.SetState(974) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -14541,12 +14417,12 @@ func (s *StructSelectorsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { localctx = NewStructSelectorsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 166, nevaParserRULE_structSelectors) + p.EnterRule(localctx, 164, nevaParserRULE_structSelectors) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(985) + p.SetState(976) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -14554,14 +14430,14 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } { - p.SetState(986) + p.SetState(977) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(991) + p.SetState(982) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14570,7 +14446,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { for _la == nevaParserT__10 { { - p.SetState(987) + p.SetState(978) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -14578,7 +14454,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } { - p.SetState(988) + p.SetState(979) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -14586,7 +14462,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } - p.SetState(993) + p.SetState(984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14708,8 +14584,8 @@ func (s *SingleReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SingleReceiverSide() (localctx ISingleReceiverSideContext) { localctx = NewSingleReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 168, nevaParserRULE_singleReceiverSide) - p.SetState(996) + p.EnterRule(localctx, 166, nevaParserRULE_singleReceiverSide) + p.SetState(987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14719,14 +14595,14 @@ func (p *nevaParser) SingleReceiverSide() (localctx ISingleReceiverSideContext) case nevaParserT__7, nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(994) + p.SetState(985) p.PortAddr() } case nevaParserT__1: p.EnterOuterAlt(localctx, 2) { - p.SetState(995) + p.SetState(986) p.DeferredConn() } @@ -14868,19 +14744,19 @@ func (s *MultipleReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideContext) { localctx = NewMultipleReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 170, nevaParserRULE_multipleReceiverSide) + p.EnterRule(localctx, 168, nevaParserRULE_multipleReceiverSide) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(998) + p.SetState(989) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1002) + p.SetState(993) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14889,7 +14765,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(999) + p.SetState(990) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14897,7 +14773,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1004) + p.SetState(995) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14905,10 +14781,10 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1005) + p.SetState(996) p.SingleReceiverSide() } - p.SetState(1022) + p.SetState(1013) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14917,14 +14793,14 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserT__2 { { - p.SetState(1006) + p.SetState(997) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1010) + p.SetState(1001) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14933,7 +14809,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(1007) + p.SetState(998) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14941,7 +14817,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1012) + p.SetState(1003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14949,10 +14825,10 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1013) + p.SetState(1004) p.SingleReceiverSide() } - p.SetState(1017) + p.SetState(1008) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14961,7 +14837,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(1014) + p.SetState(1005) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14969,7 +14845,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1019) + p.SetState(1010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14977,7 +14853,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } - p.SetState(1024) + p.SetState(1015) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14985,7 +14861,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1025) + p.SetState(1016) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule diff --git a/internal/compiler/parser/listener_helpers.go b/internal/compiler/parser/listener_helpers.go index 2d165f75..fa14c0c1 100644 --- a/internal/compiler/parser/listener_helpers.go +++ b/internal/compiler/parser/listener_helpers.go @@ -722,8 +722,6 @@ func parsePrimitiveConstLiteral( Inst: &ts.InstExpr{Ref: parsedEnumRef}, Meta: parsedEnumRef.Meta, } - case lit.Nil_() != nil: - return src.Message{}, nil default: panic("unknown const: " + lit.GetText()) } @@ -918,8 +916,6 @@ func parseMessage( } } } - case constVal.Nil_() != nil: - return src.Message{}, nil default: panic("unknown const: " + constVal.GetText()) } diff --git a/internal/compiler/parser/neva.g4 b/internal/compiler/parser/neva.g4 index 2ee0ad55..e3cd9f95 100644 --- a/internal/compiler/parser/neva.g4 +++ b/internal/compiler/parser/neva.g4 @@ -77,8 +77,7 @@ constStmt: PUB_KW? 'const' constDef; constDef: IDENTIFIER typeExpr '=' (entityRef | constLit) NEWLINE*; constLit: - nil - | bool + bool | MINUS? INT | MINUS? FLOAT | STRING @@ -86,13 +85,11 @@ constLit: | listLit | structLit; primitiveConstLit: - nil - | bool + bool | MINUS? INT | MINUS? FLOAT | STRING | enumLit; -nil: 'nil'; bool: 'true' | 'false'; enumLit: entityRef '::' IDENTIFIER; listLit: '[' NEWLINE* listItems? ']'; @@ -106,28 +103,22 @@ structValueFields: structValueField (',' NEWLINE* structValueField)*; structValueField: IDENTIFIER ':' compositeItem NEWLINE*; -// flow +// flow (component) compStmt: compilerDirectives? PUB_KW? 'flow' compDef; compDef: interfaceDef compBody? NEWLINE*; compBody: - '{' - NEWLINE* - (COMMENT NEWLINE*)* - (compNodesDef NEWLINE*)? - (COMMENT NEWLINE*)* - (connDefList NEWLINE*)? - (COMMENT NEWLINE*)* - '}'; + '{' NEWLINE* (COMMENT NEWLINE*)* (compNodesDef NEWLINE*)? ( + COMMENT NEWLINE* + )* (connDefList NEWLINE*)? (COMMENT NEWLINE*)* '}'; // nodes -compNodesDef: 'nodes' NEWLINE* compNodesDefBody; -compNodesDefBody: - '{' NEWLINE* ((compNodeDef | COMMENT) ','? NEWLINE*)* '}'; +compNodesDef: compNodesDefBody NEWLINE+ '---'; +compNodesDefBody: ((compNodeDef ','? | COMMENT) NEWLINE*)+; compNodeDef: compilerDirectives? IDENTIFIER? nodeInst; nodeInst: entityRef NEWLINE* typeArgs? errGuard? NEWLINE* nodeDIArgs?; errGuard: '?'; -nodeDIArgs: compNodesDefBody; +nodeDIArgs: '{' NEWLINE* compNodesDefBody '}'; // network connDefList: (connDef | COMMENT) (NEWLINE* (connDef | COMMENT))*; From 5773dacf33e02abe37c7b40014aab885144844b4 Mon Sep 17 00:00:00 2001 From: Emil Valeev Date: Sat, 21 Sep 2024 16:56:53 +0500 Subject: [PATCH 3/4] fix(parser:tests) --- internal/compiler/parser/parser_test.go | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/internal/compiler/parser/parser_test.go b/internal/compiler/parser/parser_test.go index 30fdab4c..2c1784f5 100644 --- a/internal/compiler/parser/parser_test.go +++ b/internal/compiler/parser/parser_test.go @@ -152,13 +152,12 @@ func TestParser_ParseFile_Directives(t *testing.T) { #extern(d2) flow C2() () { - nodes { - #bind(d3) - n1 C1 + #bind(d3) + n1 C1 - #bind(d4) - n2 C1 - } + #bind(d4) + n2 C1 + --- } #autoports @@ -224,10 +223,9 @@ func TestParser_ParseFile_IONodes(t *testing.T) { func TestParser_ParseFile_AnonymousNodes(t *testing.T) { text := []byte(` flow C1(start any) (stop any) { - nodes { - Scanner - Printer - } + Scanner + Printer + --- } `) From 16b66d44c74302aad73bd68a4ff62ff8e8f81c6e Mon Sep 17 00:00:00 2001 From: Emil Valeev Date: Sat, 21 Sep 2024 17:02:48 +0500 Subject: [PATCH 4/4] fix(ci:.github): try to fix lint and test jobs by updating actions versions --- .github/workflows/lint.yml | 8 ++++---- .github/workflows/test.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 589a01c5..fc4e1d3e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,13 +14,13 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.23' cache: false - name: golangci-lint - uses: golangci/golangci-lint-action@v4 + uses: golangci/golangci-lint-action@v6 with: - version: v1.54.0 + version: v1.60 only-new-issues: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12d438fa..2e6f8b9b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,11 +10,11 @@ jobs: build_and_test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: setup go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.23' - name: build run: go build -v ./... - name: install