diff --git a/.vscode/launch.json b/.vscode/launch.json index e84d470c..acb4f0e4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,7 @@ "mode": "auto", "program": "${workspaceFolder}/cmd/neva", "cwd": "${workspaceFolder}", - "args": ["run", "examples/hello_world"] + "args": ["run", "e2e/advanced_error_handling/main"] }, { "name": "LSP", diff --git a/examples/advanced_error_handling/e2e_test.go b/examples/advanced_error_handling/e2e_test.go new file mode 100644 index 00000000..e39af9f7 --- /dev/null +++ b/examples/advanced_error_handling/e2e_test.go @@ -0,0 +1,30 @@ +package test + +import ( + "os" + "os/exec" + "testing" + + "github.com/stretchr/testify/require" +) + +func Test(t *testing.T) { + err := os.Chdir("..") + require.NoError(t, err) + + wd, err := os.Getwd() + require.NoError(t, err) + defer os.Chdir(wd) + + cmd := exec.Command("neva", "run", "advanced_error_handling") + out, err := cmd.CombinedOutput() + require.NoError(t, err) + require.Equal( + t, + `panic: {"text": "Get \"definitely%20not%20a%20valid%20URL\": unsupported protocol scheme \"\""} +`, + string(out), + ) + + require.Equal(t, 0, cmd.ProcessState.ExitCode()) +} diff --git a/examples/advanced_error_handling/main.neva b/examples/advanced_error_handling/main.neva new file mode 100644 index 00000000..0a62a93d --- /dev/null +++ b/examples/advanced_error_handling/main.neva @@ -0,0 +1,18 @@ +import { http } + +component Main(start) (stop) { + nodes { App, Println, Panic } // Panic will crash the program + net { + :start -> app:sig + app:err -> panic // we only handle err at this lvl + app:data -> println -> :stop + } +} + +component App(sig) (data string, err error) { + nodes { http.Get? } // '?' implicitly sends err downstream + net { + :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/http/get/main.neva b/examples/http/get/main.neva deleted file mode 100644 index b052a32d..00000000 --- a/examples/http/get/main.neva +++ /dev/null @@ -1,14 +0,0 @@ -import { - http -} - -component Main(start) (stop) { - nodes { - http.Get - Println - } - net { - :start -> [('http://www.example.com' -> get:url)] - [get:resp.body, get:err] -> println -> :stop - } -} diff --git a/examples/http/get/e2e_test.go b/examples/http_get/e2e_test.go similarity index 83% rename from examples/http/get/e2e_test.go rename to examples/http_get/e2e_test.go index a6905ba3..7d52cf1e 100644 --- a/examples/http/get/e2e_test.go +++ b/examples/http_get/e2e_test.go @@ -9,14 +9,14 @@ import ( ) func Test(t *testing.T) { - err := os.Chdir("../..") + err := os.Chdir("..") require.NoError(t, err) wd, err := os.Getwd() require.NoError(t, err) defer os.Chdir(wd) - cmd := exec.Command("neva", "run", "http/get") + cmd := exec.Command("neva", "run", "http_get") out, err := cmd.CombinedOutput() require.NoError(t, err) diff --git a/examples/http_get/main.neva b/examples/http_get/main.neva new file mode 100644 index 00000000..40903e97 --- /dev/null +++ b/examples/http_get/main.neva @@ -0,0 +1,9 @@ +import { http } + +component Main(start) (stop) { + nodes { http.Get, Println } + net { + :start -> ('http://www.example.com' -> get) + get:resp.body -> println -> :stop + } +} diff --git a/internal/compiler/analyzer/component.go b/internal/compiler/analyzer/component.go index 63fd9452..713dbd24 100644 --- a/internal/compiler/analyzer/component.go +++ b/internal/compiler/analyzer/component.go @@ -89,8 +89,8 @@ func (a Analyzer) analyzeComponent( //nolint:funlen return component, nil } - resolvedNodes, nodesIfaces, err := a.analyzeComponentNodes( - component.Interface.TypeParams, + resolvedNodes, nodesIfaces, hasGuard, err := a.analyzeComponentNodes( + component.Interface, component.Nodes, scope, ) @@ -112,6 +112,7 @@ func (a Analyzer) analyzeComponent( //nolint:funlen analyzedNet, err := a.analyzeComponentNetwork( component.Net, resolvedInterface, + hasGuard, resolvedNodes, nodesIfaces, scope, diff --git a/internal/compiler/analyzer/component_net.go b/internal/compiler/analyzer/component_net.go index ffa609ab..5a841804 100644 --- a/internal/compiler/analyzer/component_net.go +++ b/internal/compiler/analyzer/component_net.go @@ -11,19 +11,21 @@ import ( ) var ( - ErrUnusedOutports = errors.New("All component's outports are unused") - ErrUnusedOutport = errors.New("Unused outport found") - ErrUnusedInports = errors.New("All component inports are unused") - ErrUnusedInport = errors.New("Unused inport found") - ErrLiteralSenderTypeEmpty = errors.New("Literal network sender must contain message value") - ErrComplexLiteralSender = errors.New("Literal network sender must have primitive type") - ErrIllegalPortlessConnection = errors.New("Connection to a node, with more than one port, must always has a port name") + ErrUnusedOutports = errors.New("All component's outports are unused") + ErrUnusedOutport = errors.New("Unused outport found") + ErrUnusedInports = errors.New("All component inports are unused") + ErrUnusedInport = errors.New("Unused inport found") + ErrLiteralSenderTypeEmpty = errors.New("Literal network sender must contain message value") + ErrComplexLiteralSender = errors.New("Literal network sender must have primitive type") + ErrIllegalPortlessConnection = errors.New("Connection to a node, with more than one port, must always has a port name") + ErrGuardMixedWithExplicitErrConn = errors.New("If node has error guard '?' it's ':err' outport must not be explicitly used in the network") ) // analyzeComponentNetwork must be called after analyzeNodes so we sure nodes are resolved. func (a Analyzer) analyzeComponentNetwork( net []src.Connection, compInterface src.Interface, + hasGuard bool, nodes map[string]src.Node, nodesIfaces map[string]foundInterface, scope src.Scope, @@ -36,7 +38,14 @@ func (a Analyzer) analyzeComponentNetwork( return nil, compiler.Error{Location: &scope.Location}.Wrap(err) } - if err := a.checkNetPortsUsage(compInterface, nodesIfaces, scope, nodesUsage); err != nil { + if err := a.checkNetPortsUsage( + compInterface, + nodesIfaces, + hasGuard, + scope, + nodesUsage, + nodes, + ); err != nil { return nil, compiler.Error{Location: &scope.Location}.Wrap(err) } @@ -321,8 +330,10 @@ type nodeNetUsage struct { func (Analyzer) checkNetPortsUsage( compInterface src.Interface, nodesIfaces map[string]foundInterface, + hasGuard bool, scope src.Scope, nodesUsage map[string]nodeNetUsage, + nodes map[string]src.Node, ) *compiler.Error { inportsUsage, ok := nodesUsage["in"] if !ok { @@ -352,11 +363,18 @@ func (Analyzer) checkNetPortsUsage( } for outportName := range compInterface.IO.Out { - if _, ok := outportsUsage.In[outportName]; !ok { // note that self outports are inports for the network - return &compiler.Error{ - Err: fmt.Errorf("%w '%v'", ErrUnusedOutport, outportName), - Location: &scope.Location, - } + // note that self outports are inports for the network + if _, ok := outportsUsage.In[outportName]; ok { + continue + } + + if outportName == "err" && hasGuard { + continue + } + + return &compiler.Error{ + Err: fmt.Errorf("%w '%v'", ErrUnusedOutport, outportName), + Location: &scope.Location, } } @@ -380,7 +398,10 @@ func (Analyzer) checkNetPortsUsage( return &compiler.Error{ Err: fmt.Errorf( - "%w: %v:%v", ErrUnusedNodeInport, nodeName, inportName, + "%w: %v:%v", + ErrUnusedNodeInport, + nodeName, + inportName, ), Location: &scope.Location, Meta: &meta, @@ -394,10 +415,30 @@ func (Analyzer) checkNetPortsUsage( atLeastOneOutportIsUsed := false for outportName := range nodeIface.iface.IO.Out { - if _, ok := nodeUsage.Out[outportName]; ok { - atLeastOneOutportIsUsed = true - break + if _, ok := nodeUsage.Out[outportName]; !ok { + continue + } + + atLeastOneOutportIsUsed = true + + if outportName != "err" { + continue } + + meta := nodes[nodeName].Meta + + if nodes[nodeName].ErrGuard { + return &compiler.Error{ + Err: fmt.Errorf( + "%w: %v", + ErrGuardMixedWithExplicitErrConn, + nodeName, + ), + Location: &scope.Location, + Meta: &meta, + } + } + } if !atLeastOneOutportIsUsed { diff --git a/internal/compiler/analyzer/component_nodes.go b/internal/compiler/analyzer/component_nodes.go index 8615731e..4e4d94cd 100644 --- a/internal/compiler/analyzer/component_nodes.go +++ b/internal/compiler/analyzer/component_nodes.go @@ -17,6 +17,8 @@ var ( ErrAutoPortsTypeParamConstr = errors.New("Component that uses struct inports directive must have type parameter with struct constraint") ErrAutoPortsTypeParamsCount = errors.New("Component that uses struct inports directive must have type parameter with have exactly one type parameter") ErrNormalInportsWithAutoPortsDirective = errors.New("Component that uses struct inports directive must have no defined inports") + ErrGuardNotAllowedForNode = errors.New("Guard is not allowed for nodes without 'err' output") + ErrGuardNotAllowedForComponent = errors.New("Guard is not allowed for components without 'err' output") ) type foundInterface struct { @@ -25,21 +27,31 @@ type foundInterface struct { } func (a Analyzer) analyzeComponentNodes( - parentTypeParams src.TypeParams, + componentIface src.Interface, nodes map[string]src.Node, scope src.Scope, ) ( map[string]src.Node, // resolved nodes map[string]foundInterface, // resolved nodes interfaces with locations + bool, // one of the nodes has error guard *compiler.Error, // err ) { analyzedNodes := make(map[string]src.Node, len(nodes)) nodesInterfaces := make(map[string]foundInterface, len(nodes)) + hasErrGuard := false for nodeName, node := range nodes { - analyzedNode, nodeInterface, err := a.analyzeComponentNode(node, parentTypeParams, scope) + if node.ErrGuard { + hasErrGuard = true + } + + analyzedNode, nodeInterface, err := a.analyzeComponentNode( + componentIface, + node, + scope, + ) if err != nil { - return nil, nil, compiler.Error{ + return nil, nil, false, compiler.Error{ Location: &scope.Location, Meta: &node.Meta, }.Wrap(err) @@ -49,15 +61,17 @@ func (a Analyzer) analyzeComponentNodes( analyzedNodes[nodeName] = analyzedNode } - return analyzedNodes, nodesInterfaces, nil + return analyzedNodes, nodesInterfaces, hasErrGuard, nil } //nolint:funlen func (a Analyzer) analyzeComponentNode( + componentIface src.Interface, node src.Node, - parentTypeParams src.TypeParams, scope src.Scope, ) (src.Node, foundInterface, *compiler.Error) { + parentTypeParams := componentIface.TypeParams + nodeEntity, location, err := scope.Entity(node.EntityRef) if err != nil { return src.Node{}, foundInterface{}, &compiler.Error{ @@ -96,6 +110,23 @@ func (a Analyzer) analyzeComponentNode( return src.Node{}, foundInterface{}, aerr } + if node.ErrGuard { + if _, ok := componentIface.IO.Out["err"]; !ok { + return src.Node{}, foundInterface{}, &compiler.Error{ + Err: ErrGuardNotAllowedForNode, + Location: &scope.Location, + Meta: &node.Meta, + } + } + if _, ok := nodeIface.IO.Out["err"]; !ok { + return src.Node{}, foundInterface{}, &compiler.Error{ + Err: ErrGuardNotAllowedForComponent, + Location: &scope.Location, + Meta: &node.Meta, + } + } + } + // We need to get resolved frame from parent type parameters // in order to be able to resolve node's args // since they can refer to type parameter of the parent (interface) @@ -158,6 +189,7 @@ func (a Analyzer) analyzeComponentNode( EntityRef: node.EntityRef, TypeArgs: resolvedNodeArgs, Meta: node.Meta, + ErrGuard: node.ErrGuard, }, foundInterface{ iface: nodeIface, location: location, @@ -166,7 +198,11 @@ func (a Analyzer) analyzeComponentNode( resolvedComponentDI := make(map[string]src.Node, len(node.Deps)) for depName, depNode := range node.Deps { - resolvedDep, _, err := a.analyzeComponentNode(depNode, parentTypeParams, scope) + resolvedDep, _, err := a.analyzeComponentNode( + componentIface, + depNode, + scope, + ) if err != nil { return src.Node{}, foundInterface{}, compiler.Error{ Location: &location, @@ -182,6 +218,7 @@ func (a Analyzer) analyzeComponentNode( TypeArgs: resolvedNodeArgs, Deps: resolvedComponentDI, Meta: node.Meta, + ErrGuard: node.ErrGuard, }, foundInterface{ iface: nodeIface, location: location, diff --git a/internal/compiler/desugarer/component.go b/internal/compiler/desugarer/component.go index 690937ee..44f00afb 100644 --- a/internal/compiler/desugarer/component.go +++ b/internal/compiler/desugarer/component.go @@ -2,12 +2,11 @@ package desugarer import ( "errors" - "fmt" "maps" + "slices" "github.com/nevalang/neva/internal/compiler" src "github.com/nevalang/neva/internal/compiler/sourcecode" - "github.com/nevalang/neva/internal/compiler/sourcecode/core" ) var ErrConstSenderEntityKind = errors.New( @@ -23,29 +22,33 @@ func (d Desugarer) handleComponent( //nolint:funlen component src.Component, scope src.Scope, ) (handleComponentResult, *compiler.Error) { - // if it's native component, nothing to desugar if len(component.Net) == 0 && len(component.Nodes) == 0 { return handleComponentResult{desugaredComponent: component}, nil } - // we are going to create some entities from scratch virtualEntities := map[string]src.Entity{} - // handle nodes - desugaredNodes := make(map[string]src.Node, len(component.Nodes)) - for nodeName, node := range component.Nodes { - err := d.handleNode(scope, node, desugaredNodes, nodeName, virtualEntities) - if err != nil { - return handleComponentResult{}, err - } + desugaredNodes, virtConnsForNodes, err := d.handleNodes( + component, + scope, + virtualEntities, + ) + if err != nil { + return handleComponentResult{}, err } - // handle network - handleNetResult, err := d.handleNetwork(component.Net, desugaredNodes, scope) + netToDesugar := append(virtConnsForNodes, component.Net...) + handleNetResult, err := d.handleNetwork( + netToDesugar, + desugaredNodes, + scope, + ) if err != nil { return handleComponentResult{}, err } + desugaredNetwork := slices.Clone(handleNetResult.desugaredConnections) + // add virtual constants created by network handler to virtual entities for name, constant := range handleNetResult.virtualConstants { virtualEntities[name] = src.Entity{ @@ -54,14 +57,15 @@ func (d Desugarer) handleComponent( //nolint:funlen } } - // create alias - desugaredNetwork := handleNetResult.desugaredConnections - // merge real nodes with virtual ones created by network handler maps.Copy(desugaredNodes, handleNetResult.virtualNodes) // create virtual destructor nodes and connections to handle unused outports - unusedOutports := d.findUnusedOutports(component, scope, handleNetResult.usedNodePorts) + unusedOutports := d.findUnusedOutports( + component, + scope, + handleNetResult.usedNodePorts, + ) if unusedOutports.len() != 0 { unusedOutportsResult := d.handleUnusedOutports(unusedOutports) desugaredNetwork = append(desugaredNetwork, unusedOutportsResult.virtualConnections...) @@ -80,105 +84,28 @@ func (d Desugarer) handleComponent( //nolint:funlen }, nil } -func (Desugarer) handleNode( +func (d Desugarer) handleNodes( + component src.Component, scope src.Scope, - node src.Node, - desugaredNodes map[string]src.Node, - nodeName string, virtualEntities map[string]src.Entity, -) *compiler.Error { - entity, _, err := scope.Entity(node.EntityRef) - if err != nil { - return &compiler.Error{ - Err: err, - Location: &scope.Location, - } - } - - if entity.Kind != src.ComponentEntity { - desugaredNodes[nodeName] = node - return nil - } - - _, hasAutoports := entity. - Component. - Directives[compiler.AutoportsDirective] - - // nothing to desugar - if !hasAutoports && len(node.Deps) != 1 { - desugaredNodes[nodeName] = node - return nil - } - - // --- anon dep --- - - depArg, ok := node.Deps[""] - if ok { - for depParamName, depParam := range entity.Component.Nodes { - depEntity, _, err := scope.Entity(depParam.EntityRef) - if err != nil { - panic(err) - } - if depEntity.Kind == src.InterfaceEntity { - desugaredDeps := maps.Clone(node.Deps) - desugaredDeps[depParamName] = depArg - node = src.Node{ - Directives: node.Directives, - EntityRef: node.EntityRef, - TypeArgs: node.TypeArgs, - Deps: desugaredDeps, - Meta: node.Meta, - } - break - } - } - } - - if !hasAutoports { - desugaredNodes[nodeName] = node - return nil - } - - // --- autoports --- - - structFields := node.TypeArgs[0].Lit.Struct +) (map[string]src.Node, []src.Connection, *compiler.Error) { + desugaredNodes := make(map[string]src.Node, len(component.Nodes)) + virtualConns := []src.Connection{} - inports := make(map[string]src.Port, len(structFields)) - for fieldName, fieldTypeExpr := range structFields { - inports[fieldName] = src.Port{ - TypeExpr: fieldTypeExpr, + for nodeName, node := range component.Nodes { + extraConns, err := d.handleNode( + scope, + node, + desugaredNodes, + nodeName, + virtualEntities, + ) + if err != nil { + return nil, nil, err } - } - outports := map[string]src.Port{ - "msg": { - TypeExpr: node.TypeArgs[0], - }, - } - - localBuilderComponent := src.Component{ - Interface: src.Interface{ - IO: src.IO{In: inports, Out: outports}, - }, - } - - localBuilderName := fmt.Sprintf("struct_%v", nodeName) - - virtualEntities[localBuilderName] = src.Entity{ - Kind: src.ComponentEntity, - Component: localBuilderComponent, - } - - desugaredNodes[nodeName] = src.Node{ - EntityRef: core.EntityRef{ - Pkg: "", - Name: "Struct", - }, - Directives: node.Directives, - TypeArgs: node.TypeArgs, - Deps: node.Deps, - Meta: node.Meta, + virtualConns = append(virtualConns, extraConns...) } - return nil + return desugaredNodes, virtualConns, nil } diff --git a/internal/compiler/desugarer/del.go b/internal/compiler/desugarer/del.go index c8cfb14f..bd735fbc 100644 --- a/internal/compiler/desugarer/del.go +++ b/internal/compiler/desugarer/del.go @@ -65,6 +65,7 @@ func (Desugarer) findUnusedOutports( usedNodePorts nodePortsMap, ) nodePortsMap { unusedOutports := newNodePortsMap() + for nodeName, node := range component.Nodes { entity, _, err := scope.Entity(node.EntityRef) if err != nil { @@ -116,6 +117,14 @@ func (n nodePortsMap) get(node, port string) bool { return ok } +func (n nodePortsMap) merge(m nodePortsMap) { + for node, ports := range m.m { + for outport := range ports { + n.set(node, outport) + } + } +} + func (n nodePortsMap) len() int { return len(n.m) } diff --git a/internal/compiler/desugarer/network.go b/internal/compiler/desugarer/network.go index 2e6ef5d4..fdb0b998 100644 --- a/internal/compiler/desugarer/network.go +++ b/internal/compiler/desugarer/network.go @@ -192,11 +192,10 @@ func (d Desugarer) desugarConn( for i, receiver := range conn.Normal.ReceiverSide.Receivers { if receiver.PortAddr.Port != "" { - usedNodePorts.set(receiver.PortAddr.Node, receiver.PortAddr.Port) continue } - found, err := getFirstInPortName(scope, nodes, receiver.PortAddr) + found, err := getFirstInportName(scope, nodes, receiver.PortAddr) if err != nil { return desugarConnResult{}, &compiler.Error{Err: err} } @@ -210,8 +209,6 @@ func (d Desugarer) desugarConn( }, Meta: receiver.Meta, } - - usedNodePorts.set(receiver.PortAddr.Node, receiver.PortAddr.Port) } return desugarConnResult{ @@ -239,7 +236,7 @@ func (d Desugarer) desugarConn( return desugarConnResult{}, err } - maps.Copy(usedNodePorts.m, deferredConnsResult.nodesPortsUsed.m) + usedNodePorts.merge(deferredConnsResult.nodesPortsUsed) maps.Copy(constsToInsert, deferredConnsResult.constsToInsert) maps.Copy(nodesToInsert, deferredConnsResult.nodesToInsert) @@ -254,7 +251,12 @@ func getNodeIOByPortAddr( nodes map[string]src.Node, portAddr *src.PortAddr, ) (src.IO, *compiler.Error) { - entity, _, err := scope.Entity(nodes[portAddr.Node].EntityRef) + node, ok := nodes[portAddr.Node] + if !ok { + panic(portAddr.Node) + } + + entity, _, err := scope.Entity(node.EntityRef) if err != nil { return src.IO{}, &compiler.Error{ Err: err, @@ -273,7 +275,7 @@ func getNodeIOByPortAddr( return iface.IO, nil } -func getFirstInPortName(scope src.Scope, nodes map[string]src.Node, portAddr src.PortAddr) (string, error) { +func getFirstInportName(scope src.Scope, nodes map[string]src.Node, portAddr src.PortAddr) (string, error) { io, err := getNodeIOByPortAddr(scope, nodes, &portAddr) if err != nil { return "", err diff --git a/internal/compiler/desugarer/node.go b/internal/compiler/desugarer/node.go new file mode 100644 index 00000000..11277aaf --- /dev/null +++ b/internal/compiler/desugarer/node.go @@ -0,0 +1,138 @@ +package desugarer + +import ( + "fmt" + "maps" + + "github.com/nevalang/neva/internal/compiler" + src "github.com/nevalang/neva/internal/compiler/sourcecode" + "github.com/nevalang/neva/internal/compiler/sourcecode/core" +) + +func (Desugarer) handleNode( + scope src.Scope, + node src.Node, + desugaredNodes map[string]src.Node, + nodeName string, + virtualEntities map[string]src.Entity, +) ([]src.Connection, *compiler.Error) { + var extraConnections []src.Connection + + if node.ErrGuard { + extraConnections = append(extraConnections, src.Connection{ + Normal: &src.NormalConnection{ + SenderSide: src.ConnectionSenderSide{ + PortAddr: &src.PortAddr{ + Node: nodeName, + Port: "err", + }, + }, + ReceiverSide: src.ConnectionReceiverSide{ + Receivers: []src.ConnectionReceiver{ + { + PortAddr: src.PortAddr{ + Node: "out", + Port: "err", + }, + }, + }, + }, + }, + }) + } + + entity, _, err := scope.Entity(node.EntityRef) + if err != nil { + return nil, &compiler.Error{ + Err: err, + Location: &scope.Location, + } + } + + if entity.Kind != src.ComponentEntity { + desugaredNodes[nodeName] = node + return extraConnections, nil + } + + _, hasAutoports := entity. + Component. + Directives[compiler.AutoportsDirective] + + // nothing to desugar + if !hasAutoports && len(node.Deps) != 1 { + desugaredNodes[nodeName] = node + return extraConnections, nil + } + + // --- anon dep --- + + depArg, ok := node.Deps[""] + if ok { + for depParamName, depParam := range entity.Component.Nodes { + depEntity, _, err := scope.Entity(depParam.EntityRef) + if err != nil { + panic(err) + } + if depEntity.Kind == src.InterfaceEntity { + desugaredDeps := maps.Clone(node.Deps) + desugaredDeps[depParamName] = depArg + node = src.Node{ + Directives: node.Directives, + EntityRef: node.EntityRef, + TypeArgs: node.TypeArgs, + Deps: desugaredDeps, + Meta: node.Meta, + } + break + } + } + } + + if !hasAutoports { + desugaredNodes[nodeName] = node + return extraConnections, nil + } + + // --- autoports --- + + structFields := node.TypeArgs[0].Lit.Struct + + inports := make(map[string]src.Port, len(structFields)) + for fieldName, fieldTypeExpr := range structFields { + inports[fieldName] = src.Port{ + TypeExpr: fieldTypeExpr, + } + } + + outports := map[string]src.Port{ + "msg": { + TypeExpr: node.TypeArgs[0], + }, + } + + localBuilderComponent := src.Component{ + Interface: src.Interface{ + IO: src.IO{In: inports, Out: outports}, + }, + } + + localBuilderName := fmt.Sprintf("struct_%v", nodeName) + + virtualEntities[localBuilderName] = src.Entity{ + Kind: src.ComponentEntity, + Component: localBuilderComponent, + } + + desugaredNodes[nodeName] = src.Node{ + EntityRef: core.EntityRef{ + Pkg: "", + Name: "Struct", + }, + Directives: node.Directives, + TypeArgs: node.TypeArgs, + Deps: node.Deps, + Meta: node.Meta, + } + + return extraConnections, nil +} diff --git a/internal/compiler/parser/generated/neva.interp b/internal/compiler/parser/generated/neva.interp index db7ed020..3a5b7c29 100644 --- a/internal/compiler/parser/generated/neva.interp +++ b/internal/compiler/parser/generated/neva.interp @@ -28,6 +28,7 @@ null '::' 'component' 'nodes' +'?' 'net' '->' '=>' @@ -76,6 +77,7 @@ null null null null +null COMMENT PUB_KW IDENTIFIER @@ -157,6 +159,7 @@ compNodesDef compNodesDefBody compNodeDef nodeInst +errGuard nodeDIArgs compNetDef compNetBody @@ -185,4 +188,4 @@ multipleReceiverSide atn: -[4, 1, 41, 1203, 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, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 1, 0, 1, 0, 1, 0, 5, 0, 194, 8, 0, 10, 0, 12, 0, 197, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 206, 8, 1, 1, 2, 1, 2, 1, 2, 4, 2, 211, 8, 2, 11, 2, 12, 2, 212, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 224, 8, 4, 10, 4, 12, 4, 227, 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 232, 8, 5, 11, 5, 12, 5, 233, 1, 6, 1, 6, 5, 6, 238, 8, 6, 10, 6, 12, 6, 241, 9, 6, 1, 6, 1, 6, 5, 6, 245, 8, 6, 10, 6, 12, 6, 248, 9, 6, 1, 6, 5, 6, 251, 8, 6, 10, 6, 12, 6, 254, 9, 6, 1, 6, 1, 6, 1, 7, 3, 7, 259, 8, 7, 1, 7, 1, 7, 5, 7, 263, 8, 7, 10, 7, 12, 7, 266, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 273, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 279, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 285, 8, 11, 10, 11, 12, 11, 288, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 295, 8, 13, 10, 13, 12, 13, 298, 9, 13, 1, 14, 1, 14, 3, 14, 302, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 316, 8, 19, 1, 20, 3, 20, 319, 8, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 326, 8, 21, 10, 21, 12, 21, 329, 9, 21, 1, 21, 1, 21, 5, 21, 333, 8, 21, 10, 21, 12, 21, 336, 9, 21, 1, 21, 3, 21, 339, 8, 21, 1, 21, 1, 21, 5, 21, 343, 8, 21, 10, 21, 12, 21, 346, 9, 21, 5, 21, 348, 8, 21, 10, 21, 12, 21, 351, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 357, 8, 22, 1, 22, 3, 22, 360, 8, 22, 1, 22, 3, 22, 363, 8, 22, 1, 23, 1, 23, 5, 23, 367, 8, 23, 10, 23, 12, 23, 370, 9, 23, 1, 23, 3, 23, 373, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 5, 24, 380, 8, 24, 10, 24, 12, 24, 383, 9, 24, 1, 24, 5, 24, 386, 8, 24, 10, 24, 12, 24, 389, 9, 24, 1, 25, 1, 25, 3, 25, 393, 8, 25, 1, 25, 5, 25, 396, 8, 25, 10, 25, 12, 25, 399, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 404, 8, 26, 1, 27, 1, 27, 3, 27, 408, 8, 27, 1, 28, 1, 28, 5, 28, 412, 8, 28, 10, 28, 12, 28, 415, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 420, 8, 28, 10, 28, 12, 28, 423, 9, 28, 1, 28, 5, 28, 426, 8, 28, 10, 28, 12, 28, 429, 9, 28, 1, 28, 5, 28, 432, 8, 28, 10, 28, 12, 28, 435, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 441, 8, 29, 1, 30, 1, 30, 5, 30, 445, 8, 30, 10, 30, 12, 30, 448, 9, 30, 1, 30, 1, 30, 5, 30, 452, 8, 30, 10, 30, 12, 30, 455, 9, 30, 1, 30, 1, 30, 1, 30, 5, 30, 460, 8, 30, 10, 30, 12, 30, 463, 9, 30, 1, 30, 5, 30, 466, 8, 30, 10, 30, 12, 30, 469, 9, 30, 1, 30, 5, 30, 472, 8, 30, 10, 30, 12, 30, 475, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 5, 31, 481, 8, 31, 10, 31, 12, 31, 484, 9, 31, 1, 31, 1, 31, 5, 31, 488, 8, 31, 10, 31, 12, 31, 491, 9, 31, 1, 31, 3, 31, 494, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 4, 32, 500, 8, 32, 11, 32, 12, 32, 501, 1, 32, 5, 32, 505, 8, 32, 10, 32, 12, 32, 508, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 513, 8, 33, 10, 33, 12, 33, 516, 9, 33, 1, 34, 1, 34, 5, 34, 520, 8, 34, 10, 34, 12, 34, 523, 9, 34, 1, 34, 1, 34, 5, 34, 527, 8, 34, 10, 34, 12, 34, 530, 9, 34, 1, 34, 4, 34, 533, 8, 34, 11, 34, 12, 34, 534, 1, 35, 1, 35, 3, 35, 539, 8, 35, 1, 36, 1, 36, 3, 36, 543, 8, 36, 1, 37, 3, 37, 546, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 553, 8, 38, 10, 38, 12, 38, 556, 9, 38, 1, 38, 1, 38, 5, 38, 560, 8, 38, 10, 38, 12, 38, 563, 9, 38, 1, 38, 3, 38, 566, 8, 38, 1, 38, 5, 38, 569, 8, 38, 10, 38, 12, 38, 572, 9, 38, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 578, 8, 39, 1, 39, 1, 39, 1, 39, 5, 39, 583, 8, 39, 10, 39, 12, 39, 586, 9, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 5, 42, 594, 8, 42, 10, 42, 12, 42, 597, 9, 42, 1, 42, 3, 42, 600, 8, 42, 1, 42, 1, 42, 1, 42, 5, 42, 605, 8, 42, 10, 42, 12, 42, 608, 9, 42, 3, 42, 610, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 616, 8, 43, 1, 44, 5, 44, 619, 8, 44, 10, 44, 12, 44, 622, 9, 44, 1, 44, 1, 44, 3, 44, 626, 8, 44, 1, 44, 5, 44, 629, 8, 44, 10, 44, 12, 44, 632, 9, 44, 1, 45, 5, 45, 635, 8, 45, 10, 45, 12, 45, 638, 9, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 644, 8, 45, 1, 45, 5, 45, 647, 8, 45, 10, 45, 12, 45, 650, 9, 45, 1, 46, 1, 46, 3, 46, 654, 8, 46, 1, 47, 3, 47, 657, 8, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 5, 48, 664, 8, 48, 10, 48, 12, 48, 667, 9, 48, 1, 48, 1, 48, 5, 48, 671, 8, 48, 10, 48, 12, 48, 674, 9, 48, 1, 48, 3, 48, 677, 8, 48, 1, 48, 5, 48, 680, 8, 48, 10, 48, 12, 48, 683, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 692, 8, 49, 1, 49, 5, 49, 695, 8, 49, 10, 49, 12, 49, 698, 9, 49, 1, 50, 1, 50, 1, 50, 3, 50, 703, 8, 50, 1, 50, 1, 50, 3, 50, 707, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 714, 8, 50, 1, 51, 1, 51, 1, 51, 3, 51, 719, 8, 51, 1, 51, 1, 51, 3, 51, 723, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 728, 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 5, 55, 740, 8, 55, 10, 55, 12, 55, 743, 9, 55, 1, 55, 3, 55, 746, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 754, 8, 56, 10, 56, 12, 56, 757, 9, 56, 1, 56, 1, 56, 5, 56, 761, 8, 56, 10, 56, 12, 56, 764, 9, 56, 5, 56, 766, 8, 56, 10, 56, 12, 56, 769, 9, 56, 3, 56, 771, 8, 56, 1, 57, 1, 57, 3, 57, 775, 8, 57, 1, 58, 1, 58, 5, 58, 779, 8, 58, 10, 58, 12, 58, 782, 9, 58, 1, 58, 3, 58, 785, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 5, 59, 792, 8, 59, 10, 59, 12, 59, 795, 9, 59, 1, 59, 5, 59, 798, 8, 59, 10, 59, 12, 59, 801, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 807, 8, 60, 10, 60, 12, 60, 810, 9, 60, 1, 61, 1, 61, 3, 61, 814, 8, 61, 1, 62, 3, 62, 817, 8, 62, 1, 62, 3, 62, 820, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 5, 63, 827, 8, 63, 10, 63, 12, 63, 830, 9, 63, 1, 63, 1, 63, 5, 63, 834, 8, 63, 10, 63, 12, 63, 837, 9, 63, 1, 63, 1, 63, 5, 63, 841, 8, 63, 10, 63, 12, 63, 844, 9, 63, 5, 63, 846, 8, 63, 10, 63, 12, 63, 849, 9, 63, 1, 63, 3, 63, 852, 8, 63, 1, 63, 3, 63, 855, 8, 63, 1, 63, 5, 63, 858, 8, 63, 10, 63, 12, 63, 861, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 868, 8, 64, 1, 64, 5, 64, 871, 8, 64, 10, 64, 12, 64, 874, 9, 64, 1, 65, 1, 65, 5, 65, 878, 8, 65, 10, 65, 12, 65, 881, 9, 65, 1, 65, 1, 65, 5, 65, 885, 8, 65, 10, 65, 12, 65, 888, 9, 65, 5, 65, 890, 8, 65, 10, 65, 12, 65, 893, 9, 65, 1, 65, 1, 65, 5, 65, 897, 8, 65, 10, 65, 12, 65, 900, 9, 65, 3, 65, 902, 8, 65, 1, 65, 1, 65, 5, 65, 906, 8, 65, 10, 65, 12, 65, 909, 9, 65, 5, 65, 911, 8, 65, 10, 65, 12, 65, 914, 9, 65, 1, 65, 1, 65, 5, 65, 918, 8, 65, 10, 65, 12, 65, 921, 9, 65, 3, 65, 923, 8, 65, 1, 65, 1, 65, 5, 65, 927, 8, 65, 10, 65, 12, 65, 930, 9, 65, 5, 65, 932, 8, 65, 10, 65, 12, 65, 935, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, 5, 66, 941, 8, 66, 10, 66, 12, 66, 944, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 5, 67, 950, 8, 67, 10, 67, 12, 67, 953, 9, 67, 1, 67, 1, 67, 3, 67, 957, 8, 67, 1, 67, 3, 67, 960, 8, 67, 1, 67, 5, 67, 963, 8, 67, 10, 67, 12, 67, 966, 9, 67, 5, 67, 968, 8, 67, 10, 67, 12, 67, 971, 9, 67, 1, 67, 1, 67, 1, 68, 3, 68, 976, 8, 68, 1, 68, 3, 68, 979, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 5, 69, 985, 8, 69, 10, 69, 12, 69, 988, 9, 69, 1, 69, 3, 69, 991, 8, 69, 1, 69, 5, 69, 994, 8, 69, 10, 69, 12, 69, 997, 9, 69, 1, 69, 3, 69, 1000, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 5, 71, 1006, 8, 71, 10, 71, 12, 71, 1009, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 5, 72, 1015, 8, 72, 10, 72, 12, 72, 1018, 9, 72, 1, 72, 3, 72, 1021, 8, 72, 1, 72, 5, 72, 1024, 8, 72, 10, 72, 12, 72, 1027, 9, 72, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1033, 8, 73, 1, 73, 5, 73, 1036, 8, 73, 10, 73, 12, 73, 1039, 9, 73, 1, 73, 1, 73, 3, 73, 1043, 8, 73, 5, 73, 1045, 8, 73, 10, 73, 12, 73, 1048, 9, 73, 1, 74, 1, 74, 3, 74, 1052, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 3, 76, 1060, 8, 76, 1, 77, 1, 77, 5, 77, 1064, 8, 77, 10, 77, 12, 77, 1067, 9, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1072, 8, 77, 10, 77, 12, 77, 1075, 9, 77, 1, 77, 1, 77, 5, 77, 1079, 8, 77, 10, 77, 12, 77, 1082, 9, 77, 5, 77, 1084, 8, 77, 10, 77, 12, 77, 1087, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1098, 8, 79, 1, 79, 3, 79, 1101, 8, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1106, 8, 80, 1, 81, 1, 81, 1, 82, 1, 82, 5, 82, 1112, 8, 82, 10, 82, 12, 82, 1115, 9, 82, 1, 82, 1, 82, 5, 82, 1119, 8, 82, 10, 82, 12, 82, 1122, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1133, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 3, 87, 1141, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 3, 88, 1147, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 1165, 8, 92, 10, 92, 12, 92, 1168, 9, 92, 1, 93, 1, 93, 3, 93, 1172, 8, 93, 1, 94, 1, 94, 5, 94, 1176, 8, 94, 10, 94, 12, 94, 1179, 9, 94, 1, 94, 1, 94, 1, 94, 5, 94, 1184, 8, 94, 10, 94, 12, 94, 1187, 9, 94, 1, 94, 1, 94, 5, 94, 1191, 8, 94, 10, 94, 12, 94, 1194, 9, 94, 5, 94, 1196, 8, 94, 10, 94, 12, 94, 1199, 9, 94, 1, 94, 1, 94, 1, 94, 0, 0, 95, 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, 172, 174, 176, 178, 180, 182, 184, 186, 188, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1291, 0, 195, 1, 0, 0, 0, 2, 205, 1, 0, 0, 0, 4, 210, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 8, 219, 1, 0, 0, 0, 10, 231, 1, 0, 0, 0, 12, 235, 1, 0, 0, 0, 14, 258, 1, 0, 0, 0, 16, 267, 1, 0, 0, 0, 18, 272, 1, 0, 0, 0, 20, 278, 1, 0, 0, 0, 22, 280, 1, 0, 0, 0, 24, 289, 1, 0, 0, 0, 26, 291, 1, 0, 0, 0, 28, 301, 1, 0, 0, 0, 30, 303, 1, 0, 0, 0, 32, 305, 1, 0, 0, 0, 34, 309, 1, 0, 0, 0, 36, 311, 1, 0, 0, 0, 38, 315, 1, 0, 0, 0, 40, 318, 1, 0, 0, 0, 42, 323, 1, 0, 0, 0, 44, 354, 1, 0, 0, 0, 46, 364, 1, 0, 0, 0, 48, 376, 1, 0, 0, 0, 50, 390, 1, 0, 0, 0, 52, 403, 1, 0, 0, 0, 54, 405, 1, 0, 0, 0, 56, 409, 1, 0, 0, 0, 58, 440, 1, 0, 0, 0, 60, 442, 1, 0, 0, 0, 62, 478, 1, 0, 0, 0, 64, 497, 1, 0, 0, 0, 66, 509, 1, 0, 0, 0, 68, 517, 1, 0, 0, 0, 70, 538, 1, 0, 0, 0, 72, 542, 1, 0, 0, 0, 74, 545, 1, 0, 0, 0, 76, 550, 1, 0, 0, 0, 78, 575, 1, 0, 0, 0, 80, 587, 1, 0, 0, 0, 82, 589, 1, 0, 0, 0, 84, 591, 1, 0, 0, 0, 86, 615, 1, 0, 0, 0, 88, 620, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 653, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 661, 1, 0, 0, 0, 98, 686, 1, 0, 0, 0, 100, 713, 1, 0, 0, 0, 102, 727, 1, 0, 0, 0, 104, 729, 1, 0, 0, 0, 106, 731, 1, 0, 0, 0, 108, 733, 1, 0, 0, 0, 110, 737, 1, 0, 0, 0, 112, 770, 1, 0, 0, 0, 114, 774, 1, 0, 0, 0, 116, 776, 1, 0, 0, 0, 118, 788, 1, 0, 0, 0, 120, 802, 1, 0, 0, 0, 122, 813, 1, 0, 0, 0, 124, 816, 1, 0, 0, 0, 126, 824, 1, 0, 0, 0, 128, 864, 1, 0, 0, 0, 130, 875, 1, 0, 0, 0, 132, 938, 1, 0, 0, 0, 134, 947, 1, 0, 0, 0, 136, 975, 1, 0, 0, 0, 138, 982, 1, 0, 0, 0, 140, 1001, 1, 0, 0, 0, 142, 1003, 1, 0, 0, 0, 144, 1012, 1, 0, 0, 0, 146, 1032, 1, 0, 0, 0, 148, 1051, 1, 0, 0, 0, 150, 1053, 1, 0, 0, 0, 152, 1059, 1, 0, 0, 0, 154, 1061, 1, 0, 0, 0, 156, 1090, 1, 0, 0, 0, 158, 1097, 1, 0, 0, 0, 160, 1105, 1, 0, 0, 0, 162, 1107, 1, 0, 0, 0, 164, 1109, 1, 0, 0, 0, 166, 1125, 1, 0, 0, 0, 168, 1132, 1, 0, 0, 0, 170, 1134, 1, 0, 0, 0, 172, 1136, 1, 0, 0, 0, 174, 1140, 1, 0, 0, 0, 176, 1146, 1, 0, 0, 0, 178, 1152, 1, 0, 0, 0, 180, 1154, 1, 0, 0, 0, 182, 1156, 1, 0, 0, 0, 184, 1160, 1, 0, 0, 0, 186, 1171, 1, 0, 0, 0, 188, 1173, 1, 0, 0, 0, 190, 194, 5, 40, 0, 0, 191, 194, 5, 33, 0, 0, 192, 194, 3, 2, 1, 0, 193, 190, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 193, 192, 1, 0, 0, 0, 194, 197, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 195, 196, 1, 0, 0, 0, 196, 198, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 198, 199, 5, 0, 0, 1, 199, 1, 1, 0, 0, 0, 200, 206, 3, 12, 6, 0, 201, 206, 3, 38, 19, 0, 202, 206, 3, 72, 36, 0, 203, 206, 3, 92, 46, 0, 204, 206, 3, 122, 61, 0, 205, 200, 1, 0, 0, 0, 205, 201, 1, 0, 0, 0, 205, 202, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 205, 204, 1, 0, 0, 0, 206, 3, 1, 0, 0, 0, 207, 208, 3, 6, 3, 0, 208, 209, 5, 40, 0, 0, 209, 211, 1, 0, 0, 0, 210, 207, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 5, 1, 0, 0, 0, 214, 215, 5, 1, 0, 0, 215, 217, 5, 35, 0, 0, 216, 218, 3, 8, 4, 0, 217, 216, 1, 0, 0, 0, 217, 218, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, 219, 220, 5, 2, 0, 0, 220, 225, 3, 10, 5, 0, 221, 222, 5, 3, 0, 0, 222, 224, 3, 10, 5, 0, 223, 221, 1, 0, 0, 0, 224, 227, 1, 0, 0, 0, 225, 223, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 228, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 228, 229, 5, 4, 0, 0, 229, 9, 1, 0, 0, 0, 230, 232, 5, 35, 0, 0, 231, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 11, 1, 0, 0, 0, 235, 239, 5, 5, 0, 0, 236, 238, 5, 40, 0, 0, 237, 236, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 242, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, 246, 5, 6, 0, 0, 243, 245, 5, 40, 0, 0, 244, 243, 1, 0, 0, 0, 245, 248, 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 252, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 249, 251, 3, 14, 7, 0, 250, 249, 1, 0, 0, 0, 251, 254, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 255, 1, 0, 0, 0, 254, 252, 1, 0, 0, 0, 255, 256, 5, 7, 0, 0, 256, 13, 1, 0, 0, 0, 257, 259, 3, 16, 8, 0, 258, 257, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 264, 3, 18, 9, 0, 261, 263, 5, 40, 0, 0, 262, 261, 1, 0, 0, 0, 263, 266, 1, 0, 0, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 15, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 267, 268, 5, 35, 0, 0, 268, 17, 1, 0, 0, 0, 269, 270, 3, 20, 10, 0, 270, 271, 5, 8, 0, 0, 271, 273, 1, 0, 0, 0, 272, 269, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 3, 26, 13, 0, 275, 19, 1, 0, 0, 0, 276, 279, 5, 9, 0, 0, 277, 279, 3, 22, 11, 0, 278, 276, 1, 0, 0, 0, 278, 277, 1, 0, 0, 0, 279, 21, 1, 0, 0, 0, 280, 286, 5, 35, 0, 0, 281, 282, 3, 24, 12, 0, 282, 283, 5, 35, 0, 0, 283, 285, 1, 0, 0, 0, 284, 281, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 23, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 290, 7, 0, 0, 0, 290, 25, 1, 0, 0, 0, 291, 296, 5, 35, 0, 0, 292, 293, 5, 10, 0, 0, 293, 295, 5, 35, 0, 0, 294, 292, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 27, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 302, 3, 32, 16, 0, 300, 302, 3, 30, 15, 0, 301, 299, 1, 0, 0, 0, 301, 300, 1, 0, 0, 0, 302, 29, 1, 0, 0, 0, 303, 304, 5, 35, 0, 0, 304, 31, 1, 0, 0, 0, 305, 306, 3, 34, 17, 0, 306, 307, 5, 11, 0, 0, 307, 308, 3, 36, 18, 0, 308, 33, 1, 0, 0, 0, 309, 310, 5, 35, 0, 0, 310, 35, 1, 0, 0, 0, 311, 312, 5, 35, 0, 0, 312, 37, 1, 0, 0, 0, 313, 316, 3, 40, 20, 0, 314, 316, 3, 42, 21, 0, 315, 313, 1, 0, 0, 0, 315, 314, 1, 0, 0, 0, 316, 39, 1, 0, 0, 0, 317, 319, 5, 34, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 321, 5, 12, 0, 0, 321, 322, 3, 44, 22, 0, 322, 41, 1, 0, 0, 0, 323, 327, 5, 12, 0, 0, 324, 326, 5, 40, 0, 0, 325, 324, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 330, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 330, 334, 5, 6, 0, 0, 331, 333, 5, 40, 0, 0, 332, 331, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 349, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 337, 339, 5, 34, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 344, 3, 44, 22, 0, 341, 343, 5, 40, 0, 0, 342, 341, 1, 0, 0, 0, 343, 346, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 338, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 5, 7, 0, 0, 353, 43, 1, 0, 0, 0, 354, 356, 5, 35, 0, 0, 355, 357, 3, 46, 23, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 359, 1, 0, 0, 0, 358, 360, 3, 52, 26, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 362, 1, 0, 0, 0, 361, 363, 5, 33, 0, 0, 362, 361, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 45, 1, 0, 0, 0, 364, 368, 5, 13, 0, 0, 365, 367, 5, 40, 0, 0, 366, 365, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 373, 3, 48, 24, 0, 372, 371, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 375, 5, 14, 0, 0, 375, 47, 1, 0, 0, 0, 376, 387, 3, 50, 25, 0, 377, 381, 5, 3, 0, 0, 378, 380, 5, 40, 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, 386, 3, 50, 25, 0, 385, 377, 1, 0, 0, 0, 386, 389, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 49, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 390, 392, 5, 35, 0, 0, 391, 393, 3, 52, 26, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 397, 1, 0, 0, 0, 394, 396, 5, 40, 0, 0, 395, 394, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 51, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 404, 3, 54, 27, 0, 401, 404, 3, 58, 29, 0, 402, 404, 3, 68, 34, 0, 403, 400, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 402, 1, 0, 0, 0, 404, 53, 1, 0, 0, 0, 405, 407, 3, 28, 14, 0, 406, 408, 3, 56, 28, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 55, 1, 0, 0, 0, 409, 413, 5, 13, 0, 0, 410, 412, 5, 40, 0, 0, 411, 410, 1, 0, 0, 0, 412, 415, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 416, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 416, 427, 3, 52, 26, 0, 417, 421, 5, 3, 0, 0, 418, 420, 5, 40, 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, 426, 3, 52, 26, 0, 425, 417, 1, 0, 0, 0, 426, 429, 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 433, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 430, 432, 5, 40, 0, 0, 431, 430, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 436, 437, 5, 14, 0, 0, 437, 57, 1, 0, 0, 0, 438, 441, 3, 60, 30, 0, 439, 441, 3, 62, 31, 0, 440, 438, 1, 0, 0, 0, 440, 439, 1, 0, 0, 0, 441, 59, 1, 0, 0, 0, 442, 446, 5, 15, 0, 0, 443, 445, 5, 40, 0, 0, 444, 443, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 449, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 449, 453, 5, 6, 0, 0, 450, 452, 5, 40, 0, 0, 451, 450, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 456, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 467, 5, 35, 0, 0, 457, 461, 5, 3, 0, 0, 458, 460, 5, 40, 0, 0, 459, 458, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 466, 5, 35, 0, 0, 465, 457, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 473, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 470, 472, 5, 40, 0, 0, 471, 470, 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 476, 477, 5, 7, 0, 0, 477, 61, 1, 0, 0, 0, 478, 482, 5, 16, 0, 0, 479, 481, 5, 40, 0, 0, 480, 479, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 485, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 489, 5, 6, 0, 0, 486, 488, 5, 40, 0, 0, 487, 486, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 494, 3, 64, 32, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 5, 7, 0, 0, 496, 63, 1, 0, 0, 0, 497, 506, 3, 66, 33, 0, 498, 500, 5, 40, 0, 0, 499, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 505, 3, 66, 33, 0, 504, 499, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 65, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 5, 35, 0, 0, 510, 514, 3, 52, 26, 0, 511, 513, 5, 40, 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, 67, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 532, 3, 70, 35, 0, 518, 520, 5, 40, 0, 0, 519, 518, 1, 0, 0, 0, 520, 523, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 528, 5, 17, 0, 0, 525, 527, 5, 40, 0, 0, 526, 525, 1, 0, 0, 0, 527, 530, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 531, 533, 3, 70, 35, 0, 532, 521, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 69, 1, 0, 0, 0, 536, 539, 3, 54, 27, 0, 537, 539, 3, 58, 29, 0, 538, 536, 1, 0, 0, 0, 538, 537, 1, 0, 0, 0, 539, 71, 1, 0, 0, 0, 540, 543, 3, 74, 37, 0, 541, 543, 3, 76, 38, 0, 542, 540, 1, 0, 0, 0, 542, 541, 1, 0, 0, 0, 543, 73, 1, 0, 0, 0, 544, 546, 5, 34, 0, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 5, 18, 0, 0, 548, 549, 3, 78, 39, 0, 549, 75, 1, 0, 0, 0, 550, 554, 5, 18, 0, 0, 551, 553, 5, 40, 0, 0, 552, 551, 1, 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 557, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 557, 561, 5, 6, 0, 0, 558, 560, 5, 40, 0, 0, 559, 558, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 570, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 564, 566, 5, 34, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 569, 3, 78, 39, 0, 568, 565, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 574, 5, 7, 0, 0, 574, 77, 1, 0, 0, 0, 575, 577, 5, 35, 0, 0, 576, 578, 3, 46, 23, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 3, 80, 40, 0, 580, 584, 3, 82, 41, 0, 581, 583, 5, 40, 0, 0, 582, 581, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 79, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 588, 3, 84, 42, 0, 588, 81, 1, 0, 0, 0, 589, 590, 3, 84, 42, 0, 590, 83, 1, 0, 0, 0, 591, 609, 5, 2, 0, 0, 592, 594, 5, 40, 0, 0, 593, 592, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 610, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 600, 3, 86, 43, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 610, 1, 0, 0, 0, 601, 606, 3, 86, 43, 0, 602, 603, 5, 3, 0, 0, 603, 605, 3, 86, 43, 0, 604, 602, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 595, 1, 0, 0, 0, 609, 599, 1, 0, 0, 0, 609, 601, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 4, 0, 0, 612, 85, 1, 0, 0, 0, 613, 616, 3, 88, 44, 0, 614, 616, 3, 90, 45, 0, 615, 613, 1, 0, 0, 0, 615, 614, 1, 0, 0, 0, 616, 87, 1, 0, 0, 0, 617, 619, 5, 40, 0, 0, 618, 617, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 625, 5, 35, 0, 0, 624, 626, 3, 52, 26, 0, 625, 624, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 629, 5, 40, 0, 0, 628, 627, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 89, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 635, 5, 40, 0, 0, 634, 633, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 5, 19, 0, 0, 640, 641, 5, 35, 0, 0, 641, 643, 5, 20, 0, 0, 642, 644, 3, 52, 26, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 648, 1, 0, 0, 0, 645, 647, 5, 40, 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, 91, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 651, 654, 3, 94, 47, 0, 652, 654, 3, 96, 48, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, 0, 0, 654, 93, 1, 0, 0, 0, 655, 657, 5, 34, 0, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 5, 21, 0, 0, 659, 660, 3, 98, 49, 0, 660, 95, 1, 0, 0, 0, 661, 665, 5, 21, 0, 0, 662, 664, 5, 40, 0, 0, 663, 662, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 668, 1, 0, 0, 0, 667, 665, 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, 681, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 677, 5, 34, 0, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 3, 98, 49, 0, 679, 676, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 684, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 684, 685, 5, 7, 0, 0, 685, 97, 1, 0, 0, 0, 686, 687, 5, 35, 0, 0, 687, 688, 3, 52, 26, 0, 688, 691, 5, 22, 0, 0, 689, 692, 3, 28, 14, 0, 690, 692, 3, 100, 50, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 696, 1, 0, 0, 0, 693, 695, 5, 40, 0, 0, 694, 693, 1, 0, 0, 0, 695, 698, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 99, 1, 0, 0, 0, 698, 696, 1, 0, 0, 0, 699, 714, 3, 104, 52, 0, 700, 714, 3, 106, 53, 0, 701, 703, 5, 37, 0, 0, 702, 701, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 714, 5, 36, 0, 0, 705, 707, 5, 37, 0, 0, 706, 705, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 714, 5, 38, 0, 0, 709, 714, 5, 39, 0, 0, 710, 714, 3, 108, 54, 0, 711, 714, 3, 110, 55, 0, 712, 714, 3, 116, 58, 0, 713, 699, 1, 0, 0, 0, 713, 700, 1, 0, 0, 0, 713, 702, 1, 0, 0, 0, 713, 706, 1, 0, 0, 0, 713, 709, 1, 0, 0, 0, 713, 710, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 712, 1, 0, 0, 0, 714, 101, 1, 0, 0, 0, 715, 728, 3, 104, 52, 0, 716, 728, 3, 106, 53, 0, 717, 719, 5, 37, 0, 0, 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 728, 5, 36, 0, 0, 721, 723, 5, 37, 0, 0, 722, 721, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 728, 5, 38, 0, 0, 725, 728, 5, 39, 0, 0, 726, 728, 3, 108, 54, 0, 727, 715, 1, 0, 0, 0, 727, 716, 1, 0, 0, 0, 727, 718, 1, 0, 0, 0, 727, 722, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 726, 1, 0, 0, 0, 728, 103, 1, 0, 0, 0, 729, 730, 5, 23, 0, 0, 730, 105, 1, 0, 0, 0, 731, 732, 7, 1, 0, 0, 732, 107, 1, 0, 0, 0, 733, 734, 3, 28, 14, 0, 734, 735, 5, 26, 0, 0, 735, 736, 5, 35, 0, 0, 736, 109, 1, 0, 0, 0, 737, 741, 5, 19, 0, 0, 738, 740, 5, 40, 0, 0, 739, 738, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 746, 3, 112, 56, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 20, 0, 0, 748, 111, 1, 0, 0, 0, 749, 771, 3, 114, 57, 0, 750, 767, 3, 114, 57, 0, 751, 755, 5, 3, 0, 0, 752, 754, 5, 40, 0, 0, 753, 752, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 758, 762, 3, 114, 57, 0, 759, 761, 5, 40, 0, 0, 760, 759, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 751, 1, 0, 0, 0, 766, 769, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 770, 749, 1, 0, 0, 0, 770, 750, 1, 0, 0, 0, 771, 113, 1, 0, 0, 0, 772, 775, 3, 28, 14, 0, 773, 775, 3, 100, 50, 0, 774, 772, 1, 0, 0, 0, 774, 773, 1, 0, 0, 0, 775, 115, 1, 0, 0, 0, 776, 780, 5, 6, 0, 0, 777, 779, 5, 40, 0, 0, 778, 777, 1, 0, 0, 0, 779, 782, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 784, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 785, 3, 118, 59, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 7, 0, 0, 787, 117, 1, 0, 0, 0, 788, 799, 3, 120, 60, 0, 789, 793, 5, 3, 0, 0, 790, 792, 5, 40, 0, 0, 791, 790, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 798, 3, 120, 60, 0, 797, 789, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 119, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 35, 0, 0, 803, 804, 5, 8, 0, 0, 804, 808, 3, 114, 57, 0, 805, 807, 5, 40, 0, 0, 806, 805, 1, 0, 0, 0, 807, 810, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 121, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 814, 3, 124, 62, 0, 812, 814, 3, 126, 63, 0, 813, 811, 1, 0, 0, 0, 813, 812, 1, 0, 0, 0, 814, 123, 1, 0, 0, 0, 815, 817, 3, 4, 2, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 820, 5, 34, 0, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 27, 0, 0, 822, 823, 3, 128, 64, 0, 823, 125, 1, 0, 0, 0, 824, 828, 5, 27, 0, 0, 825, 827, 5, 40, 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, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 835, 5, 6, 0, 0, 832, 834, 5, 40, 0, 0, 833, 832, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 859, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 838, 842, 5, 33, 0, 0, 839, 841, 5, 40, 0, 0, 840, 839, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 838, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 850, 852, 3, 4, 2, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 855, 5, 34, 0, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 858, 3, 128, 64, 0, 857, 847, 1, 0, 0, 0, 858, 861, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 5, 7, 0, 0, 863, 127, 1, 0, 0, 0, 864, 867, 3, 78, 39, 0, 865, 868, 3, 130, 65, 0, 866, 868, 3, 144, 72, 0, 867, 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 872, 1, 0, 0, 0, 869, 871, 5, 40, 0, 0, 870, 869, 1, 0, 0, 0, 871, 874, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 129, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 875, 879, 5, 6, 0, 0, 876, 878, 5, 40, 0, 0, 877, 876, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 891, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 886, 5, 33, 0, 0, 883, 885, 5, 40, 0, 0, 884, 883, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 882, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 901, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 894, 898, 3, 132, 66, 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, 902, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 894, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 912, 1, 0, 0, 0, 903, 907, 5, 33, 0, 0, 904, 906, 5, 40, 0, 0, 905, 904, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 910, 903, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 922, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 919, 3, 142, 71, 0, 916, 918, 5, 40, 0, 0, 917, 916, 1, 0, 0, 0, 918, 921, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 923, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 922, 915, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 933, 1, 0, 0, 0, 924, 928, 5, 33, 0, 0, 925, 927, 5, 40, 0, 0, 926, 925, 1, 0, 0, 0, 927, 930, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 931, 924, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 7, 0, 0, 937, 131, 1, 0, 0, 0, 938, 942, 5, 28, 0, 0, 939, 941, 5, 40, 0, 0, 940, 939, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 3, 134, 67, 0, 946, 133, 1, 0, 0, 0, 947, 951, 5, 6, 0, 0, 948, 950, 5, 40, 0, 0, 949, 948, 1, 0, 0, 0, 950, 953, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 969, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 954, 957, 3, 136, 68, 0, 955, 957, 5, 33, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 959, 1, 0, 0, 0, 958, 960, 5, 3, 0, 0, 959, 958, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 964, 1, 0, 0, 0, 961, 963, 5, 40, 0, 0, 962, 961, 1, 0, 0, 0, 963, 966, 1, 0, 0, 0, 964, 962, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 968, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 967, 956, 1, 0, 0, 0, 968, 971, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 972, 973, 5, 7, 0, 0, 973, 135, 1, 0, 0, 0, 974, 976, 3, 4, 2, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 1, 0, 0, 0, 977, 979, 5, 35, 0, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 3, 138, 69, 0, 981, 137, 1, 0, 0, 0, 982, 986, 3, 28, 14, 0, 983, 985, 5, 40, 0, 0, 984, 983, 1, 0, 0, 0, 985, 988, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 989, 991, 3, 56, 28, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 995, 1, 0, 0, 0, 992, 994, 5, 40, 0, 0, 993, 992, 1, 0, 0, 0, 994, 997, 1, 0, 0, 0, 995, 993, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 999, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 998, 1000, 3, 140, 70, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 139, 1, 0, 0, 0, 1001, 1002, 3, 134, 67, 0, 1002, 141, 1, 0, 0, 0, 1003, 1007, 5, 29, 0, 0, 1004, 1006, 5, 40, 0, 0, 1005, 1004, 1, 0, 0, 0, 1006, 1009, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1010, 1, 0, 0, 0, 1009, 1007, 1, 0, 0, 0, 1010, 1011, 3, 144, 72, 0, 1011, 143, 1, 0, 0, 0, 1012, 1016, 5, 6, 0, 0, 1013, 1015, 5, 40, 0, 0, 1014, 1013, 1, 0, 0, 0, 1015, 1018, 1, 0, 0, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1019, 1021, 3, 146, 73, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1025, 1, 0, 0, 0, 1022, 1024, 5, 40, 0, 0, 1023, 1022, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1029, 5, 7, 0, 0, 1029, 145, 1, 0, 0, 0, 1030, 1033, 3, 148, 74, 0, 1031, 1033, 5, 33, 0, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 1046, 1, 0, 0, 0, 1034, 1036, 5, 40, 0, 0, 1035, 1034, 1, 0, 0, 0, 1036, 1039, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1042, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1040, 1043, 3, 148, 74, 0, 1041, 1043, 5, 33, 0, 0, 1042, 1040, 1, 0, 0, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1045, 1, 0, 0, 0, 1044, 1037, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 147, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1049, 1052, 3, 150, 75, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1050, 1, 0, 0, 0, 1052, 149, 1, 0, 0, 0, 1053, 1054, 3, 152, 76, 0, 1054, 1055, 5, 30, 0, 0, 1055, 1056, 3, 160, 80, 0, 1056, 151, 1, 0, 0, 0, 1057, 1060, 3, 158, 79, 0, 1058, 1060, 3, 154, 77, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1058, 1, 0, 0, 0, 1060, 153, 1, 0, 0, 0, 1061, 1065, 5, 19, 0, 0, 1062, 1064, 5, 40, 0, 0, 1063, 1062, 1, 0, 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1085, 3, 158, 79, 0, 1069, 1073, 5, 3, 0, 0, 1070, 1072, 5, 40, 0, 0, 1071, 1070, 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1076, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1080, 3, 158, 79, 0, 1077, 1079, 5, 40, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1084, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1069, 1, 0, 0, 0, 1084, 1087, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1088, 1089, 5, 20, 0, 0, 1089, 155, 1, 0, 0, 0, 1090, 1091, 3, 174, 87, 0, 1091, 1092, 5, 31, 0, 0, 1092, 1093, 3, 174, 87, 0, 1093, 157, 1, 0, 0, 0, 1094, 1098, 3, 168, 84, 0, 1095, 1098, 3, 166, 83, 0, 1096, 1098, 3, 102, 51, 0, 1097, 1094, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1096, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 184, 92, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 159, 1, 0, 0, 0, 1102, 1106, 3, 162, 81, 0, 1103, 1106, 3, 186, 93, 0, 1104, 1106, 3, 188, 94, 0, 1105, 1102, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1104, 1, 0, 0, 0, 1106, 161, 1, 0, 0, 0, 1107, 1108, 3, 150, 75, 0, 1108, 163, 1, 0, 0, 0, 1109, 1113, 5, 2, 0, 0, 1110, 1112, 5, 40, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 1115, 1, 0, 0, 0, 1113, 1111, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1116, 1120, 3, 148, 74, 0, 1117, 1119, 5, 40, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 1122, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1124, 5, 4, 0, 0, 1124, 165, 1, 0, 0, 0, 1125, 1126, 5, 32, 0, 0, 1126, 1127, 3, 28, 14, 0, 1127, 167, 1, 0, 0, 0, 1128, 1133, 3, 174, 87, 0, 1129, 1133, 3, 176, 88, 0, 1130, 1133, 3, 170, 85, 0, 1131, 1133, 3, 172, 86, 0, 1132, 1128, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1132, 1131, 1, 0, 0, 0, 1133, 169, 1, 0, 0, 0, 1134, 1135, 3, 178, 89, 0, 1135, 171, 1, 0, 0, 0, 1136, 1137, 3, 178, 89, 0, 1137, 1138, 3, 182, 91, 0, 1138, 173, 1, 0, 0, 0, 1139, 1141, 3, 178, 89, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1143, 5, 8, 0, 0, 1143, 1144, 3, 180, 90, 0, 1144, 175, 1, 0, 0, 0, 1145, 1147, 3, 178, 89, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 5, 8, 0, 0, 1149, 1150, 3, 180, 90, 0, 1150, 1151, 3, 182, 91, 0, 1151, 177, 1, 0, 0, 0, 1152, 1153, 5, 35, 0, 0, 1153, 179, 1, 0, 0, 0, 1154, 1155, 5, 35, 0, 0, 1155, 181, 1, 0, 0, 0, 1156, 1157, 5, 19, 0, 0, 1157, 1158, 5, 36, 0, 0, 1158, 1159, 5, 20, 0, 0, 1159, 183, 1, 0, 0, 0, 1160, 1161, 5, 11, 0, 0, 1161, 1166, 5, 35, 0, 0, 1162, 1163, 5, 11, 0, 0, 1163, 1165, 5, 35, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 185, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 3, 168, 84, 0, 1170, 1172, 3, 164, 82, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1170, 1, 0, 0, 0, 1172, 187, 1, 0, 0, 0, 1173, 1177, 5, 19, 0, 0, 1174, 1176, 5, 40, 0, 0, 1175, 1174, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1197, 3, 186, 93, 0, 1181, 1185, 5, 3, 0, 0, 1182, 1184, 5, 40, 0, 0, 1183, 1182, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1192, 3, 186, 93, 0, 1189, 1191, 5, 40, 0, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1181, 1, 0, 0, 0, 1196, 1199, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1201, 5, 20, 0, 0, 1201, 189, 1, 0, 0, 0, 163, 193, 195, 205, 212, 217, 225, 233, 239, 246, 252, 258, 264, 272, 278, 286, 296, 301, 315, 318, 327, 334, 338, 344, 349, 356, 359, 362, 368, 372, 381, 387, 392, 397, 403, 407, 413, 421, 427, 433, 440, 446, 453, 461, 467, 473, 482, 489, 493, 501, 506, 514, 521, 528, 534, 538, 542, 545, 554, 561, 565, 570, 577, 584, 595, 599, 606, 609, 615, 620, 625, 630, 636, 643, 648, 653, 656, 665, 672, 676, 681, 691, 696, 702, 706, 713, 718, 722, 727, 741, 745, 755, 762, 767, 770, 774, 780, 784, 793, 799, 808, 813, 816, 819, 828, 835, 842, 847, 851, 854, 859, 867, 872, 879, 886, 891, 898, 901, 907, 912, 919, 922, 928, 933, 942, 951, 956, 959, 964, 969, 975, 978, 986, 990, 995, 999, 1007, 1016, 1020, 1025, 1032, 1037, 1042, 1046, 1051, 1059, 1065, 1073, 1080, 1085, 1097, 1100, 1105, 1113, 1120, 1132, 1140, 1146, 1166, 1171, 1177, 1185, 1192, 1197] \ No newline at end of file +[4, 1, 42, 1210, 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, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 1, 0, 1, 0, 1, 0, 5, 0, 196, 8, 0, 10, 0, 12, 0, 199, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 208, 8, 1, 1, 2, 1, 2, 1, 2, 4, 2, 213, 8, 2, 11, 2, 12, 2, 214, 1, 3, 1, 3, 1, 3, 3, 3, 220, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 226, 8, 4, 10, 4, 12, 4, 229, 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 234, 8, 5, 11, 5, 12, 5, 235, 1, 6, 1, 6, 5, 6, 240, 8, 6, 10, 6, 12, 6, 243, 9, 6, 1, 6, 1, 6, 5, 6, 247, 8, 6, 10, 6, 12, 6, 250, 9, 6, 1, 6, 5, 6, 253, 8, 6, 10, 6, 12, 6, 256, 9, 6, 1, 6, 1, 6, 1, 7, 3, 7, 261, 8, 7, 1, 7, 1, 7, 5, 7, 265, 8, 7, 10, 7, 12, 7, 268, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 275, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 281, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 287, 8, 11, 10, 11, 12, 11, 290, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 297, 8, 13, 10, 13, 12, 13, 300, 9, 13, 1, 14, 1, 14, 3, 14, 304, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 318, 8, 19, 1, 20, 3, 20, 321, 8, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 328, 8, 21, 10, 21, 12, 21, 331, 9, 21, 1, 21, 1, 21, 5, 21, 335, 8, 21, 10, 21, 12, 21, 338, 9, 21, 1, 21, 3, 21, 341, 8, 21, 1, 21, 1, 21, 5, 21, 345, 8, 21, 10, 21, 12, 21, 348, 9, 21, 5, 21, 350, 8, 21, 10, 21, 12, 21, 353, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 359, 8, 22, 1, 22, 3, 22, 362, 8, 22, 1, 22, 3, 22, 365, 8, 22, 1, 23, 1, 23, 5, 23, 369, 8, 23, 10, 23, 12, 23, 372, 9, 23, 1, 23, 3, 23, 375, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 5, 24, 382, 8, 24, 10, 24, 12, 24, 385, 9, 24, 1, 24, 5, 24, 388, 8, 24, 10, 24, 12, 24, 391, 9, 24, 1, 25, 1, 25, 3, 25, 395, 8, 25, 1, 25, 5, 25, 398, 8, 25, 10, 25, 12, 25, 401, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 406, 8, 26, 1, 27, 1, 27, 3, 27, 410, 8, 27, 1, 28, 1, 28, 5, 28, 414, 8, 28, 10, 28, 12, 28, 417, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 422, 8, 28, 10, 28, 12, 28, 425, 9, 28, 1, 28, 5, 28, 428, 8, 28, 10, 28, 12, 28, 431, 9, 28, 1, 28, 5, 28, 434, 8, 28, 10, 28, 12, 28, 437, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 443, 8, 29, 1, 30, 1, 30, 5, 30, 447, 8, 30, 10, 30, 12, 30, 450, 9, 30, 1, 30, 1, 30, 5, 30, 454, 8, 30, 10, 30, 12, 30, 457, 9, 30, 1, 30, 1, 30, 1, 30, 5, 30, 462, 8, 30, 10, 30, 12, 30, 465, 9, 30, 1, 30, 5, 30, 468, 8, 30, 10, 30, 12, 30, 471, 9, 30, 1, 30, 5, 30, 474, 8, 30, 10, 30, 12, 30, 477, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 5, 31, 483, 8, 31, 10, 31, 12, 31, 486, 9, 31, 1, 31, 1, 31, 5, 31, 490, 8, 31, 10, 31, 12, 31, 493, 9, 31, 1, 31, 3, 31, 496, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 4, 32, 502, 8, 32, 11, 32, 12, 32, 503, 1, 32, 5, 32, 507, 8, 32, 10, 32, 12, 32, 510, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 515, 8, 33, 10, 33, 12, 33, 518, 9, 33, 1, 34, 1, 34, 5, 34, 522, 8, 34, 10, 34, 12, 34, 525, 9, 34, 1, 34, 1, 34, 5, 34, 529, 8, 34, 10, 34, 12, 34, 532, 9, 34, 1, 34, 4, 34, 535, 8, 34, 11, 34, 12, 34, 536, 1, 35, 1, 35, 3, 35, 541, 8, 35, 1, 36, 1, 36, 3, 36, 545, 8, 36, 1, 37, 3, 37, 548, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 555, 8, 38, 10, 38, 12, 38, 558, 9, 38, 1, 38, 1, 38, 5, 38, 562, 8, 38, 10, 38, 12, 38, 565, 9, 38, 1, 38, 3, 38, 568, 8, 38, 1, 38, 5, 38, 571, 8, 38, 10, 38, 12, 38, 574, 9, 38, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 580, 8, 39, 1, 39, 1, 39, 1, 39, 5, 39, 585, 8, 39, 10, 39, 12, 39, 588, 9, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 5, 42, 596, 8, 42, 10, 42, 12, 42, 599, 9, 42, 1, 42, 3, 42, 602, 8, 42, 1, 42, 1, 42, 1, 42, 5, 42, 607, 8, 42, 10, 42, 12, 42, 610, 9, 42, 3, 42, 612, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 618, 8, 43, 1, 44, 5, 44, 621, 8, 44, 10, 44, 12, 44, 624, 9, 44, 1, 44, 1, 44, 3, 44, 628, 8, 44, 1, 44, 5, 44, 631, 8, 44, 10, 44, 12, 44, 634, 9, 44, 1, 45, 5, 45, 637, 8, 45, 10, 45, 12, 45, 640, 9, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 646, 8, 45, 1, 45, 5, 45, 649, 8, 45, 10, 45, 12, 45, 652, 9, 45, 1, 46, 1, 46, 3, 46, 656, 8, 46, 1, 47, 3, 47, 659, 8, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 5, 48, 666, 8, 48, 10, 48, 12, 48, 669, 9, 48, 1, 48, 1, 48, 5, 48, 673, 8, 48, 10, 48, 12, 48, 676, 9, 48, 1, 48, 3, 48, 679, 8, 48, 1, 48, 5, 48, 682, 8, 48, 10, 48, 12, 48, 685, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 694, 8, 49, 1, 49, 5, 49, 697, 8, 49, 10, 49, 12, 49, 700, 9, 49, 1, 50, 1, 50, 1, 50, 3, 50, 705, 8, 50, 1, 50, 1, 50, 3, 50, 709, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 716, 8, 50, 1, 51, 1, 51, 1, 51, 3, 51, 721, 8, 51, 1, 51, 1, 51, 3, 51, 725, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 730, 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 5, 55, 742, 8, 55, 10, 55, 12, 55, 745, 9, 55, 1, 55, 3, 55, 748, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 756, 8, 56, 10, 56, 12, 56, 759, 9, 56, 1, 56, 1, 56, 5, 56, 763, 8, 56, 10, 56, 12, 56, 766, 9, 56, 5, 56, 768, 8, 56, 10, 56, 12, 56, 771, 9, 56, 3, 56, 773, 8, 56, 1, 57, 1, 57, 3, 57, 777, 8, 57, 1, 58, 1, 58, 5, 58, 781, 8, 58, 10, 58, 12, 58, 784, 9, 58, 1, 58, 3, 58, 787, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 5, 59, 794, 8, 59, 10, 59, 12, 59, 797, 9, 59, 1, 59, 5, 59, 800, 8, 59, 10, 59, 12, 59, 803, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 809, 8, 60, 10, 60, 12, 60, 812, 9, 60, 1, 61, 1, 61, 3, 61, 816, 8, 61, 1, 62, 3, 62, 819, 8, 62, 1, 62, 3, 62, 822, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 5, 63, 829, 8, 63, 10, 63, 12, 63, 832, 9, 63, 1, 63, 1, 63, 5, 63, 836, 8, 63, 10, 63, 12, 63, 839, 9, 63, 1, 63, 1, 63, 5, 63, 843, 8, 63, 10, 63, 12, 63, 846, 9, 63, 5, 63, 848, 8, 63, 10, 63, 12, 63, 851, 9, 63, 1, 63, 3, 63, 854, 8, 63, 1, 63, 3, 63, 857, 8, 63, 1, 63, 5, 63, 860, 8, 63, 10, 63, 12, 63, 863, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 870, 8, 64, 1, 64, 5, 64, 873, 8, 64, 10, 64, 12, 64, 876, 9, 64, 1, 65, 1, 65, 5, 65, 880, 8, 65, 10, 65, 12, 65, 883, 9, 65, 1, 65, 1, 65, 5, 65, 887, 8, 65, 10, 65, 12, 65, 890, 9, 65, 5, 65, 892, 8, 65, 10, 65, 12, 65, 895, 9, 65, 1, 65, 1, 65, 5, 65, 899, 8, 65, 10, 65, 12, 65, 902, 9, 65, 3, 65, 904, 8, 65, 1, 65, 1, 65, 5, 65, 908, 8, 65, 10, 65, 12, 65, 911, 9, 65, 5, 65, 913, 8, 65, 10, 65, 12, 65, 916, 9, 65, 1, 65, 1, 65, 5, 65, 920, 8, 65, 10, 65, 12, 65, 923, 9, 65, 3, 65, 925, 8, 65, 1, 65, 1, 65, 5, 65, 929, 8, 65, 10, 65, 12, 65, 932, 9, 65, 5, 65, 934, 8, 65, 10, 65, 12, 65, 937, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, 5, 66, 943, 8, 66, 10, 66, 12, 66, 946, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 5, 67, 952, 8, 67, 10, 67, 12, 67, 955, 9, 67, 1, 67, 1, 67, 3, 67, 959, 8, 67, 1, 67, 3, 67, 962, 8, 67, 1, 67, 5, 67, 965, 8, 67, 10, 67, 12, 67, 968, 9, 67, 5, 67, 970, 8, 67, 10, 67, 12, 67, 973, 9, 67, 1, 67, 1, 67, 1, 68, 3, 68, 978, 8, 68, 1, 68, 3, 68, 981, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 5, 69, 987, 8, 69, 10, 69, 12, 69, 990, 9, 69, 1, 69, 3, 69, 993, 8, 69, 1, 69, 3, 69, 996, 8, 69, 1, 69, 5, 69, 999, 8, 69, 10, 69, 12, 69, 1002, 9, 69, 1, 69, 3, 69, 1005, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 5, 72, 1013, 8, 72, 10, 72, 12, 72, 1016, 9, 72, 1, 72, 1, 72, 1, 73, 1, 73, 5, 73, 1022, 8, 73, 10, 73, 12, 73, 1025, 9, 73, 1, 73, 3, 73, 1028, 8, 73, 1, 73, 5, 73, 1031, 8, 73, 10, 73, 12, 73, 1034, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 1040, 8, 74, 1, 74, 5, 74, 1043, 8, 74, 10, 74, 12, 74, 1046, 9, 74, 1, 74, 1, 74, 3, 74, 1050, 8, 74, 5, 74, 1052, 8, 74, 10, 74, 12, 74, 1055, 9, 74, 1, 75, 1, 75, 3, 75, 1059, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1067, 8, 77, 1, 78, 1, 78, 5, 78, 1071, 8, 78, 10, 78, 12, 78, 1074, 9, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1079, 8, 78, 10, 78, 12, 78, 1082, 9, 78, 1, 78, 1, 78, 5, 78, 1086, 8, 78, 10, 78, 12, 78, 1089, 9, 78, 5, 78, 1091, 8, 78, 10, 78, 12, 78, 1094, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1105, 8, 80, 1, 80, 3, 80, 1108, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1113, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 5, 83, 1119, 8, 83, 10, 83, 12, 83, 1122, 9, 83, 1, 83, 1, 83, 5, 83, 1126, 8, 83, 10, 83, 12, 83, 1129, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1140, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 3, 88, 1148, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 3, 89, 1154, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 1172, 8, 93, 10, 93, 12, 93, 1175, 9, 93, 1, 94, 1, 94, 3, 94, 1179, 8, 94, 1, 95, 1, 95, 5, 95, 1183, 8, 95, 10, 95, 12, 95, 1186, 9, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1191, 8, 95, 10, 95, 12, 95, 1194, 9, 95, 1, 95, 1, 95, 5, 95, 1198, 8, 95, 10, 95, 12, 95, 1201, 9, 95, 5, 95, 1203, 8, 95, 10, 95, 12, 95, 1206, 9, 95, 1, 95, 1, 95, 1, 95, 0, 0, 96, 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, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1298, 0, 197, 1, 0, 0, 0, 2, 207, 1, 0, 0, 0, 4, 212, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 221, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 237, 1, 0, 0, 0, 14, 260, 1, 0, 0, 0, 16, 269, 1, 0, 0, 0, 18, 274, 1, 0, 0, 0, 20, 280, 1, 0, 0, 0, 22, 282, 1, 0, 0, 0, 24, 291, 1, 0, 0, 0, 26, 293, 1, 0, 0, 0, 28, 303, 1, 0, 0, 0, 30, 305, 1, 0, 0, 0, 32, 307, 1, 0, 0, 0, 34, 311, 1, 0, 0, 0, 36, 313, 1, 0, 0, 0, 38, 317, 1, 0, 0, 0, 40, 320, 1, 0, 0, 0, 42, 325, 1, 0, 0, 0, 44, 356, 1, 0, 0, 0, 46, 366, 1, 0, 0, 0, 48, 378, 1, 0, 0, 0, 50, 392, 1, 0, 0, 0, 52, 405, 1, 0, 0, 0, 54, 407, 1, 0, 0, 0, 56, 411, 1, 0, 0, 0, 58, 442, 1, 0, 0, 0, 60, 444, 1, 0, 0, 0, 62, 480, 1, 0, 0, 0, 64, 499, 1, 0, 0, 0, 66, 511, 1, 0, 0, 0, 68, 519, 1, 0, 0, 0, 70, 540, 1, 0, 0, 0, 72, 544, 1, 0, 0, 0, 74, 547, 1, 0, 0, 0, 76, 552, 1, 0, 0, 0, 78, 577, 1, 0, 0, 0, 80, 589, 1, 0, 0, 0, 82, 591, 1, 0, 0, 0, 84, 593, 1, 0, 0, 0, 86, 617, 1, 0, 0, 0, 88, 622, 1, 0, 0, 0, 90, 638, 1, 0, 0, 0, 92, 655, 1, 0, 0, 0, 94, 658, 1, 0, 0, 0, 96, 663, 1, 0, 0, 0, 98, 688, 1, 0, 0, 0, 100, 715, 1, 0, 0, 0, 102, 729, 1, 0, 0, 0, 104, 731, 1, 0, 0, 0, 106, 733, 1, 0, 0, 0, 108, 735, 1, 0, 0, 0, 110, 739, 1, 0, 0, 0, 112, 772, 1, 0, 0, 0, 114, 776, 1, 0, 0, 0, 116, 778, 1, 0, 0, 0, 118, 790, 1, 0, 0, 0, 120, 804, 1, 0, 0, 0, 122, 815, 1, 0, 0, 0, 124, 818, 1, 0, 0, 0, 126, 826, 1, 0, 0, 0, 128, 866, 1, 0, 0, 0, 130, 877, 1, 0, 0, 0, 132, 940, 1, 0, 0, 0, 134, 949, 1, 0, 0, 0, 136, 977, 1, 0, 0, 0, 138, 984, 1, 0, 0, 0, 140, 1006, 1, 0, 0, 0, 142, 1008, 1, 0, 0, 0, 144, 1010, 1, 0, 0, 0, 146, 1019, 1, 0, 0, 0, 148, 1039, 1, 0, 0, 0, 150, 1058, 1, 0, 0, 0, 152, 1060, 1, 0, 0, 0, 154, 1066, 1, 0, 0, 0, 156, 1068, 1, 0, 0, 0, 158, 1097, 1, 0, 0, 0, 160, 1104, 1, 0, 0, 0, 162, 1112, 1, 0, 0, 0, 164, 1114, 1, 0, 0, 0, 166, 1116, 1, 0, 0, 0, 168, 1132, 1, 0, 0, 0, 170, 1139, 1, 0, 0, 0, 172, 1141, 1, 0, 0, 0, 174, 1143, 1, 0, 0, 0, 176, 1147, 1, 0, 0, 0, 178, 1153, 1, 0, 0, 0, 180, 1159, 1, 0, 0, 0, 182, 1161, 1, 0, 0, 0, 184, 1163, 1, 0, 0, 0, 186, 1167, 1, 0, 0, 0, 188, 1178, 1, 0, 0, 0, 190, 1180, 1, 0, 0, 0, 192, 196, 5, 41, 0, 0, 193, 196, 5, 34, 0, 0, 194, 196, 3, 2, 1, 0, 195, 192, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 195, 194, 1, 0, 0, 0, 196, 199, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 200, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 201, 5, 0, 0, 1, 201, 1, 1, 0, 0, 0, 202, 208, 3, 12, 6, 0, 203, 208, 3, 38, 19, 0, 204, 208, 3, 72, 36, 0, 205, 208, 3, 92, 46, 0, 206, 208, 3, 122, 61, 0, 207, 202, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 204, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 206, 1, 0, 0, 0, 208, 3, 1, 0, 0, 0, 209, 210, 3, 6, 3, 0, 210, 211, 5, 41, 0, 0, 211, 213, 1, 0, 0, 0, 212, 209, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 5, 1, 0, 0, 0, 216, 217, 5, 1, 0, 0, 217, 219, 5, 36, 0, 0, 218, 220, 3, 8, 4, 0, 219, 218, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 7, 1, 0, 0, 0, 221, 222, 5, 2, 0, 0, 222, 227, 3, 10, 5, 0, 223, 224, 5, 3, 0, 0, 224, 226, 3, 10, 5, 0, 225, 223, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 4, 0, 0, 231, 9, 1, 0, 0, 0, 232, 234, 5, 36, 0, 0, 233, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 11, 1, 0, 0, 0, 237, 241, 5, 5, 0, 0, 238, 240, 5, 41, 0, 0, 239, 238, 1, 0, 0, 0, 240, 243, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 244, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 248, 5, 6, 0, 0, 245, 247, 5, 41, 0, 0, 246, 245, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 254, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 253, 3, 14, 7, 0, 252, 251, 1, 0, 0, 0, 253, 256, 1, 0, 0, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 257, 1, 0, 0, 0, 256, 254, 1, 0, 0, 0, 257, 258, 5, 7, 0, 0, 258, 13, 1, 0, 0, 0, 259, 261, 3, 16, 8, 0, 260, 259, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 266, 3, 18, 9, 0, 263, 265, 5, 41, 0, 0, 264, 263, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 15, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 269, 270, 5, 36, 0, 0, 270, 17, 1, 0, 0, 0, 271, 272, 3, 20, 10, 0, 272, 273, 5, 8, 0, 0, 273, 275, 1, 0, 0, 0, 274, 271, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 277, 3, 26, 13, 0, 277, 19, 1, 0, 0, 0, 278, 281, 5, 9, 0, 0, 279, 281, 3, 22, 11, 0, 280, 278, 1, 0, 0, 0, 280, 279, 1, 0, 0, 0, 281, 21, 1, 0, 0, 0, 282, 288, 5, 36, 0, 0, 283, 284, 3, 24, 12, 0, 284, 285, 5, 36, 0, 0, 285, 287, 1, 0, 0, 0, 286, 283, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 23, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 292, 7, 0, 0, 0, 292, 25, 1, 0, 0, 0, 293, 298, 5, 36, 0, 0, 294, 295, 5, 10, 0, 0, 295, 297, 5, 36, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 27, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 304, 3, 32, 16, 0, 302, 304, 3, 30, 15, 0, 303, 301, 1, 0, 0, 0, 303, 302, 1, 0, 0, 0, 304, 29, 1, 0, 0, 0, 305, 306, 5, 36, 0, 0, 306, 31, 1, 0, 0, 0, 307, 308, 3, 34, 17, 0, 308, 309, 5, 11, 0, 0, 309, 310, 3, 36, 18, 0, 310, 33, 1, 0, 0, 0, 311, 312, 5, 36, 0, 0, 312, 35, 1, 0, 0, 0, 313, 314, 5, 36, 0, 0, 314, 37, 1, 0, 0, 0, 315, 318, 3, 40, 20, 0, 316, 318, 3, 42, 21, 0, 317, 315, 1, 0, 0, 0, 317, 316, 1, 0, 0, 0, 318, 39, 1, 0, 0, 0, 319, 321, 5, 35, 0, 0, 320, 319, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 323, 5, 12, 0, 0, 323, 324, 3, 44, 22, 0, 324, 41, 1, 0, 0, 0, 325, 329, 5, 12, 0, 0, 326, 328, 5, 41, 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, 336, 5, 6, 0, 0, 333, 335, 5, 41, 0, 0, 334, 333, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 351, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 341, 5, 35, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 346, 3, 44, 22, 0, 343, 345, 5, 41, 0, 0, 344, 343, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 350, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 340, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 5, 7, 0, 0, 355, 43, 1, 0, 0, 0, 356, 358, 5, 36, 0, 0, 357, 359, 3, 46, 23, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 361, 1, 0, 0, 0, 360, 362, 3, 52, 26, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 364, 1, 0, 0, 0, 363, 365, 5, 34, 0, 0, 364, 363, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 45, 1, 0, 0, 0, 366, 370, 5, 13, 0, 0, 367, 369, 5, 41, 0, 0, 368, 367, 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 373, 375, 3, 48, 24, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 5, 14, 0, 0, 377, 47, 1, 0, 0, 0, 378, 389, 3, 50, 25, 0, 379, 383, 5, 3, 0, 0, 380, 382, 5, 41, 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, 388, 3, 50, 25, 0, 387, 379, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 49, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 394, 5, 36, 0, 0, 393, 395, 3, 52, 26, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 399, 1, 0, 0, 0, 396, 398, 5, 41, 0, 0, 397, 396, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 51, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 406, 3, 54, 27, 0, 403, 406, 3, 58, 29, 0, 404, 406, 3, 68, 34, 0, 405, 402, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 404, 1, 0, 0, 0, 406, 53, 1, 0, 0, 0, 407, 409, 3, 28, 14, 0, 408, 410, 3, 56, 28, 0, 409, 408, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 55, 1, 0, 0, 0, 411, 415, 5, 13, 0, 0, 412, 414, 5, 41, 0, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 429, 3, 52, 26, 0, 419, 423, 5, 3, 0, 0, 420, 422, 5, 41, 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, 428, 3, 52, 26, 0, 427, 419, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 435, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 432, 434, 5, 41, 0, 0, 433, 432, 1, 0, 0, 0, 434, 437, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 438, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 438, 439, 5, 14, 0, 0, 439, 57, 1, 0, 0, 0, 440, 443, 3, 60, 30, 0, 441, 443, 3, 62, 31, 0, 442, 440, 1, 0, 0, 0, 442, 441, 1, 0, 0, 0, 443, 59, 1, 0, 0, 0, 444, 448, 5, 15, 0, 0, 445, 447, 5, 41, 0, 0, 446, 445, 1, 0, 0, 0, 447, 450, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 451, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 451, 455, 5, 6, 0, 0, 452, 454, 5, 41, 0, 0, 453, 452, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 469, 5, 36, 0, 0, 459, 463, 5, 3, 0, 0, 460, 462, 5, 41, 0, 0, 461, 460, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 466, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 468, 5, 36, 0, 0, 467, 459, 1, 0, 0, 0, 468, 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 475, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 474, 5, 41, 0, 0, 473, 472, 1, 0, 0, 0, 474, 477, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 478, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 478, 479, 5, 7, 0, 0, 479, 61, 1, 0, 0, 0, 480, 484, 5, 16, 0, 0, 481, 483, 5, 41, 0, 0, 482, 481, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 491, 5, 6, 0, 0, 488, 490, 5, 41, 0, 0, 489, 488, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 496, 3, 64, 32, 0, 495, 494, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 5, 7, 0, 0, 498, 63, 1, 0, 0, 0, 499, 508, 3, 66, 33, 0, 500, 502, 5, 41, 0, 0, 501, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 3, 66, 33, 0, 506, 501, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 65, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 36, 0, 0, 512, 516, 3, 52, 26, 0, 513, 515, 5, 41, 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, 67, 1, 0, 0, 0, 518, 516, 1, 0, 0, 0, 519, 534, 3, 70, 35, 0, 520, 522, 5, 41, 0, 0, 521, 520, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 526, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 530, 5, 17, 0, 0, 527, 529, 5, 41, 0, 0, 528, 527, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 535, 3, 70, 35, 0, 534, 523, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 69, 1, 0, 0, 0, 538, 541, 3, 54, 27, 0, 539, 541, 3, 58, 29, 0, 540, 538, 1, 0, 0, 0, 540, 539, 1, 0, 0, 0, 541, 71, 1, 0, 0, 0, 542, 545, 3, 74, 37, 0, 543, 545, 3, 76, 38, 0, 544, 542, 1, 0, 0, 0, 544, 543, 1, 0, 0, 0, 545, 73, 1, 0, 0, 0, 546, 548, 5, 35, 0, 0, 547, 546, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 5, 18, 0, 0, 550, 551, 3, 78, 39, 0, 551, 75, 1, 0, 0, 0, 552, 556, 5, 18, 0, 0, 553, 555, 5, 41, 0, 0, 554, 553, 1, 0, 0, 0, 555, 558, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 559, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 563, 5, 6, 0, 0, 560, 562, 5, 41, 0, 0, 561, 560, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 572, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 568, 5, 35, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 571, 3, 78, 39, 0, 570, 567, 1, 0, 0, 0, 571, 574, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 576, 5, 7, 0, 0, 576, 77, 1, 0, 0, 0, 577, 579, 5, 36, 0, 0, 578, 580, 3, 46, 23, 0, 579, 578, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 3, 80, 40, 0, 582, 586, 3, 82, 41, 0, 583, 585, 5, 41, 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, 79, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 590, 3, 84, 42, 0, 590, 81, 1, 0, 0, 0, 591, 592, 3, 84, 42, 0, 592, 83, 1, 0, 0, 0, 593, 611, 5, 2, 0, 0, 594, 596, 5, 41, 0, 0, 595, 594, 1, 0, 0, 0, 596, 599, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 612, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 600, 602, 3, 86, 43, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 612, 1, 0, 0, 0, 603, 608, 3, 86, 43, 0, 604, 605, 5, 3, 0, 0, 605, 607, 3, 86, 43, 0, 606, 604, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 597, 1, 0, 0, 0, 611, 601, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 5, 4, 0, 0, 614, 85, 1, 0, 0, 0, 615, 618, 3, 88, 44, 0, 616, 618, 3, 90, 45, 0, 617, 615, 1, 0, 0, 0, 617, 616, 1, 0, 0, 0, 618, 87, 1, 0, 0, 0, 619, 621, 5, 41, 0, 0, 620, 619, 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 625, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 627, 5, 36, 0, 0, 626, 628, 3, 52, 26, 0, 627, 626, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 632, 1, 0, 0, 0, 629, 631, 5, 41, 0, 0, 630, 629, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 89, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 637, 5, 41, 0, 0, 636, 635, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 19, 0, 0, 642, 643, 5, 36, 0, 0, 643, 645, 5, 20, 0, 0, 644, 646, 3, 52, 26, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 650, 1, 0, 0, 0, 647, 649, 5, 41, 0, 0, 648, 647, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 91, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 656, 3, 94, 47, 0, 654, 656, 3, 96, 48, 0, 655, 653, 1, 0, 0, 0, 655, 654, 1, 0, 0, 0, 656, 93, 1, 0, 0, 0, 657, 659, 5, 35, 0, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 5, 21, 0, 0, 661, 662, 3, 98, 49, 0, 662, 95, 1, 0, 0, 0, 663, 667, 5, 21, 0, 0, 664, 666, 5, 41, 0, 0, 665, 664, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 670, 674, 5, 6, 0, 0, 671, 673, 5, 41, 0, 0, 672, 671, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 683, 1, 0, 0, 0, 676, 674, 1, 0, 0, 0, 677, 679, 5, 35, 0, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 3, 98, 49, 0, 681, 678, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 7, 0, 0, 687, 97, 1, 0, 0, 0, 688, 689, 5, 36, 0, 0, 689, 690, 3, 52, 26, 0, 690, 693, 5, 22, 0, 0, 691, 694, 3, 28, 14, 0, 692, 694, 3, 100, 50, 0, 693, 691, 1, 0, 0, 0, 693, 692, 1, 0, 0, 0, 694, 698, 1, 0, 0, 0, 695, 697, 5, 41, 0, 0, 696, 695, 1, 0, 0, 0, 697, 700, 1, 0, 0, 0, 698, 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 99, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 701, 716, 3, 104, 52, 0, 702, 716, 3, 106, 53, 0, 703, 705, 5, 38, 0, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 716, 5, 37, 0, 0, 707, 709, 5, 38, 0, 0, 708, 707, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 716, 5, 39, 0, 0, 711, 716, 5, 40, 0, 0, 712, 716, 3, 108, 54, 0, 713, 716, 3, 110, 55, 0, 714, 716, 3, 116, 58, 0, 715, 701, 1, 0, 0, 0, 715, 702, 1, 0, 0, 0, 715, 704, 1, 0, 0, 0, 715, 708, 1, 0, 0, 0, 715, 711, 1, 0, 0, 0, 715, 712, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 714, 1, 0, 0, 0, 716, 101, 1, 0, 0, 0, 717, 730, 3, 104, 52, 0, 718, 730, 3, 106, 53, 0, 719, 721, 5, 38, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 730, 5, 37, 0, 0, 723, 725, 5, 38, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 730, 5, 39, 0, 0, 727, 730, 5, 40, 0, 0, 728, 730, 3, 108, 54, 0, 729, 717, 1, 0, 0, 0, 729, 718, 1, 0, 0, 0, 729, 720, 1, 0, 0, 0, 729, 724, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 728, 1, 0, 0, 0, 730, 103, 1, 0, 0, 0, 731, 732, 5, 23, 0, 0, 732, 105, 1, 0, 0, 0, 733, 734, 7, 1, 0, 0, 734, 107, 1, 0, 0, 0, 735, 736, 3, 28, 14, 0, 736, 737, 5, 26, 0, 0, 737, 738, 5, 36, 0, 0, 738, 109, 1, 0, 0, 0, 739, 743, 5, 19, 0, 0, 740, 742, 5, 41, 0, 0, 741, 740, 1, 0, 0, 0, 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 746, 748, 3, 112, 56, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 20, 0, 0, 750, 111, 1, 0, 0, 0, 751, 773, 3, 114, 57, 0, 752, 769, 3, 114, 57, 0, 753, 757, 5, 3, 0, 0, 754, 756, 5, 41, 0, 0, 755, 754, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 764, 3, 114, 57, 0, 761, 763, 5, 41, 0, 0, 762, 761, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 767, 753, 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, 751, 1, 0, 0, 0, 772, 752, 1, 0, 0, 0, 773, 113, 1, 0, 0, 0, 774, 777, 3, 28, 14, 0, 775, 777, 3, 100, 50, 0, 776, 774, 1, 0, 0, 0, 776, 775, 1, 0, 0, 0, 777, 115, 1, 0, 0, 0, 778, 782, 5, 6, 0, 0, 779, 781, 5, 41, 0, 0, 780, 779, 1, 0, 0, 0, 781, 784, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 786, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 785, 787, 3, 118, 59, 0, 786, 785, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 5, 7, 0, 0, 789, 117, 1, 0, 0, 0, 790, 801, 3, 120, 60, 0, 791, 795, 5, 3, 0, 0, 792, 794, 5, 41, 0, 0, 793, 792, 1, 0, 0, 0, 794, 797, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 798, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 798, 800, 3, 120, 60, 0, 799, 791, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 119, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 804, 805, 5, 36, 0, 0, 805, 806, 5, 8, 0, 0, 806, 810, 3, 114, 57, 0, 807, 809, 5, 41, 0, 0, 808, 807, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 121, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 816, 3, 124, 62, 0, 814, 816, 3, 126, 63, 0, 815, 813, 1, 0, 0, 0, 815, 814, 1, 0, 0, 0, 816, 123, 1, 0, 0, 0, 817, 819, 3, 4, 2, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 822, 5, 35, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 5, 27, 0, 0, 824, 825, 3, 128, 64, 0, 825, 125, 1, 0, 0, 0, 826, 830, 5, 27, 0, 0, 827, 829, 5, 41, 0, 0, 828, 827, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 837, 5, 6, 0, 0, 834, 836, 5, 41, 0, 0, 835, 834, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 861, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 844, 5, 34, 0, 0, 841, 843, 5, 41, 0, 0, 842, 841, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 847, 840, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 852, 854, 3, 4, 2, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 857, 5, 35, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 3, 128, 64, 0, 859, 849, 1, 0, 0, 0, 860, 863, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 864, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 864, 865, 5, 7, 0, 0, 865, 127, 1, 0, 0, 0, 866, 869, 3, 78, 39, 0, 867, 870, 3, 130, 65, 0, 868, 870, 3, 146, 73, 0, 869, 867, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 874, 1, 0, 0, 0, 871, 873, 5, 41, 0, 0, 872, 871, 1, 0, 0, 0, 873, 876, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 129, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 877, 881, 5, 6, 0, 0, 878, 880, 5, 41, 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, 893, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 888, 5, 34, 0, 0, 885, 887, 5, 41, 0, 0, 886, 885, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 892, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 891, 884, 1, 0, 0, 0, 892, 895, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 903, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 896, 900, 3, 132, 66, 0, 897, 899, 5, 41, 0, 0, 898, 897, 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 904, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 896, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 914, 1, 0, 0, 0, 905, 909, 5, 34, 0, 0, 906, 908, 5, 41, 0, 0, 907, 906, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 913, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 912, 905, 1, 0, 0, 0, 913, 916, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 924, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 921, 3, 144, 72, 0, 918, 920, 5, 41, 0, 0, 919, 918, 1, 0, 0, 0, 920, 923, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 924, 917, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 935, 1, 0, 0, 0, 926, 930, 5, 34, 0, 0, 927, 929, 5, 41, 0, 0, 928, 927, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 934, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 926, 1, 0, 0, 0, 934, 937, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 938, 939, 5, 7, 0, 0, 939, 131, 1, 0, 0, 0, 940, 944, 5, 28, 0, 0, 941, 943, 5, 41, 0, 0, 942, 941, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 3, 134, 67, 0, 948, 133, 1, 0, 0, 0, 949, 953, 5, 6, 0, 0, 950, 952, 5, 41, 0, 0, 951, 950, 1, 0, 0, 0, 952, 955, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 971, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 956, 959, 3, 136, 68, 0, 957, 959, 5, 34, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 961, 1, 0, 0, 0, 960, 962, 5, 3, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 966, 1, 0, 0, 0, 963, 965, 5, 41, 0, 0, 964, 963, 1, 0, 0, 0, 965, 968, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 970, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 969, 958, 1, 0, 0, 0, 970, 973, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 974, 975, 5, 7, 0, 0, 975, 135, 1, 0, 0, 0, 976, 978, 3, 4, 2, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 980, 1, 0, 0, 0, 979, 981, 5, 36, 0, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 138, 69, 0, 983, 137, 1, 0, 0, 0, 984, 988, 3, 28, 14, 0, 985, 987, 5, 41, 0, 0, 986, 985, 1, 0, 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 992, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 991, 993, 3, 56, 28, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 1, 0, 0, 0, 994, 996, 3, 140, 70, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 1000, 1, 0, 0, 0, 997, 999, 5, 41, 0, 0, 998, 997, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 3, 142, 71, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 139, 1, 0, 0, 0, 1006, 1007, 5, 29, 0, 0, 1007, 141, 1, 0, 0, 0, 1008, 1009, 3, 134, 67, 0, 1009, 143, 1, 0, 0, 0, 1010, 1014, 5, 30, 0, 0, 1011, 1013, 5, 41, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 1016, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1018, 3, 146, 73, 0, 1018, 145, 1, 0, 0, 0, 1019, 1023, 5, 6, 0, 0, 1020, 1022, 5, 41, 0, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1025, 1, 0, 0, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1026, 1028, 3, 148, 74, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1032, 1, 0, 0, 0, 1029, 1031, 5, 41, 0, 0, 1030, 1029, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 1036, 5, 7, 0, 0, 1036, 147, 1, 0, 0, 0, 1037, 1040, 3, 150, 75, 0, 1038, 1040, 5, 34, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1053, 1, 0, 0, 0, 1041, 1043, 5, 41, 0, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1049, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1050, 3, 150, 75, 0, 1048, 1050, 5, 34, 0, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1052, 1, 0, 0, 0, 1051, 1044, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 149, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1059, 3, 152, 76, 0, 1057, 1059, 3, 158, 79, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1057, 1, 0, 0, 0, 1059, 151, 1, 0, 0, 0, 1060, 1061, 3, 154, 77, 0, 1061, 1062, 5, 31, 0, 0, 1062, 1063, 3, 162, 81, 0, 1063, 153, 1, 0, 0, 0, 1064, 1067, 3, 160, 80, 0, 1065, 1067, 3, 156, 78, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1065, 1, 0, 0, 0, 1067, 155, 1, 0, 0, 0, 1068, 1072, 5, 19, 0, 0, 1069, 1071, 5, 41, 0, 0, 1070, 1069, 1, 0, 0, 0, 1071, 1074, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1092, 3, 160, 80, 0, 1076, 1080, 5, 3, 0, 0, 1077, 1079, 5, 41, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1087, 3, 160, 80, 0, 1084, 1086, 5, 41, 0, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1091, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1076, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1096, 5, 20, 0, 0, 1096, 157, 1, 0, 0, 0, 1097, 1098, 3, 176, 88, 0, 1098, 1099, 5, 32, 0, 0, 1099, 1100, 3, 176, 88, 0, 1100, 159, 1, 0, 0, 0, 1101, 1105, 3, 170, 85, 0, 1102, 1105, 3, 168, 84, 0, 1103, 1105, 3, 102, 51, 0, 1104, 1101, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1108, 3, 186, 93, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 161, 1, 0, 0, 0, 1109, 1113, 3, 164, 82, 0, 1110, 1113, 3, 188, 94, 0, 1111, 1113, 3, 190, 95, 0, 1112, 1109, 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 163, 1, 0, 0, 0, 1114, 1115, 3, 152, 76, 0, 1115, 165, 1, 0, 0, 0, 1116, 1120, 5, 2, 0, 0, 1117, 1119, 5, 41, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 1122, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1127, 3, 150, 75, 0, 1124, 1126, 5, 41, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1129, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1131, 5, 4, 0, 0, 1131, 167, 1, 0, 0, 0, 1132, 1133, 5, 33, 0, 0, 1133, 1134, 3, 28, 14, 0, 1134, 169, 1, 0, 0, 0, 1135, 1140, 3, 176, 88, 0, 1136, 1140, 3, 178, 89, 0, 1137, 1140, 3, 172, 86, 0, 1138, 1140, 3, 174, 87, 0, 1139, 1135, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1139, 1138, 1, 0, 0, 0, 1140, 171, 1, 0, 0, 0, 1141, 1142, 3, 180, 90, 0, 1142, 173, 1, 0, 0, 0, 1143, 1144, 3, 180, 90, 0, 1144, 1145, 3, 184, 92, 0, 1145, 175, 1, 0, 0, 0, 1146, 1148, 3, 180, 90, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 5, 8, 0, 0, 1150, 1151, 3, 182, 91, 0, 1151, 177, 1, 0, 0, 0, 1152, 1154, 3, 180, 90, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 5, 8, 0, 0, 1156, 1157, 3, 182, 91, 0, 1157, 1158, 3, 184, 92, 0, 1158, 179, 1, 0, 0, 0, 1159, 1160, 5, 36, 0, 0, 1160, 181, 1, 0, 0, 0, 1161, 1162, 5, 36, 0, 0, 1162, 183, 1, 0, 0, 0, 1163, 1164, 5, 19, 0, 0, 1164, 1165, 5, 37, 0, 0, 1165, 1166, 5, 20, 0, 0, 1166, 185, 1, 0, 0, 0, 1167, 1168, 5, 11, 0, 0, 1168, 1173, 5, 36, 0, 0, 1169, 1170, 5, 11, 0, 0, 1170, 1172, 5, 36, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 187, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1179, 3, 170, 85, 0, 1177, 1179, 3, 166, 83, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 189, 1, 0, 0, 0, 1180, 1184, 5, 19, 0, 0, 1181, 1183, 5, 41, 0, 0, 1182, 1181, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1204, 3, 188, 94, 0, 1188, 1192, 5, 3, 0, 0, 1189, 1191, 5, 41, 0, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1199, 3, 188, 94, 0, 1196, 1198, 5, 41, 0, 0, 1197, 1196, 1, 0, 0, 0, 1198, 1201, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1202, 1188, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1207, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1208, 5, 20, 0, 0, 1208, 191, 1, 0, 0, 0, 164, 195, 197, 207, 214, 219, 227, 235, 241, 248, 254, 260, 266, 274, 280, 288, 298, 303, 317, 320, 329, 336, 340, 346, 351, 358, 361, 364, 370, 374, 383, 389, 394, 399, 405, 409, 415, 423, 429, 435, 442, 448, 455, 463, 469, 475, 484, 491, 495, 503, 508, 516, 523, 530, 536, 540, 544, 547, 556, 563, 567, 572, 579, 586, 597, 601, 608, 611, 617, 622, 627, 632, 638, 645, 650, 655, 658, 667, 674, 678, 683, 693, 698, 704, 708, 715, 720, 724, 729, 743, 747, 757, 764, 769, 772, 776, 782, 786, 795, 801, 810, 815, 818, 821, 830, 837, 844, 849, 853, 856, 861, 869, 874, 881, 888, 893, 900, 903, 909, 914, 921, 924, 930, 935, 944, 953, 958, 961, 966, 971, 977, 980, 988, 992, 995, 1000, 1004, 1014, 1023, 1027, 1032, 1039, 1044, 1049, 1053, 1058, 1066, 1072, 1080, 1087, 1092, 1104, 1107, 1112, 1120, 1127, 1139, 1147, 1153, 1173, 1178, 1184, 1192, 1199, 1204] \ No newline at end of file diff --git a/internal/compiler/parser/generated/neva.tokens b/internal/compiler/parser/generated/neva.tokens index a7450fc8..8514055e 100644 --- a/internal/compiler/parser/generated/neva.tokens +++ b/internal/compiler/parser/generated/neva.tokens @@ -30,15 +30,16 @@ 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 +T__32=33 +COMMENT=34 +PUB_KW=35 +IDENTIFIER=36 +INT=37 +MINUS=38 +FLOAT=39 +STRING=40 +NEWLINE=41 +WS=42 '#'=1 '('=2 ','=3 @@ -67,9 +68,10 @@ WS=41 '::'=26 'component'=27 'nodes'=28 -'net'=29 -'->'=30 -'=>'=31 -'$'=32 -'pub'=34 -'-'=37 +'?'=29 +'net'=30 +'->'=31 +'=>'=32 +'$'=33 +'pub'=35 +'-'=38 diff --git a/internal/compiler/parser/generated/nevaLexer.interp b/internal/compiler/parser/generated/nevaLexer.interp index 47a54957..aa91b289 100644 --- a/internal/compiler/parser/generated/nevaLexer.interp +++ b/internal/compiler/parser/generated/nevaLexer.interp @@ -28,6 +28,7 @@ null '::' 'component' 'nodes' +'?' 'net' '->' '=>' @@ -76,6 +77,7 @@ null null null null +null COMMENT PUB_KW IDENTIFIER @@ -119,6 +121,7 @@ T__28 T__29 T__30 T__31 +T__32 COMMENT PUB_KW IDENTIFIER @@ -138,4 +141,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 41, 266, 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, 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, 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, 208, 8, 32, 10, 32, 12, 32, 211, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 5, 34, 220, 8, 34, 10, 34, 12, 34, 223, 9, 34, 1, 35, 1, 35, 1, 36, 4, 36, 228, 8, 36, 11, 36, 12, 36, 229, 1, 37, 1, 37, 1, 38, 5, 38, 235, 8, 38, 10, 38, 12, 38, 238, 9, 38, 1, 38, 1, 38, 4, 38, 242, 8, 38, 11, 38, 12, 38, 243, 1, 39, 1, 39, 5, 39, 248, 8, 39, 10, 39, 12, 39, 251, 9, 39, 1, 39, 1, 39, 1, 40, 3, 40, 256, 8, 40, 1, 40, 1, 40, 1, 41, 4, 41, 261, 8, 41, 11, 41, 12, 41, 262, 1, 41, 1, 41, 1, 249, 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, 273, 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, 185, 1, 0, 0, 0, 57, 191, 1, 0, 0, 0, 59, 195, 1, 0, 0, 0, 61, 198, 1, 0, 0, 0, 63, 201, 1, 0, 0, 0, 65, 203, 1, 0, 0, 0, 67, 212, 1, 0, 0, 0, 69, 216, 1, 0, 0, 0, 71, 224, 1, 0, 0, 0, 73, 227, 1, 0, 0, 0, 75, 231, 1, 0, 0, 0, 77, 236, 1, 0, 0, 0, 79, 245, 1, 0, 0, 0, 81, 255, 1, 0, 0, 0, 83, 260, 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, 99, 0, 0, 176, 177, 5, 111, 0, 0, 177, 178, 5, 109, 0, 0, 178, 179, 5, 112, 0, 0, 179, 180, 5, 111, 0, 0, 180, 181, 5, 110, 0, 0, 181, 182, 5, 101, 0, 0, 182, 183, 5, 110, 0, 0, 183, 184, 5, 116, 0, 0, 184, 54, 1, 0, 0, 0, 185, 186, 5, 110, 0, 0, 186, 187, 5, 111, 0, 0, 187, 188, 5, 100, 0, 0, 188, 189, 5, 101, 0, 0, 189, 190, 5, 115, 0, 0, 190, 56, 1, 0, 0, 0, 191, 192, 5, 110, 0, 0, 192, 193, 5, 101, 0, 0, 193, 194, 5, 116, 0, 0, 194, 58, 1, 0, 0, 0, 195, 196, 5, 45, 0, 0, 196, 197, 5, 62, 0, 0, 197, 60, 1, 0, 0, 0, 198, 199, 5, 61, 0, 0, 199, 200, 5, 62, 0, 0, 200, 62, 1, 0, 0, 0, 201, 202, 5, 36, 0, 0, 202, 64, 1, 0, 0, 0, 203, 204, 5, 47, 0, 0, 204, 205, 5, 47, 0, 0, 205, 209, 1, 0, 0, 0, 206, 208, 8, 0, 0, 0, 207, 206, 1, 0, 0, 0, 208, 211, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 66, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 212, 213, 5, 112, 0, 0, 213, 214, 5, 117, 0, 0, 214, 215, 5, 98, 0, 0, 215, 68, 1, 0, 0, 0, 216, 221, 3, 71, 35, 0, 217, 220, 3, 71, 35, 0, 218, 220, 3, 73, 36, 0, 219, 217, 1, 0, 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, 70, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 225, 7, 1, 0, 0, 225, 72, 1, 0, 0, 0, 226, 228, 7, 2, 0, 0, 227, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 74, 1, 0, 0, 0, 231, 232, 5, 45, 0, 0, 232, 76, 1, 0, 0, 0, 233, 235, 7, 2, 0, 0, 234, 233, 1, 0, 0, 0, 235, 238, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 239, 1, 0, 0, 0, 238, 236, 1, 0, 0, 0, 239, 241, 5, 46, 0, 0, 240, 242, 7, 2, 0, 0, 241, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 78, 1, 0, 0, 0, 245, 249, 5, 39, 0, 0, 246, 248, 9, 0, 0, 0, 247, 246, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 252, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 253, 5, 39, 0, 0, 253, 80, 1, 0, 0, 0, 254, 256, 5, 13, 0, 0, 255, 254, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 5, 10, 0, 0, 258, 82, 1, 0, 0, 0, 259, 261, 7, 3, 0, 0, 260, 259, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 6, 41, 0, 0, 265, 84, 1, 0, 0, 0, 10, 0, 209, 219, 221, 229, 236, 243, 249, 255, 262, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 42, 270, 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, 2, 42, 7, 42, 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, 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, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 212, 8, 33, 10, 33, 12, 33, 215, 9, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 5, 35, 224, 8, 35, 10, 35, 12, 35, 227, 9, 35, 1, 36, 1, 36, 1, 37, 4, 37, 232, 8, 37, 11, 37, 12, 37, 233, 1, 38, 1, 38, 1, 39, 5, 39, 239, 8, 39, 10, 39, 12, 39, 242, 9, 39, 1, 39, 1, 39, 4, 39, 246, 8, 39, 11, 39, 12, 39, 247, 1, 40, 1, 40, 5, 40, 252, 8, 40, 10, 40, 12, 40, 255, 9, 40, 1, 40, 1, 40, 1, 41, 3, 41, 260, 8, 41, 1, 41, 1, 41, 1, 42, 4, 42, 265, 8, 42, 11, 42, 12, 42, 266, 1, 42, 1, 42, 1, 253, 0, 43, 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, 36, 73, 0, 75, 37, 77, 38, 79, 39, 81, 40, 83, 41, 85, 42, 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, 277, 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, 71, 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, 0, 85, 1, 0, 0, 0, 1, 87, 1, 0, 0, 0, 3, 89, 1, 0, 0, 0, 5, 91, 1, 0, 0, 0, 7, 93, 1, 0, 0, 0, 9, 95, 1, 0, 0, 0, 11, 102, 1, 0, 0, 0, 13, 104, 1, 0, 0, 0, 15, 106, 1, 0, 0, 0, 17, 108, 1, 0, 0, 0, 19, 110, 1, 0, 0, 0, 21, 112, 1, 0, 0, 0, 23, 114, 1, 0, 0, 0, 25, 119, 1, 0, 0, 0, 27, 121, 1, 0, 0, 0, 29, 123, 1, 0, 0, 0, 31, 128, 1, 0, 0, 0, 33, 135, 1, 0, 0, 0, 35, 137, 1, 0, 0, 0, 37, 147, 1, 0, 0, 0, 39, 149, 1, 0, 0, 0, 41, 151, 1, 0, 0, 0, 43, 157, 1, 0, 0, 0, 45, 159, 1, 0, 0, 0, 47, 163, 1, 0, 0, 0, 49, 168, 1, 0, 0, 0, 51, 174, 1, 0, 0, 0, 53, 177, 1, 0, 0, 0, 55, 187, 1, 0, 0, 0, 57, 193, 1, 0, 0, 0, 59, 195, 1, 0, 0, 0, 61, 199, 1, 0, 0, 0, 63, 202, 1, 0, 0, 0, 65, 205, 1, 0, 0, 0, 67, 207, 1, 0, 0, 0, 69, 216, 1, 0, 0, 0, 71, 220, 1, 0, 0, 0, 73, 228, 1, 0, 0, 0, 75, 231, 1, 0, 0, 0, 77, 235, 1, 0, 0, 0, 79, 240, 1, 0, 0, 0, 81, 249, 1, 0, 0, 0, 83, 259, 1, 0, 0, 0, 85, 264, 1, 0, 0, 0, 87, 88, 5, 35, 0, 0, 88, 2, 1, 0, 0, 0, 89, 90, 5, 40, 0, 0, 90, 4, 1, 0, 0, 0, 91, 92, 5, 44, 0, 0, 92, 6, 1, 0, 0, 0, 93, 94, 5, 41, 0, 0, 94, 8, 1, 0, 0, 0, 95, 96, 5, 105, 0, 0, 96, 97, 5, 109, 0, 0, 97, 98, 5, 112, 0, 0, 98, 99, 5, 111, 0, 0, 99, 100, 5, 114, 0, 0, 100, 101, 5, 116, 0, 0, 101, 10, 1, 0, 0, 0, 102, 103, 5, 123, 0, 0, 103, 12, 1, 0, 0, 0, 104, 105, 5, 125, 0, 0, 105, 14, 1, 0, 0, 0, 106, 107, 5, 58, 0, 0, 107, 16, 1, 0, 0, 0, 108, 109, 5, 64, 0, 0, 109, 18, 1, 0, 0, 0, 110, 111, 5, 47, 0, 0, 111, 20, 1, 0, 0, 0, 112, 113, 5, 46, 0, 0, 113, 22, 1, 0, 0, 0, 114, 115, 5, 116, 0, 0, 115, 116, 5, 121, 0, 0, 116, 117, 5, 112, 0, 0, 117, 118, 5, 101, 0, 0, 118, 24, 1, 0, 0, 0, 119, 120, 5, 60, 0, 0, 120, 26, 1, 0, 0, 0, 121, 122, 5, 62, 0, 0, 122, 28, 1, 0, 0, 0, 123, 124, 5, 101, 0, 0, 124, 125, 5, 110, 0, 0, 125, 126, 5, 117, 0, 0, 126, 127, 5, 109, 0, 0, 127, 30, 1, 0, 0, 0, 128, 129, 5, 115, 0, 0, 129, 130, 5, 116, 0, 0, 130, 131, 5, 114, 0, 0, 131, 132, 5, 117, 0, 0, 132, 133, 5, 99, 0, 0, 133, 134, 5, 116, 0, 0, 134, 32, 1, 0, 0, 0, 135, 136, 5, 124, 0, 0, 136, 34, 1, 0, 0, 0, 137, 138, 5, 105, 0, 0, 138, 139, 5, 110, 0, 0, 139, 140, 5, 116, 0, 0, 140, 141, 5, 101, 0, 0, 141, 142, 5, 114, 0, 0, 142, 143, 5, 102, 0, 0, 143, 144, 5, 97, 0, 0, 144, 145, 5, 99, 0, 0, 145, 146, 5, 101, 0, 0, 146, 36, 1, 0, 0, 0, 147, 148, 5, 91, 0, 0, 148, 38, 1, 0, 0, 0, 149, 150, 5, 93, 0, 0, 150, 40, 1, 0, 0, 0, 151, 152, 5, 99, 0, 0, 152, 153, 5, 111, 0, 0, 153, 154, 5, 110, 0, 0, 154, 155, 5, 115, 0, 0, 155, 156, 5, 116, 0, 0, 156, 42, 1, 0, 0, 0, 157, 158, 5, 61, 0, 0, 158, 44, 1, 0, 0, 0, 159, 160, 5, 110, 0, 0, 160, 161, 5, 105, 0, 0, 161, 162, 5, 108, 0, 0, 162, 46, 1, 0, 0, 0, 163, 164, 5, 116, 0, 0, 164, 165, 5, 114, 0, 0, 165, 166, 5, 117, 0, 0, 166, 167, 5, 101, 0, 0, 167, 48, 1, 0, 0, 0, 168, 169, 5, 102, 0, 0, 169, 170, 5, 97, 0, 0, 170, 171, 5, 108, 0, 0, 171, 172, 5, 115, 0, 0, 172, 173, 5, 101, 0, 0, 173, 50, 1, 0, 0, 0, 174, 175, 5, 58, 0, 0, 175, 176, 5, 58, 0, 0, 176, 52, 1, 0, 0, 0, 177, 178, 5, 99, 0, 0, 178, 179, 5, 111, 0, 0, 179, 180, 5, 109, 0, 0, 180, 181, 5, 112, 0, 0, 181, 182, 5, 111, 0, 0, 182, 183, 5, 110, 0, 0, 183, 184, 5, 101, 0, 0, 184, 185, 5, 110, 0, 0, 185, 186, 5, 116, 0, 0, 186, 54, 1, 0, 0, 0, 187, 188, 5, 110, 0, 0, 188, 189, 5, 111, 0, 0, 189, 190, 5, 100, 0, 0, 190, 191, 5, 101, 0, 0, 191, 192, 5, 115, 0, 0, 192, 56, 1, 0, 0, 0, 193, 194, 5, 63, 0, 0, 194, 58, 1, 0, 0, 0, 195, 196, 5, 110, 0, 0, 196, 197, 5, 101, 0, 0, 197, 198, 5, 116, 0, 0, 198, 60, 1, 0, 0, 0, 199, 200, 5, 45, 0, 0, 200, 201, 5, 62, 0, 0, 201, 62, 1, 0, 0, 0, 202, 203, 5, 61, 0, 0, 203, 204, 5, 62, 0, 0, 204, 64, 1, 0, 0, 0, 205, 206, 5, 36, 0, 0, 206, 66, 1, 0, 0, 0, 207, 208, 5, 47, 0, 0, 208, 209, 5, 47, 0, 0, 209, 213, 1, 0, 0, 0, 210, 212, 8, 0, 0, 0, 211, 210, 1, 0, 0, 0, 212, 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 68, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 217, 5, 112, 0, 0, 217, 218, 5, 117, 0, 0, 218, 219, 5, 98, 0, 0, 219, 70, 1, 0, 0, 0, 220, 225, 3, 73, 36, 0, 221, 224, 3, 73, 36, 0, 222, 224, 3, 75, 37, 0, 223, 221, 1, 0, 0, 0, 223, 222, 1, 0, 0, 0, 224, 227, 1, 0, 0, 0, 225, 223, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 72, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 228, 229, 7, 1, 0, 0, 229, 74, 1, 0, 0, 0, 230, 232, 7, 2, 0, 0, 231, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 76, 1, 0, 0, 0, 235, 236, 5, 45, 0, 0, 236, 78, 1, 0, 0, 0, 237, 239, 7, 2, 0, 0, 238, 237, 1, 0, 0, 0, 239, 242, 1, 0, 0, 0, 240, 238, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 243, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 245, 5, 46, 0, 0, 244, 246, 7, 2, 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, 80, 1, 0, 0, 0, 249, 253, 5, 39, 0, 0, 250, 252, 9, 0, 0, 0, 251, 250, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 257, 5, 39, 0, 0, 257, 82, 1, 0, 0, 0, 258, 260, 5, 13, 0, 0, 259, 258, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 5, 10, 0, 0, 262, 84, 1, 0, 0, 0, 263, 265, 7, 3, 0, 0, 264, 263, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 269, 6, 42, 0, 0, 269, 86, 1, 0, 0, 0, 10, 0, 213, 223, 225, 233, 240, 247, 253, 259, 266, 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 a7450fc8..8514055e 100644 --- a/internal/compiler/parser/generated/nevaLexer.tokens +++ b/internal/compiler/parser/generated/nevaLexer.tokens @@ -30,15 +30,16 @@ 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 +T__32=33 +COMMENT=34 +PUB_KW=35 +IDENTIFIER=36 +INT=37 +MINUS=38 +FLOAT=39 +STRING=40 +NEWLINE=41 +WS=42 '#'=1 '('=2 ','=3 @@ -67,9 +68,10 @@ WS=41 '::'=26 'component'=27 'nodes'=28 -'net'=29 -'->'=30 -'=>'=31 -'$'=32 -'pub'=34 -'-'=37 +'?'=29 +'net'=30 +'->'=31 +'=>'=32 +'$'=33 +'pub'=35 +'-'=38 diff --git a/internal/compiler/parser/generated/neva_base_listener.go b/internal/compiler/parser/generated/neva_base_listener.go index e5e27012..5d077840 100644 --- a/internal/compiler/parser/generated/neva_base_listener.go +++ b/internal/compiler/parser/generated/neva_base_listener.go @@ -440,6 +440,12 @@ func (s *BasenevaListener) EnterNodeInst(ctx *NodeInstContext) {} // ExitNodeInst is called when production nodeInst is exited. func (s *BasenevaListener) ExitNodeInst(ctx *NodeInstContext) {} +// EnterErrGuard is called when production errGuard is entered. +func (s *BasenevaListener) EnterErrGuard(ctx *ErrGuardContext) {} + +// ExitErrGuard is called when production errGuard is exited. +func (s *BasenevaListener) ExitErrGuard(ctx *ErrGuardContext) {} + // EnterNodeDIArgs is called when production nodeDIArgs is entered. func (s *BasenevaListener) EnterNodeDIArgs(ctx *NodeDIArgsContext) {} diff --git a/internal/compiler/parser/generated/neva_lexer.go b/internal/compiler/parser/generated/neva_lexer.go index 55424682..9b83aad7 100644 --- a/internal/compiler/parser/generated/neva_lexer.go +++ b/internal/compiler/parser/generated/neva_lexer.go @@ -46,26 +46,26 @@ func nevalexerLexerInit() { "", "'#'", "'('", "','", "')'", "'import'", "'{'", "'}'", "':'", "'@'", "'/'", "'.'", "'type'", "'<'", "'>'", "'enum'", "'struct'", "'|'", "'interface'", "'['", "']'", "'const'", "'='", "'nil'", "'true'", "'false'", "'::'", - "'component'", "'nodes'", "'net'", "'->'", "'=>'", "'$'", "", "'pub'", - "", "", "'-'", + "'component'", "'nodes'", "'?'", "'net'", "'->'", "'=>'", "'$'", "", + "'pub'", "", "", "'-'", } staticData.SymbolicNames = []string{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", - "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", "NEWLINE", - "WS", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", + "COMMENT", "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", + "NEWLINE", "WS", } staticData.RuleNames = []string{ "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", "T__31", "T__32", + "COMMENT", "PUB_KW", "IDENTIFIER", "LETTER", "INT", "MINUS", "FLOAT", + "STRING", "NEWLINE", "WS", } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 0, 41, 266, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, + 4, 0, 42, 270, 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, @@ -73,114 +73,115 @@ func nevalexerLexerInit() { 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, 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, 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, 208, 8, 32, 10, 32, 12, 32, 211, 9, - 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 5, 34, 220, 8, 34, - 10, 34, 12, 34, 223, 9, 34, 1, 35, 1, 35, 1, 36, 4, 36, 228, 8, 36, 11, - 36, 12, 36, 229, 1, 37, 1, 37, 1, 38, 5, 38, 235, 8, 38, 10, 38, 12, 38, - 238, 9, 38, 1, 38, 1, 38, 4, 38, 242, 8, 38, 11, 38, 12, 38, 243, 1, 39, - 1, 39, 5, 39, 248, 8, 39, 10, 39, 12, 39, 251, 9, 39, 1, 39, 1, 39, 1, - 40, 3, 40, 256, 8, 40, 1, 40, 1, 40, 1, 41, 4, 41, 261, 8, 41, 11, 41, - 12, 41, 262, 1, 41, 1, 41, 1, 249, 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, 273, 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, 185, 1, 0, 0, - 0, 57, 191, 1, 0, 0, 0, 59, 195, 1, 0, 0, 0, 61, 198, 1, 0, 0, 0, 63, 201, - 1, 0, 0, 0, 65, 203, 1, 0, 0, 0, 67, 212, 1, 0, 0, 0, 69, 216, 1, 0, 0, - 0, 71, 224, 1, 0, 0, 0, 73, 227, 1, 0, 0, 0, 75, 231, 1, 0, 0, 0, 77, 236, - 1, 0, 0, 0, 79, 245, 1, 0, 0, 0, 81, 255, 1, 0, 0, 0, 83, 260, 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, 99, 0, 0, 176, 177, 5, 111, 0, 0, 177, 178, 5, - 109, 0, 0, 178, 179, 5, 112, 0, 0, 179, 180, 5, 111, 0, 0, 180, 181, 5, - 110, 0, 0, 181, 182, 5, 101, 0, 0, 182, 183, 5, 110, 0, 0, 183, 184, 5, - 116, 0, 0, 184, 54, 1, 0, 0, 0, 185, 186, 5, 110, 0, 0, 186, 187, 5, 111, - 0, 0, 187, 188, 5, 100, 0, 0, 188, 189, 5, 101, 0, 0, 189, 190, 5, 115, - 0, 0, 190, 56, 1, 0, 0, 0, 191, 192, 5, 110, 0, 0, 192, 193, 5, 101, 0, - 0, 193, 194, 5, 116, 0, 0, 194, 58, 1, 0, 0, 0, 195, 196, 5, 45, 0, 0, - 196, 197, 5, 62, 0, 0, 197, 60, 1, 0, 0, 0, 198, 199, 5, 61, 0, 0, 199, - 200, 5, 62, 0, 0, 200, 62, 1, 0, 0, 0, 201, 202, 5, 36, 0, 0, 202, 64, - 1, 0, 0, 0, 203, 204, 5, 47, 0, 0, 204, 205, 5, 47, 0, 0, 205, 209, 1, - 0, 0, 0, 206, 208, 8, 0, 0, 0, 207, 206, 1, 0, 0, 0, 208, 211, 1, 0, 0, - 0, 209, 207, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 66, 1, 0, 0, 0, 211, - 209, 1, 0, 0, 0, 212, 213, 5, 112, 0, 0, 213, 214, 5, 117, 0, 0, 214, 215, - 5, 98, 0, 0, 215, 68, 1, 0, 0, 0, 216, 221, 3, 71, 35, 0, 217, 220, 3, - 71, 35, 0, 218, 220, 3, 73, 36, 0, 219, 217, 1, 0, 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, 70, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 225, 7, 1, 0, 0, 225, 72, - 1, 0, 0, 0, 226, 228, 7, 2, 0, 0, 227, 226, 1, 0, 0, 0, 228, 229, 1, 0, - 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 74, 1, 0, 0, 0, - 231, 232, 5, 45, 0, 0, 232, 76, 1, 0, 0, 0, 233, 235, 7, 2, 0, 0, 234, - 233, 1, 0, 0, 0, 235, 238, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 236, 237, - 1, 0, 0, 0, 237, 239, 1, 0, 0, 0, 238, 236, 1, 0, 0, 0, 239, 241, 5, 46, - 0, 0, 240, 242, 7, 2, 0, 0, 241, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, - 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 78, 1, 0, 0, 0, 245, 249, - 5, 39, 0, 0, 246, 248, 9, 0, 0, 0, 247, 246, 1, 0, 0, 0, 248, 251, 1, 0, - 0, 0, 249, 250, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 252, 1, 0, 0, 0, - 251, 249, 1, 0, 0, 0, 252, 253, 5, 39, 0, 0, 253, 80, 1, 0, 0, 0, 254, - 256, 5, 13, 0, 0, 255, 254, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, - 1, 0, 0, 0, 257, 258, 5, 10, 0, 0, 258, 82, 1, 0, 0, 0, 259, 261, 7, 3, - 0, 0, 260, 259, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, - 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 6, 41, 0, 0, 265, - 84, 1, 0, 0, 0, 10, 0, 209, 219, 221, 229, 236, 243, 249, 255, 262, 1, - 0, 1, 0, + 41, 2, 42, 7, 42, 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, 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, 29, 1, 30, 1, 30, 1, 30, 1, 31, + 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 212, 8, + 33, 10, 33, 12, 33, 215, 9, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, + 1, 35, 5, 35, 224, 8, 35, 10, 35, 12, 35, 227, 9, 35, 1, 36, 1, 36, 1, + 37, 4, 37, 232, 8, 37, 11, 37, 12, 37, 233, 1, 38, 1, 38, 1, 39, 5, 39, + 239, 8, 39, 10, 39, 12, 39, 242, 9, 39, 1, 39, 1, 39, 4, 39, 246, 8, 39, + 11, 39, 12, 39, 247, 1, 40, 1, 40, 5, 40, 252, 8, 40, 10, 40, 12, 40, 255, + 9, 40, 1, 40, 1, 40, 1, 41, 3, 41, 260, 8, 41, 1, 41, 1, 41, 1, 42, 4, + 42, 265, 8, 42, 11, 42, 12, 42, 266, 1, 42, 1, 42, 1, 253, 0, 43, 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, 36, 73, 0, 75, 37, 77, + 38, 79, 39, 81, 40, 83, 41, 85, 42, 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, 277, 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, + 71, 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, 0, 85, 1, 0, 0, 0, 1, 87, 1, 0, 0, + 0, 3, 89, 1, 0, 0, 0, 5, 91, 1, 0, 0, 0, 7, 93, 1, 0, 0, 0, 9, 95, 1, 0, + 0, 0, 11, 102, 1, 0, 0, 0, 13, 104, 1, 0, 0, 0, 15, 106, 1, 0, 0, 0, 17, + 108, 1, 0, 0, 0, 19, 110, 1, 0, 0, 0, 21, 112, 1, 0, 0, 0, 23, 114, 1, + 0, 0, 0, 25, 119, 1, 0, 0, 0, 27, 121, 1, 0, 0, 0, 29, 123, 1, 0, 0, 0, + 31, 128, 1, 0, 0, 0, 33, 135, 1, 0, 0, 0, 35, 137, 1, 0, 0, 0, 37, 147, + 1, 0, 0, 0, 39, 149, 1, 0, 0, 0, 41, 151, 1, 0, 0, 0, 43, 157, 1, 0, 0, + 0, 45, 159, 1, 0, 0, 0, 47, 163, 1, 0, 0, 0, 49, 168, 1, 0, 0, 0, 51, 174, + 1, 0, 0, 0, 53, 177, 1, 0, 0, 0, 55, 187, 1, 0, 0, 0, 57, 193, 1, 0, 0, + 0, 59, 195, 1, 0, 0, 0, 61, 199, 1, 0, 0, 0, 63, 202, 1, 0, 0, 0, 65, 205, + 1, 0, 0, 0, 67, 207, 1, 0, 0, 0, 69, 216, 1, 0, 0, 0, 71, 220, 1, 0, 0, + 0, 73, 228, 1, 0, 0, 0, 75, 231, 1, 0, 0, 0, 77, 235, 1, 0, 0, 0, 79, 240, + 1, 0, 0, 0, 81, 249, 1, 0, 0, 0, 83, 259, 1, 0, 0, 0, 85, 264, 1, 0, 0, + 0, 87, 88, 5, 35, 0, 0, 88, 2, 1, 0, 0, 0, 89, 90, 5, 40, 0, 0, 90, 4, + 1, 0, 0, 0, 91, 92, 5, 44, 0, 0, 92, 6, 1, 0, 0, 0, 93, 94, 5, 41, 0, 0, + 94, 8, 1, 0, 0, 0, 95, 96, 5, 105, 0, 0, 96, 97, 5, 109, 0, 0, 97, 98, + 5, 112, 0, 0, 98, 99, 5, 111, 0, 0, 99, 100, 5, 114, 0, 0, 100, 101, 5, + 116, 0, 0, 101, 10, 1, 0, 0, 0, 102, 103, 5, 123, 0, 0, 103, 12, 1, 0, + 0, 0, 104, 105, 5, 125, 0, 0, 105, 14, 1, 0, 0, 0, 106, 107, 5, 58, 0, + 0, 107, 16, 1, 0, 0, 0, 108, 109, 5, 64, 0, 0, 109, 18, 1, 0, 0, 0, 110, + 111, 5, 47, 0, 0, 111, 20, 1, 0, 0, 0, 112, 113, 5, 46, 0, 0, 113, 22, + 1, 0, 0, 0, 114, 115, 5, 116, 0, 0, 115, 116, 5, 121, 0, 0, 116, 117, 5, + 112, 0, 0, 117, 118, 5, 101, 0, 0, 118, 24, 1, 0, 0, 0, 119, 120, 5, 60, + 0, 0, 120, 26, 1, 0, 0, 0, 121, 122, 5, 62, 0, 0, 122, 28, 1, 0, 0, 0, + 123, 124, 5, 101, 0, 0, 124, 125, 5, 110, 0, 0, 125, 126, 5, 117, 0, 0, + 126, 127, 5, 109, 0, 0, 127, 30, 1, 0, 0, 0, 128, 129, 5, 115, 0, 0, 129, + 130, 5, 116, 0, 0, 130, 131, 5, 114, 0, 0, 131, 132, 5, 117, 0, 0, 132, + 133, 5, 99, 0, 0, 133, 134, 5, 116, 0, 0, 134, 32, 1, 0, 0, 0, 135, 136, + 5, 124, 0, 0, 136, 34, 1, 0, 0, 0, 137, 138, 5, 105, 0, 0, 138, 139, 5, + 110, 0, 0, 139, 140, 5, 116, 0, 0, 140, 141, 5, 101, 0, 0, 141, 142, 5, + 114, 0, 0, 142, 143, 5, 102, 0, 0, 143, 144, 5, 97, 0, 0, 144, 145, 5, + 99, 0, 0, 145, 146, 5, 101, 0, 0, 146, 36, 1, 0, 0, 0, 147, 148, 5, 91, + 0, 0, 148, 38, 1, 0, 0, 0, 149, 150, 5, 93, 0, 0, 150, 40, 1, 0, 0, 0, + 151, 152, 5, 99, 0, 0, 152, 153, 5, 111, 0, 0, 153, 154, 5, 110, 0, 0, + 154, 155, 5, 115, 0, 0, 155, 156, 5, 116, 0, 0, 156, 42, 1, 0, 0, 0, 157, + 158, 5, 61, 0, 0, 158, 44, 1, 0, 0, 0, 159, 160, 5, 110, 0, 0, 160, 161, + 5, 105, 0, 0, 161, 162, 5, 108, 0, 0, 162, 46, 1, 0, 0, 0, 163, 164, 5, + 116, 0, 0, 164, 165, 5, 114, 0, 0, 165, 166, 5, 117, 0, 0, 166, 167, 5, + 101, 0, 0, 167, 48, 1, 0, 0, 0, 168, 169, 5, 102, 0, 0, 169, 170, 5, 97, + 0, 0, 170, 171, 5, 108, 0, 0, 171, 172, 5, 115, 0, 0, 172, 173, 5, 101, + 0, 0, 173, 50, 1, 0, 0, 0, 174, 175, 5, 58, 0, 0, 175, 176, 5, 58, 0, 0, + 176, 52, 1, 0, 0, 0, 177, 178, 5, 99, 0, 0, 178, 179, 5, 111, 0, 0, 179, + 180, 5, 109, 0, 0, 180, 181, 5, 112, 0, 0, 181, 182, 5, 111, 0, 0, 182, + 183, 5, 110, 0, 0, 183, 184, 5, 101, 0, 0, 184, 185, 5, 110, 0, 0, 185, + 186, 5, 116, 0, 0, 186, 54, 1, 0, 0, 0, 187, 188, 5, 110, 0, 0, 188, 189, + 5, 111, 0, 0, 189, 190, 5, 100, 0, 0, 190, 191, 5, 101, 0, 0, 191, 192, + 5, 115, 0, 0, 192, 56, 1, 0, 0, 0, 193, 194, 5, 63, 0, 0, 194, 58, 1, 0, + 0, 0, 195, 196, 5, 110, 0, 0, 196, 197, 5, 101, 0, 0, 197, 198, 5, 116, + 0, 0, 198, 60, 1, 0, 0, 0, 199, 200, 5, 45, 0, 0, 200, 201, 5, 62, 0, 0, + 201, 62, 1, 0, 0, 0, 202, 203, 5, 61, 0, 0, 203, 204, 5, 62, 0, 0, 204, + 64, 1, 0, 0, 0, 205, 206, 5, 36, 0, 0, 206, 66, 1, 0, 0, 0, 207, 208, 5, + 47, 0, 0, 208, 209, 5, 47, 0, 0, 209, 213, 1, 0, 0, 0, 210, 212, 8, 0, + 0, 0, 211, 210, 1, 0, 0, 0, 212, 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, + 213, 214, 1, 0, 0, 0, 214, 68, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 217, + 5, 112, 0, 0, 217, 218, 5, 117, 0, 0, 218, 219, 5, 98, 0, 0, 219, 70, 1, + 0, 0, 0, 220, 225, 3, 73, 36, 0, 221, 224, 3, 73, 36, 0, 222, 224, 3, 75, + 37, 0, 223, 221, 1, 0, 0, 0, 223, 222, 1, 0, 0, 0, 224, 227, 1, 0, 0, 0, + 225, 223, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 72, 1, 0, 0, 0, 227, 225, + 1, 0, 0, 0, 228, 229, 7, 1, 0, 0, 229, 74, 1, 0, 0, 0, 230, 232, 7, 2, + 0, 0, 231, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, + 233, 234, 1, 0, 0, 0, 234, 76, 1, 0, 0, 0, 235, 236, 5, 45, 0, 0, 236, + 78, 1, 0, 0, 0, 237, 239, 7, 2, 0, 0, 238, 237, 1, 0, 0, 0, 239, 242, 1, + 0, 0, 0, 240, 238, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 243, 1, 0, 0, + 0, 242, 240, 1, 0, 0, 0, 243, 245, 5, 46, 0, 0, 244, 246, 7, 2, 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, 80, 1, 0, 0, 0, 249, 253, 5, 39, 0, 0, 250, 252, 9, 0, + 0, 0, 251, 250, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, + 253, 251, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, + 257, 5, 39, 0, 0, 257, 82, 1, 0, 0, 0, 258, 260, 5, 13, 0, 0, 259, 258, + 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 5, 10, + 0, 0, 262, 84, 1, 0, 0, 0, 263, 265, 7, 3, 0, 0, 264, 263, 1, 0, 0, 0, + 265, 266, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, + 268, 1, 0, 0, 0, 268, 269, 6, 42, 0, 0, 269, 86, 1, 0, 0, 0, 10, 0, 213, + 223, 225, 233, 240, 247, 253, 259, 266, 1, 0, 1, 0, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -253,13 +254,14 @@ const ( 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 + nevaLexerT__32 = 33 + nevaLexerCOMMENT = 34 + nevaLexerPUB_KW = 35 + nevaLexerIDENTIFIER = 36 + nevaLexerINT = 37 + nevaLexerMINUS = 38 + nevaLexerFLOAT = 39 + nevaLexerSTRING = 40 + nevaLexerNEWLINE = 41 + nevaLexerWS = 42 ) diff --git a/internal/compiler/parser/generated/neva_listener.go b/internal/compiler/parser/generated/neva_listener.go index 7ac459d7..1a52bd77 100644 --- a/internal/compiler/parser/generated/neva_listener.go +++ b/internal/compiler/parser/generated/neva_listener.go @@ -217,6 +217,9 @@ type nevaListener interface { // EnterNodeInst is called when entering the nodeInst production. EnterNodeInst(c *NodeInstContext) + // EnterErrGuard is called when entering the errGuard production. + EnterErrGuard(c *ErrGuardContext) + // EnterNodeDIArgs is called when entering the nodeDIArgs production. EnterNodeDIArgs(c *NodeDIArgsContext) @@ -502,6 +505,9 @@ type nevaListener interface { // ExitNodeInst is called when exiting the nodeInst production. ExitNodeInst(c *NodeInstContext) + // ExitErrGuard is called when exiting the errGuard production. + ExitErrGuard(c *ErrGuardContext) + // ExitNodeDIArgs is called when exiting the nodeDIArgs production. ExitNodeDIArgs(c *NodeDIArgsContext) diff --git a/internal/compiler/parser/generated/neva_parser.go b/internal/compiler/parser/generated/neva_parser.go index cee17cee..fef3c947 100644 --- a/internal/compiler/parser/generated/neva_parser.go +++ b/internal/compiler/parser/generated/neva_parser.go @@ -35,14 +35,14 @@ func nevaParserInit() { "", "'#'", "'('", "','", "')'", "'import'", "'{'", "'}'", "':'", "'@'", "'/'", "'.'", "'type'", "'<'", "'>'", "'enum'", "'struct'", "'|'", "'interface'", "'['", "']'", "'const'", "'='", "'nil'", "'true'", "'false'", "'::'", - "'component'", "'nodes'", "'net'", "'->'", "'=>'", "'$'", "", "'pub'", - "", "", "'-'", + "'component'", "'nodes'", "'?'", "'net'", "'->'", "'=>'", "'$'", "", + "'pub'", "", "", "'-'", } staticData.SymbolicNames = []string{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "COMMENT", - "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", "NEWLINE", - "WS", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", + "COMMENT", "PUB_KW", "IDENTIFIER", "INT", "MINUS", "FLOAT", "STRING", + "NEWLINE", "WS", } staticData.RuleNames = []string{ "prog", "stmt", "compilerDirectives", "compilerDirective", "compilerDirectivesArgs", @@ -59,7 +59,7 @@ func nevaParserInit() { "bool", "enumLit", "listLit", "listItems", "compositeItem", "structLit", "structValueFields", "structValueField", "compStmt", "singleCompStmt", "groupCompStmt", "compDef", "compBody", "compNodesDef", "compNodesDefBody", - "compNodeDef", "nodeInst", "nodeDIArgs", "compNetDef", "compNetBody", + "compNodeDef", "nodeInst", "errGuard", "nodeDIArgs", "compNetDef", "compNetBody", "connDefList", "connDef", "normConnDef", "senderSide", "multipleSenderSide", "arrBypassConnDef", "singleSenderSide", "receiverSide", "chainedNormConn", "deferredConn", "senderConstRef", "portAddr", "lonelySinglePortAddr", @@ -69,7 +69,7 @@ func nevaParserInit() { } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 41, 1203, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, + 4, 1, 42, 1210, 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, @@ -87,546 +87,549 @@ func nevaParserInit() { 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, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, - 94, 1, 0, 1, 0, 1, 0, 5, 0, 194, 8, 0, 10, 0, 12, 0, 197, 9, 0, 1, 0, 1, - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 206, 8, 1, 1, 2, 1, 2, 1, 2, 4, - 2, 211, 8, 2, 11, 2, 12, 2, 212, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, - 4, 1, 4, 1, 4, 1, 4, 5, 4, 224, 8, 4, 10, 4, 12, 4, 227, 9, 4, 1, 4, 1, - 4, 1, 5, 4, 5, 232, 8, 5, 11, 5, 12, 5, 233, 1, 6, 1, 6, 5, 6, 238, 8, - 6, 10, 6, 12, 6, 241, 9, 6, 1, 6, 1, 6, 5, 6, 245, 8, 6, 10, 6, 12, 6, - 248, 9, 6, 1, 6, 5, 6, 251, 8, 6, 10, 6, 12, 6, 254, 9, 6, 1, 6, 1, 6, - 1, 7, 3, 7, 259, 8, 7, 1, 7, 1, 7, 5, 7, 263, 8, 7, 10, 7, 12, 7, 266, - 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 273, 8, 9, 1, 9, 1, 9, 1, 10, - 1, 10, 3, 10, 279, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 285, 8, 11, - 10, 11, 12, 11, 288, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 295, - 8, 13, 10, 13, 12, 13, 298, 9, 13, 1, 14, 1, 14, 3, 14, 302, 8, 14, 1, - 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, - 1, 19, 3, 19, 316, 8, 19, 1, 20, 3, 20, 319, 8, 20, 1, 20, 1, 20, 1, 20, - 1, 21, 1, 21, 5, 21, 326, 8, 21, 10, 21, 12, 21, 329, 9, 21, 1, 21, 1, - 21, 5, 21, 333, 8, 21, 10, 21, 12, 21, 336, 9, 21, 1, 21, 3, 21, 339, 8, - 21, 1, 21, 1, 21, 5, 21, 343, 8, 21, 10, 21, 12, 21, 346, 9, 21, 5, 21, - 348, 8, 21, 10, 21, 12, 21, 351, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, - 22, 357, 8, 22, 1, 22, 3, 22, 360, 8, 22, 1, 22, 3, 22, 363, 8, 22, 1, - 23, 1, 23, 5, 23, 367, 8, 23, 10, 23, 12, 23, 370, 9, 23, 1, 23, 3, 23, - 373, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 5, 24, 380, 8, 24, 10, 24, - 12, 24, 383, 9, 24, 1, 24, 5, 24, 386, 8, 24, 10, 24, 12, 24, 389, 9, 24, - 1, 25, 1, 25, 3, 25, 393, 8, 25, 1, 25, 5, 25, 396, 8, 25, 10, 25, 12, - 25, 399, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 404, 8, 26, 1, 27, 1, 27, 3, - 27, 408, 8, 27, 1, 28, 1, 28, 5, 28, 412, 8, 28, 10, 28, 12, 28, 415, 9, - 28, 1, 28, 1, 28, 1, 28, 5, 28, 420, 8, 28, 10, 28, 12, 28, 423, 9, 28, - 1, 28, 5, 28, 426, 8, 28, 10, 28, 12, 28, 429, 9, 28, 1, 28, 5, 28, 432, - 8, 28, 10, 28, 12, 28, 435, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 441, - 8, 29, 1, 30, 1, 30, 5, 30, 445, 8, 30, 10, 30, 12, 30, 448, 9, 30, 1, - 30, 1, 30, 5, 30, 452, 8, 30, 10, 30, 12, 30, 455, 9, 30, 1, 30, 1, 30, - 1, 30, 5, 30, 460, 8, 30, 10, 30, 12, 30, 463, 9, 30, 1, 30, 5, 30, 466, - 8, 30, 10, 30, 12, 30, 469, 9, 30, 1, 30, 5, 30, 472, 8, 30, 10, 30, 12, - 30, 475, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 5, 31, 481, 8, 31, 10, 31, - 12, 31, 484, 9, 31, 1, 31, 1, 31, 5, 31, 488, 8, 31, 10, 31, 12, 31, 491, - 9, 31, 1, 31, 3, 31, 494, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 4, 32, 500, - 8, 32, 11, 32, 12, 32, 501, 1, 32, 5, 32, 505, 8, 32, 10, 32, 12, 32, 508, - 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 513, 8, 33, 10, 33, 12, 33, 516, 9, - 33, 1, 34, 1, 34, 5, 34, 520, 8, 34, 10, 34, 12, 34, 523, 9, 34, 1, 34, - 1, 34, 5, 34, 527, 8, 34, 10, 34, 12, 34, 530, 9, 34, 1, 34, 4, 34, 533, - 8, 34, 11, 34, 12, 34, 534, 1, 35, 1, 35, 3, 35, 539, 8, 35, 1, 36, 1, - 36, 3, 36, 543, 8, 36, 1, 37, 3, 37, 546, 8, 37, 1, 37, 1, 37, 1, 37, 1, - 38, 1, 38, 5, 38, 553, 8, 38, 10, 38, 12, 38, 556, 9, 38, 1, 38, 1, 38, - 5, 38, 560, 8, 38, 10, 38, 12, 38, 563, 9, 38, 1, 38, 3, 38, 566, 8, 38, - 1, 38, 5, 38, 569, 8, 38, 10, 38, 12, 38, 572, 9, 38, 1, 38, 1, 38, 1, - 39, 1, 39, 3, 39, 578, 8, 39, 1, 39, 1, 39, 1, 39, 5, 39, 583, 8, 39, 10, - 39, 12, 39, 586, 9, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 5, 42, - 594, 8, 42, 10, 42, 12, 42, 597, 9, 42, 1, 42, 3, 42, 600, 8, 42, 1, 42, - 1, 42, 1, 42, 5, 42, 605, 8, 42, 10, 42, 12, 42, 608, 9, 42, 3, 42, 610, - 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 616, 8, 43, 1, 44, 5, 44, 619, - 8, 44, 10, 44, 12, 44, 622, 9, 44, 1, 44, 1, 44, 3, 44, 626, 8, 44, 1, - 44, 5, 44, 629, 8, 44, 10, 44, 12, 44, 632, 9, 44, 1, 45, 5, 45, 635, 8, - 45, 10, 45, 12, 45, 638, 9, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 644, - 8, 45, 1, 45, 5, 45, 647, 8, 45, 10, 45, 12, 45, 650, 9, 45, 1, 46, 1, - 46, 3, 46, 654, 8, 46, 1, 47, 3, 47, 657, 8, 47, 1, 47, 1, 47, 1, 47, 1, - 48, 1, 48, 5, 48, 664, 8, 48, 10, 48, 12, 48, 667, 9, 48, 1, 48, 1, 48, - 5, 48, 671, 8, 48, 10, 48, 12, 48, 674, 9, 48, 1, 48, 3, 48, 677, 8, 48, - 1, 48, 5, 48, 680, 8, 48, 10, 48, 12, 48, 683, 9, 48, 1, 48, 1, 48, 1, - 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 692, 8, 49, 1, 49, 5, 49, 695, 8, - 49, 10, 49, 12, 49, 698, 9, 49, 1, 50, 1, 50, 1, 50, 3, 50, 703, 8, 50, - 1, 50, 1, 50, 3, 50, 707, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, - 50, 714, 8, 50, 1, 51, 1, 51, 1, 51, 3, 51, 719, 8, 51, 1, 51, 1, 51, 3, - 51, 723, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 728, 8, 51, 1, 52, 1, 52, 1, - 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 5, 55, 740, 8, 55, - 10, 55, 12, 55, 743, 9, 55, 1, 55, 3, 55, 746, 8, 55, 1, 55, 1, 55, 1, - 56, 1, 56, 1, 56, 1, 56, 5, 56, 754, 8, 56, 10, 56, 12, 56, 757, 9, 56, - 1, 56, 1, 56, 5, 56, 761, 8, 56, 10, 56, 12, 56, 764, 9, 56, 5, 56, 766, - 8, 56, 10, 56, 12, 56, 769, 9, 56, 3, 56, 771, 8, 56, 1, 57, 1, 57, 3, - 57, 775, 8, 57, 1, 58, 1, 58, 5, 58, 779, 8, 58, 10, 58, 12, 58, 782, 9, - 58, 1, 58, 3, 58, 785, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 5, 59, - 792, 8, 59, 10, 59, 12, 59, 795, 9, 59, 1, 59, 5, 59, 798, 8, 59, 10, 59, - 12, 59, 801, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 807, 8, 60, 10, - 60, 12, 60, 810, 9, 60, 1, 61, 1, 61, 3, 61, 814, 8, 61, 1, 62, 3, 62, - 817, 8, 62, 1, 62, 3, 62, 820, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, - 5, 63, 827, 8, 63, 10, 63, 12, 63, 830, 9, 63, 1, 63, 1, 63, 5, 63, 834, - 8, 63, 10, 63, 12, 63, 837, 9, 63, 1, 63, 1, 63, 5, 63, 841, 8, 63, 10, - 63, 12, 63, 844, 9, 63, 5, 63, 846, 8, 63, 10, 63, 12, 63, 849, 9, 63, - 1, 63, 3, 63, 852, 8, 63, 1, 63, 3, 63, 855, 8, 63, 1, 63, 5, 63, 858, - 8, 63, 10, 63, 12, 63, 861, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, - 64, 868, 8, 64, 1, 64, 5, 64, 871, 8, 64, 10, 64, 12, 64, 874, 9, 64, 1, - 65, 1, 65, 5, 65, 878, 8, 65, 10, 65, 12, 65, 881, 9, 65, 1, 65, 1, 65, - 5, 65, 885, 8, 65, 10, 65, 12, 65, 888, 9, 65, 5, 65, 890, 8, 65, 10, 65, - 12, 65, 893, 9, 65, 1, 65, 1, 65, 5, 65, 897, 8, 65, 10, 65, 12, 65, 900, - 9, 65, 3, 65, 902, 8, 65, 1, 65, 1, 65, 5, 65, 906, 8, 65, 10, 65, 12, - 65, 909, 9, 65, 5, 65, 911, 8, 65, 10, 65, 12, 65, 914, 9, 65, 1, 65, 1, - 65, 5, 65, 918, 8, 65, 10, 65, 12, 65, 921, 9, 65, 3, 65, 923, 8, 65, 1, - 65, 1, 65, 5, 65, 927, 8, 65, 10, 65, 12, 65, 930, 9, 65, 5, 65, 932, 8, - 65, 10, 65, 12, 65, 935, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, 5, 66, 941, - 8, 66, 10, 66, 12, 66, 944, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 5, 67, 950, - 8, 67, 10, 67, 12, 67, 953, 9, 67, 1, 67, 1, 67, 3, 67, 957, 8, 67, 1, - 67, 3, 67, 960, 8, 67, 1, 67, 5, 67, 963, 8, 67, 10, 67, 12, 67, 966, 9, - 67, 5, 67, 968, 8, 67, 10, 67, 12, 67, 971, 9, 67, 1, 67, 1, 67, 1, 68, - 3, 68, 976, 8, 68, 1, 68, 3, 68, 979, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, - 5, 69, 985, 8, 69, 10, 69, 12, 69, 988, 9, 69, 1, 69, 3, 69, 991, 8, 69, - 1, 69, 5, 69, 994, 8, 69, 10, 69, 12, 69, 997, 9, 69, 1, 69, 3, 69, 1000, - 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 5, 71, 1006, 8, 71, 10, 71, 12, 71, - 1009, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 5, 72, 1015, 8, 72, 10, 72, 12, - 72, 1018, 9, 72, 1, 72, 3, 72, 1021, 8, 72, 1, 72, 5, 72, 1024, 8, 72, - 10, 72, 12, 72, 1027, 9, 72, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1033, 8, - 73, 1, 73, 5, 73, 1036, 8, 73, 10, 73, 12, 73, 1039, 9, 73, 1, 73, 1, 73, - 3, 73, 1043, 8, 73, 5, 73, 1045, 8, 73, 10, 73, 12, 73, 1048, 9, 73, 1, - 74, 1, 74, 3, 74, 1052, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, - 3, 76, 1060, 8, 76, 1, 77, 1, 77, 5, 77, 1064, 8, 77, 10, 77, 12, 77, 1067, - 9, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1072, 8, 77, 10, 77, 12, 77, 1075, 9, - 77, 1, 77, 1, 77, 5, 77, 1079, 8, 77, 10, 77, 12, 77, 1082, 9, 77, 5, 77, - 1084, 8, 77, 10, 77, 12, 77, 1087, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, - 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1098, 8, 79, 1, 79, 3, 79, 1101, - 8, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1106, 8, 80, 1, 81, 1, 81, 1, 82, 1, - 82, 5, 82, 1112, 8, 82, 10, 82, 12, 82, 1115, 9, 82, 1, 82, 1, 82, 5, 82, - 1119, 8, 82, 10, 82, 12, 82, 1122, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, - 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1133, 8, 84, 1, 85, 1, 85, 1, 86, - 1, 86, 1, 86, 1, 87, 3, 87, 1141, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 3, - 88, 1147, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, - 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 1165, 8, - 92, 10, 92, 12, 92, 1168, 9, 92, 1, 93, 1, 93, 3, 93, 1172, 8, 93, 1, 94, - 1, 94, 5, 94, 1176, 8, 94, 10, 94, 12, 94, 1179, 9, 94, 1, 94, 1, 94, 1, - 94, 5, 94, 1184, 8, 94, 10, 94, 12, 94, 1187, 9, 94, 1, 94, 1, 94, 5, 94, - 1191, 8, 94, 10, 94, 12, 94, 1194, 9, 94, 5, 94, 1196, 8, 94, 10, 94, 12, - 94, 1199, 9, 94, 1, 94, 1, 94, 1, 94, 0, 0, 95, 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, 172, 174, 176, - 178, 180, 182, 184, 186, 188, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1291, 0, - 195, 1, 0, 0, 0, 2, 205, 1, 0, 0, 0, 4, 210, 1, 0, 0, 0, 6, 214, 1, 0, - 0, 0, 8, 219, 1, 0, 0, 0, 10, 231, 1, 0, 0, 0, 12, 235, 1, 0, 0, 0, 14, - 258, 1, 0, 0, 0, 16, 267, 1, 0, 0, 0, 18, 272, 1, 0, 0, 0, 20, 278, 1, - 0, 0, 0, 22, 280, 1, 0, 0, 0, 24, 289, 1, 0, 0, 0, 26, 291, 1, 0, 0, 0, - 28, 301, 1, 0, 0, 0, 30, 303, 1, 0, 0, 0, 32, 305, 1, 0, 0, 0, 34, 309, - 1, 0, 0, 0, 36, 311, 1, 0, 0, 0, 38, 315, 1, 0, 0, 0, 40, 318, 1, 0, 0, - 0, 42, 323, 1, 0, 0, 0, 44, 354, 1, 0, 0, 0, 46, 364, 1, 0, 0, 0, 48, 376, - 1, 0, 0, 0, 50, 390, 1, 0, 0, 0, 52, 403, 1, 0, 0, 0, 54, 405, 1, 0, 0, - 0, 56, 409, 1, 0, 0, 0, 58, 440, 1, 0, 0, 0, 60, 442, 1, 0, 0, 0, 62, 478, - 1, 0, 0, 0, 64, 497, 1, 0, 0, 0, 66, 509, 1, 0, 0, 0, 68, 517, 1, 0, 0, - 0, 70, 538, 1, 0, 0, 0, 72, 542, 1, 0, 0, 0, 74, 545, 1, 0, 0, 0, 76, 550, - 1, 0, 0, 0, 78, 575, 1, 0, 0, 0, 80, 587, 1, 0, 0, 0, 82, 589, 1, 0, 0, - 0, 84, 591, 1, 0, 0, 0, 86, 615, 1, 0, 0, 0, 88, 620, 1, 0, 0, 0, 90, 636, - 1, 0, 0, 0, 92, 653, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 661, 1, 0, 0, - 0, 98, 686, 1, 0, 0, 0, 100, 713, 1, 0, 0, 0, 102, 727, 1, 0, 0, 0, 104, - 729, 1, 0, 0, 0, 106, 731, 1, 0, 0, 0, 108, 733, 1, 0, 0, 0, 110, 737, - 1, 0, 0, 0, 112, 770, 1, 0, 0, 0, 114, 774, 1, 0, 0, 0, 116, 776, 1, 0, - 0, 0, 118, 788, 1, 0, 0, 0, 120, 802, 1, 0, 0, 0, 122, 813, 1, 0, 0, 0, - 124, 816, 1, 0, 0, 0, 126, 824, 1, 0, 0, 0, 128, 864, 1, 0, 0, 0, 130, - 875, 1, 0, 0, 0, 132, 938, 1, 0, 0, 0, 134, 947, 1, 0, 0, 0, 136, 975, - 1, 0, 0, 0, 138, 982, 1, 0, 0, 0, 140, 1001, 1, 0, 0, 0, 142, 1003, 1, - 0, 0, 0, 144, 1012, 1, 0, 0, 0, 146, 1032, 1, 0, 0, 0, 148, 1051, 1, 0, - 0, 0, 150, 1053, 1, 0, 0, 0, 152, 1059, 1, 0, 0, 0, 154, 1061, 1, 0, 0, - 0, 156, 1090, 1, 0, 0, 0, 158, 1097, 1, 0, 0, 0, 160, 1105, 1, 0, 0, 0, - 162, 1107, 1, 0, 0, 0, 164, 1109, 1, 0, 0, 0, 166, 1125, 1, 0, 0, 0, 168, - 1132, 1, 0, 0, 0, 170, 1134, 1, 0, 0, 0, 172, 1136, 1, 0, 0, 0, 174, 1140, - 1, 0, 0, 0, 176, 1146, 1, 0, 0, 0, 178, 1152, 1, 0, 0, 0, 180, 1154, 1, - 0, 0, 0, 182, 1156, 1, 0, 0, 0, 184, 1160, 1, 0, 0, 0, 186, 1171, 1, 0, - 0, 0, 188, 1173, 1, 0, 0, 0, 190, 194, 5, 40, 0, 0, 191, 194, 5, 33, 0, - 0, 192, 194, 3, 2, 1, 0, 193, 190, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 193, - 192, 1, 0, 0, 0, 194, 197, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 195, 196, - 1, 0, 0, 0, 196, 198, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 198, 199, 5, 0, - 0, 1, 199, 1, 1, 0, 0, 0, 200, 206, 3, 12, 6, 0, 201, 206, 3, 38, 19, 0, - 202, 206, 3, 72, 36, 0, 203, 206, 3, 92, 46, 0, 204, 206, 3, 122, 61, 0, - 205, 200, 1, 0, 0, 0, 205, 201, 1, 0, 0, 0, 205, 202, 1, 0, 0, 0, 205, - 203, 1, 0, 0, 0, 205, 204, 1, 0, 0, 0, 206, 3, 1, 0, 0, 0, 207, 208, 3, - 6, 3, 0, 208, 209, 5, 40, 0, 0, 209, 211, 1, 0, 0, 0, 210, 207, 1, 0, 0, - 0, 211, 212, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, - 5, 1, 0, 0, 0, 214, 215, 5, 1, 0, 0, 215, 217, 5, 35, 0, 0, 216, 218, 3, - 8, 4, 0, 217, 216, 1, 0, 0, 0, 217, 218, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, - 219, 220, 5, 2, 0, 0, 220, 225, 3, 10, 5, 0, 221, 222, 5, 3, 0, 0, 222, - 224, 3, 10, 5, 0, 223, 221, 1, 0, 0, 0, 224, 227, 1, 0, 0, 0, 225, 223, - 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 228, 1, 0, 0, 0, 227, 225, 1, 0, - 0, 0, 228, 229, 5, 4, 0, 0, 229, 9, 1, 0, 0, 0, 230, 232, 5, 35, 0, 0, - 231, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, - 234, 1, 0, 0, 0, 234, 11, 1, 0, 0, 0, 235, 239, 5, 5, 0, 0, 236, 238, 5, - 40, 0, 0, 237, 236, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, - 0, 239, 240, 1, 0, 0, 0, 240, 242, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, - 246, 5, 6, 0, 0, 243, 245, 5, 40, 0, 0, 244, 243, 1, 0, 0, 0, 245, 248, - 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 252, 1, 0, - 0, 0, 248, 246, 1, 0, 0, 0, 249, 251, 3, 14, 7, 0, 250, 249, 1, 0, 0, 0, - 251, 254, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, - 255, 1, 0, 0, 0, 254, 252, 1, 0, 0, 0, 255, 256, 5, 7, 0, 0, 256, 13, 1, - 0, 0, 0, 257, 259, 3, 16, 8, 0, 258, 257, 1, 0, 0, 0, 258, 259, 1, 0, 0, - 0, 259, 260, 1, 0, 0, 0, 260, 264, 3, 18, 9, 0, 261, 263, 5, 40, 0, 0, - 262, 261, 1, 0, 0, 0, 263, 266, 1, 0, 0, 0, 264, 262, 1, 0, 0, 0, 264, - 265, 1, 0, 0, 0, 265, 15, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 267, 268, 5, - 35, 0, 0, 268, 17, 1, 0, 0, 0, 269, 270, 3, 20, 10, 0, 270, 271, 5, 8, - 0, 0, 271, 273, 1, 0, 0, 0, 272, 269, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, - 273, 274, 1, 0, 0, 0, 274, 275, 3, 26, 13, 0, 275, 19, 1, 0, 0, 0, 276, - 279, 5, 9, 0, 0, 277, 279, 3, 22, 11, 0, 278, 276, 1, 0, 0, 0, 278, 277, - 1, 0, 0, 0, 279, 21, 1, 0, 0, 0, 280, 286, 5, 35, 0, 0, 281, 282, 3, 24, - 12, 0, 282, 283, 5, 35, 0, 0, 283, 285, 1, 0, 0, 0, 284, 281, 1, 0, 0, - 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, - 23, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 290, 7, 0, 0, 0, 290, 25, 1, - 0, 0, 0, 291, 296, 5, 35, 0, 0, 292, 293, 5, 10, 0, 0, 293, 295, 5, 35, - 0, 0, 294, 292, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, - 296, 297, 1, 0, 0, 0, 297, 27, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 302, - 3, 32, 16, 0, 300, 302, 3, 30, 15, 0, 301, 299, 1, 0, 0, 0, 301, 300, 1, - 0, 0, 0, 302, 29, 1, 0, 0, 0, 303, 304, 5, 35, 0, 0, 304, 31, 1, 0, 0, - 0, 305, 306, 3, 34, 17, 0, 306, 307, 5, 11, 0, 0, 307, 308, 3, 36, 18, - 0, 308, 33, 1, 0, 0, 0, 309, 310, 5, 35, 0, 0, 310, 35, 1, 0, 0, 0, 311, - 312, 5, 35, 0, 0, 312, 37, 1, 0, 0, 0, 313, 316, 3, 40, 20, 0, 314, 316, - 3, 42, 21, 0, 315, 313, 1, 0, 0, 0, 315, 314, 1, 0, 0, 0, 316, 39, 1, 0, - 0, 0, 317, 319, 5, 34, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, - 319, 320, 1, 0, 0, 0, 320, 321, 5, 12, 0, 0, 321, 322, 3, 44, 22, 0, 322, - 41, 1, 0, 0, 0, 323, 327, 5, 12, 0, 0, 324, 326, 5, 40, 0, 0, 325, 324, - 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 327, 328, 1, 0, - 0, 0, 328, 330, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 330, 334, 5, 6, 0, 0, - 331, 333, 5, 40, 0, 0, 332, 331, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, - 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 349, 1, 0, 0, 0, 336, 334, - 1, 0, 0, 0, 337, 339, 5, 34, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, - 0, 0, 339, 340, 1, 0, 0, 0, 340, 344, 3, 44, 22, 0, 341, 343, 5, 40, 0, - 0, 342, 341, 1, 0, 0, 0, 343, 346, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, - 345, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 338, - 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, - 0, 0, 350, 352, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 5, 7, 0, 0, - 353, 43, 1, 0, 0, 0, 354, 356, 5, 35, 0, 0, 355, 357, 3, 46, 23, 0, 356, - 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 359, 1, 0, 0, 0, 358, 360, - 3, 52, 26, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 362, 1, - 0, 0, 0, 361, 363, 5, 33, 0, 0, 362, 361, 1, 0, 0, 0, 362, 363, 1, 0, 0, - 0, 363, 45, 1, 0, 0, 0, 364, 368, 5, 13, 0, 0, 365, 367, 5, 40, 0, 0, 366, - 365, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, - 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 373, 3, 48, - 24, 0, 372, 371, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, - 374, 375, 5, 14, 0, 0, 375, 47, 1, 0, 0, 0, 376, 387, 3, 50, 25, 0, 377, - 381, 5, 3, 0, 0, 378, 380, 5, 40, 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, 386, 3, 50, 25, 0, 385, 377, 1, 0, 0, - 0, 386, 389, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, - 49, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 390, 392, 5, 35, 0, 0, 391, 393, - 3, 52, 26, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 397, 1, - 0, 0, 0, 394, 396, 5, 40, 0, 0, 395, 394, 1, 0, 0, 0, 396, 399, 1, 0, 0, - 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 51, 1, 0, 0, 0, 399, - 397, 1, 0, 0, 0, 400, 404, 3, 54, 27, 0, 401, 404, 3, 58, 29, 0, 402, 404, - 3, 68, 34, 0, 403, 400, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 402, 1, - 0, 0, 0, 404, 53, 1, 0, 0, 0, 405, 407, 3, 28, 14, 0, 406, 408, 3, 56, - 28, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 55, 1, 0, 0, 0, - 409, 413, 5, 13, 0, 0, 410, 412, 5, 40, 0, 0, 411, 410, 1, 0, 0, 0, 412, - 415, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 416, - 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 416, 427, 3, 52, 26, 0, 417, 421, 5, - 3, 0, 0, 418, 420, 5, 40, 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, 426, 3, 52, 26, 0, 425, 417, 1, 0, 0, 0, 426, 429, - 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 433, 1, 0, - 0, 0, 429, 427, 1, 0, 0, 0, 430, 432, 5, 40, 0, 0, 431, 430, 1, 0, 0, 0, - 432, 435, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, - 436, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 436, 437, 5, 14, 0, 0, 437, 57, - 1, 0, 0, 0, 438, 441, 3, 60, 30, 0, 439, 441, 3, 62, 31, 0, 440, 438, 1, - 0, 0, 0, 440, 439, 1, 0, 0, 0, 441, 59, 1, 0, 0, 0, 442, 446, 5, 15, 0, - 0, 443, 445, 5, 40, 0, 0, 444, 443, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, - 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 449, 1, 0, 0, 0, 448, 446, - 1, 0, 0, 0, 449, 453, 5, 6, 0, 0, 450, 452, 5, 40, 0, 0, 451, 450, 1, 0, - 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, - 454, 456, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 467, 5, 35, 0, 0, 457, - 461, 5, 3, 0, 0, 458, 460, 5, 40, 0, 0, 459, 458, 1, 0, 0, 0, 460, 463, - 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 1, 0, - 0, 0, 463, 461, 1, 0, 0, 0, 464, 466, 5, 35, 0, 0, 465, 457, 1, 0, 0, 0, - 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, - 473, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 470, 472, 5, 40, 0, 0, 471, 470, - 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, - 0, 0, 474, 476, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 476, 477, 5, 7, 0, 0, - 477, 61, 1, 0, 0, 0, 478, 482, 5, 16, 0, 0, 479, 481, 5, 40, 0, 0, 480, - 479, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, - 1, 0, 0, 0, 483, 485, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 489, 5, 6, - 0, 0, 486, 488, 5, 40, 0, 0, 487, 486, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, - 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, - 489, 1, 0, 0, 0, 492, 494, 3, 64, 32, 0, 493, 492, 1, 0, 0, 0, 493, 494, - 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 5, 7, 0, 0, 496, 63, 1, 0, - 0, 0, 497, 506, 3, 66, 33, 0, 498, 500, 5, 40, 0, 0, 499, 498, 1, 0, 0, - 0, 500, 501, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, - 503, 1, 0, 0, 0, 503, 505, 3, 66, 33, 0, 504, 499, 1, 0, 0, 0, 505, 508, - 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 65, 1, 0, - 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 5, 35, 0, 0, 510, 514, 3, 52, 26, - 0, 511, 513, 5, 40, 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, 67, 1, 0, 0, 0, 516, 514, 1, - 0, 0, 0, 517, 532, 3, 70, 35, 0, 518, 520, 5, 40, 0, 0, 519, 518, 1, 0, - 0, 0, 520, 523, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, - 522, 524, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 528, 5, 17, 0, 0, 525, - 527, 5, 40, 0, 0, 526, 525, 1, 0, 0, 0, 527, 530, 1, 0, 0, 0, 528, 526, - 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 1, 0, 0, 0, 530, 528, 1, 0, - 0, 0, 531, 533, 3, 70, 35, 0, 532, 521, 1, 0, 0, 0, 533, 534, 1, 0, 0, - 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 69, 1, 0, 0, 0, 536, - 539, 3, 54, 27, 0, 537, 539, 3, 58, 29, 0, 538, 536, 1, 0, 0, 0, 538, 537, - 1, 0, 0, 0, 539, 71, 1, 0, 0, 0, 540, 543, 3, 74, 37, 0, 541, 543, 3, 76, - 38, 0, 542, 540, 1, 0, 0, 0, 542, 541, 1, 0, 0, 0, 543, 73, 1, 0, 0, 0, - 544, 546, 5, 34, 0, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, - 547, 1, 0, 0, 0, 547, 548, 5, 18, 0, 0, 548, 549, 3, 78, 39, 0, 549, 75, - 1, 0, 0, 0, 550, 554, 5, 18, 0, 0, 551, 553, 5, 40, 0, 0, 552, 551, 1, - 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, - 0, 555, 557, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 557, 561, 5, 6, 0, 0, 558, - 560, 5, 40, 0, 0, 559, 558, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 559, - 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 570, 1, 0, 0, 0, 563, 561, 1, 0, - 0, 0, 564, 566, 5, 34, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, - 566, 567, 1, 0, 0, 0, 567, 569, 3, 78, 39, 0, 568, 565, 1, 0, 0, 0, 569, - 572, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, - 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 574, 5, 7, 0, 0, 574, 77, 1, 0, - 0, 0, 575, 577, 5, 35, 0, 0, 576, 578, 3, 46, 23, 0, 577, 576, 1, 0, 0, - 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 3, 80, 40, 0, - 580, 584, 3, 82, 41, 0, 581, 583, 5, 40, 0, 0, 582, 581, 1, 0, 0, 0, 583, - 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 79, 1, - 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 588, 3, 84, 42, 0, 588, 81, 1, 0, 0, - 0, 589, 590, 3, 84, 42, 0, 590, 83, 1, 0, 0, 0, 591, 609, 5, 2, 0, 0, 592, - 594, 5, 40, 0, 0, 593, 592, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, - 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 610, 1, 0, 0, 0, 597, 595, 1, 0, - 0, 0, 598, 600, 3, 86, 43, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, - 0, 600, 610, 1, 0, 0, 0, 601, 606, 3, 86, 43, 0, 602, 603, 5, 3, 0, 0, - 603, 605, 3, 86, 43, 0, 604, 602, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, - 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, - 1, 0, 0, 0, 609, 595, 1, 0, 0, 0, 609, 599, 1, 0, 0, 0, 609, 601, 1, 0, - 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 4, 0, 0, 612, 85, 1, 0, 0, 0, - 613, 616, 3, 88, 44, 0, 614, 616, 3, 90, 45, 0, 615, 613, 1, 0, 0, 0, 615, - 614, 1, 0, 0, 0, 616, 87, 1, 0, 0, 0, 617, 619, 5, 40, 0, 0, 618, 617, - 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, - 0, 0, 621, 623, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 625, 5, 35, 0, 0, - 624, 626, 3, 52, 26, 0, 625, 624, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, - 630, 1, 0, 0, 0, 627, 629, 5, 40, 0, 0, 628, 627, 1, 0, 0, 0, 629, 632, - 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 89, 1, 0, - 0, 0, 632, 630, 1, 0, 0, 0, 633, 635, 5, 40, 0, 0, 634, 633, 1, 0, 0, 0, - 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, - 639, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 5, 19, 0, 0, 640, 641, - 5, 35, 0, 0, 641, 643, 5, 20, 0, 0, 642, 644, 3, 52, 26, 0, 643, 642, 1, - 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 648, 1, 0, 0, 0, 645, 647, 5, 40, 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, 91, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 651, 654, 3, - 94, 47, 0, 652, 654, 3, 96, 48, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, - 0, 0, 654, 93, 1, 0, 0, 0, 655, 657, 5, 34, 0, 0, 656, 655, 1, 0, 0, 0, - 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 5, 21, 0, 0, 659, - 660, 3, 98, 49, 0, 660, 95, 1, 0, 0, 0, 661, 665, 5, 21, 0, 0, 662, 664, - 5, 40, 0, 0, 663, 662, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, - 0, 0, 665, 666, 1, 0, 0, 0, 666, 668, 1, 0, 0, 0, 667, 665, 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, 681, - 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 677, 5, 34, 0, 0, 676, 675, 1, 0, - 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 3, 98, 49, - 0, 679, 676, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 681, - 682, 1, 0, 0, 0, 682, 684, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 684, 685, - 5, 7, 0, 0, 685, 97, 1, 0, 0, 0, 686, 687, 5, 35, 0, 0, 687, 688, 3, 52, - 26, 0, 688, 691, 5, 22, 0, 0, 689, 692, 3, 28, 14, 0, 690, 692, 3, 100, - 50, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 696, 1, 0, 0, 0, - 693, 695, 5, 40, 0, 0, 694, 693, 1, 0, 0, 0, 695, 698, 1, 0, 0, 0, 696, - 694, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 99, 1, 0, 0, 0, 698, 696, 1, - 0, 0, 0, 699, 714, 3, 104, 52, 0, 700, 714, 3, 106, 53, 0, 701, 703, 5, - 37, 0, 0, 702, 701, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 704, 1, 0, 0, - 0, 704, 714, 5, 36, 0, 0, 705, 707, 5, 37, 0, 0, 706, 705, 1, 0, 0, 0, - 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 714, 5, 38, 0, 0, 709, - 714, 5, 39, 0, 0, 710, 714, 3, 108, 54, 0, 711, 714, 3, 110, 55, 0, 712, - 714, 3, 116, 58, 0, 713, 699, 1, 0, 0, 0, 713, 700, 1, 0, 0, 0, 713, 702, - 1, 0, 0, 0, 713, 706, 1, 0, 0, 0, 713, 709, 1, 0, 0, 0, 713, 710, 1, 0, - 0, 0, 713, 711, 1, 0, 0, 0, 713, 712, 1, 0, 0, 0, 714, 101, 1, 0, 0, 0, - 715, 728, 3, 104, 52, 0, 716, 728, 3, 106, 53, 0, 717, 719, 5, 37, 0, 0, - 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, - 728, 5, 36, 0, 0, 721, 723, 5, 37, 0, 0, 722, 721, 1, 0, 0, 0, 722, 723, - 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 728, 5, 38, 0, 0, 725, 728, 5, 39, - 0, 0, 726, 728, 3, 108, 54, 0, 727, 715, 1, 0, 0, 0, 727, 716, 1, 0, 0, - 0, 727, 718, 1, 0, 0, 0, 727, 722, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, - 726, 1, 0, 0, 0, 728, 103, 1, 0, 0, 0, 729, 730, 5, 23, 0, 0, 730, 105, - 1, 0, 0, 0, 731, 732, 7, 1, 0, 0, 732, 107, 1, 0, 0, 0, 733, 734, 3, 28, - 14, 0, 734, 735, 5, 26, 0, 0, 735, 736, 5, 35, 0, 0, 736, 109, 1, 0, 0, - 0, 737, 741, 5, 19, 0, 0, 738, 740, 5, 40, 0, 0, 739, 738, 1, 0, 0, 0, - 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, - 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 746, 3, 112, 56, 0, 745, 744, - 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 20, - 0, 0, 748, 111, 1, 0, 0, 0, 749, 771, 3, 114, 57, 0, 750, 767, 3, 114, - 57, 0, 751, 755, 5, 3, 0, 0, 752, 754, 5, 40, 0, 0, 753, 752, 1, 0, 0, - 0, 754, 757, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, - 758, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 758, 762, 3, 114, 57, 0, 759, 761, - 5, 40, 0, 0, 760, 759, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, - 0, 0, 762, 763, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, - 765, 751, 1, 0, 0, 0, 766, 769, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 767, - 768, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 770, 749, - 1, 0, 0, 0, 770, 750, 1, 0, 0, 0, 771, 113, 1, 0, 0, 0, 772, 775, 3, 28, - 14, 0, 773, 775, 3, 100, 50, 0, 774, 772, 1, 0, 0, 0, 774, 773, 1, 0, 0, - 0, 775, 115, 1, 0, 0, 0, 776, 780, 5, 6, 0, 0, 777, 779, 5, 40, 0, 0, 778, - 777, 1, 0, 0, 0, 779, 782, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 780, 781, - 1, 0, 0, 0, 781, 784, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 785, 3, 118, - 59, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, - 786, 787, 5, 7, 0, 0, 787, 117, 1, 0, 0, 0, 788, 799, 3, 120, 60, 0, 789, - 793, 5, 3, 0, 0, 790, 792, 5, 40, 0, 0, 791, 790, 1, 0, 0, 0, 792, 795, - 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, - 0, 0, 795, 793, 1, 0, 0, 0, 796, 798, 3, 120, 60, 0, 797, 789, 1, 0, 0, - 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, - 119, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 35, 0, 0, 803, 804, - 5, 8, 0, 0, 804, 808, 3, 114, 57, 0, 805, 807, 5, 40, 0, 0, 806, 805, 1, - 0, 0, 0, 807, 810, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, - 0, 809, 121, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 814, 3, 124, 62, 0, - 812, 814, 3, 126, 63, 0, 813, 811, 1, 0, 0, 0, 813, 812, 1, 0, 0, 0, 814, - 123, 1, 0, 0, 0, 815, 817, 3, 4, 2, 0, 816, 815, 1, 0, 0, 0, 816, 817, - 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 820, 5, 34, 0, 0, 819, 818, 1, 0, - 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 27, 0, 0, - 822, 823, 3, 128, 64, 0, 823, 125, 1, 0, 0, 0, 824, 828, 5, 27, 0, 0, 825, - 827, 5, 40, 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, 831, 1, 0, 0, 0, 830, 828, 1, 0, - 0, 0, 831, 835, 5, 6, 0, 0, 832, 834, 5, 40, 0, 0, 833, 832, 1, 0, 0, 0, - 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, - 859, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 838, 842, 5, 33, 0, 0, 839, 841, - 5, 40, 0, 0, 840, 839, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, - 0, 0, 842, 843, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, - 845, 838, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, - 848, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 850, 852, - 3, 4, 2, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, - 0, 0, 853, 855, 5, 34, 0, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, - 855, 856, 1, 0, 0, 0, 856, 858, 3, 128, 64, 0, 857, 847, 1, 0, 0, 0, 858, - 861, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, - 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 5, 7, 0, 0, 863, 127, 1, 0, - 0, 0, 864, 867, 3, 78, 39, 0, 865, 868, 3, 130, 65, 0, 866, 868, 3, 144, - 72, 0, 867, 865, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, - 868, 872, 1, 0, 0, 0, 869, 871, 5, 40, 0, 0, 870, 869, 1, 0, 0, 0, 871, - 874, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 129, - 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 875, 879, 5, 6, 0, 0, 876, 878, 5, 40, - 0, 0, 877, 876, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, - 879, 880, 1, 0, 0, 0, 880, 891, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, - 886, 5, 33, 0, 0, 883, 885, 5, 40, 0, 0, 884, 883, 1, 0, 0, 0, 885, 888, - 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, - 0, 0, 888, 886, 1, 0, 0, 0, 889, 882, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, - 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 901, 1, 0, 0, 0, 893, - 891, 1, 0, 0, 0, 894, 898, 3, 132, 66, 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, 902, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 894, 1, 0, 0, 0, - 901, 902, 1, 0, 0, 0, 902, 912, 1, 0, 0, 0, 903, 907, 5, 33, 0, 0, 904, - 906, 5, 40, 0, 0, 905, 904, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, - 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, - 0, 0, 910, 903, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, - 912, 913, 1, 0, 0, 0, 913, 922, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, - 919, 3, 142, 71, 0, 916, 918, 5, 40, 0, 0, 917, 916, 1, 0, 0, 0, 918, 921, - 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 923, 1, 0, - 0, 0, 921, 919, 1, 0, 0, 0, 922, 915, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, - 923, 933, 1, 0, 0, 0, 924, 928, 5, 33, 0, 0, 925, 927, 5, 40, 0, 0, 926, - 925, 1, 0, 0, 0, 927, 930, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 928, 929, - 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 931, 924, 1, 0, - 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, - 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 7, 0, 0, 937, - 131, 1, 0, 0, 0, 938, 942, 5, 28, 0, 0, 939, 941, 5, 40, 0, 0, 940, 939, - 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, - 0, 0, 943, 945, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 3, 134, 67, - 0, 946, 133, 1, 0, 0, 0, 947, 951, 5, 6, 0, 0, 948, 950, 5, 40, 0, 0, 949, - 948, 1, 0, 0, 0, 950, 953, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 952, - 1, 0, 0, 0, 952, 969, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 954, 957, 3, 136, - 68, 0, 955, 957, 5, 33, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, - 0, 957, 959, 1, 0, 0, 0, 958, 960, 5, 3, 0, 0, 959, 958, 1, 0, 0, 0, 959, - 960, 1, 0, 0, 0, 960, 964, 1, 0, 0, 0, 961, 963, 5, 40, 0, 0, 962, 961, - 1, 0, 0, 0, 963, 966, 1, 0, 0, 0, 964, 962, 1, 0, 0, 0, 964, 965, 1, 0, - 0, 0, 965, 968, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 967, 956, 1, 0, 0, 0, - 968, 971, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, - 972, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 972, 973, 5, 7, 0, 0, 973, 135, - 1, 0, 0, 0, 974, 976, 3, 4, 2, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, - 0, 0, 976, 978, 1, 0, 0, 0, 977, 979, 5, 35, 0, 0, 978, 977, 1, 0, 0, 0, - 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 3, 138, 69, 0, 981, - 137, 1, 0, 0, 0, 982, 986, 3, 28, 14, 0, 983, 985, 5, 40, 0, 0, 984, 983, - 1, 0, 0, 0, 985, 988, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, 0, - 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 989, 991, 3, 56, 28, - 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 995, 1, 0, 0, 0, 992, - 994, 5, 40, 0, 0, 993, 992, 1, 0, 0, 0, 994, 997, 1, 0, 0, 0, 995, 993, - 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 999, 1, 0, 0, 0, 997, 995, 1, 0, - 0, 0, 998, 1000, 3, 140, 70, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, - 0, 0, 1000, 139, 1, 0, 0, 0, 1001, 1002, 3, 134, 67, 0, 1002, 141, 1, 0, - 0, 0, 1003, 1007, 5, 29, 0, 0, 1004, 1006, 5, 40, 0, 0, 1005, 1004, 1, - 0, 0, 0, 1006, 1009, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, - 0, 0, 0, 1008, 1010, 1, 0, 0, 0, 1009, 1007, 1, 0, 0, 0, 1010, 1011, 3, - 144, 72, 0, 1011, 143, 1, 0, 0, 0, 1012, 1016, 5, 6, 0, 0, 1013, 1015, - 5, 40, 0, 0, 1014, 1013, 1, 0, 0, 0, 1015, 1018, 1, 0, 0, 0, 1016, 1014, - 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, - 1, 0, 0, 0, 1019, 1021, 3, 146, 73, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, - 1, 0, 0, 0, 1021, 1025, 1, 0, 0, 0, 1022, 1024, 5, 40, 0, 0, 1023, 1022, - 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, - 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1029, - 5, 7, 0, 0, 1029, 145, 1, 0, 0, 0, 1030, 1033, 3, 148, 74, 0, 1031, 1033, - 5, 33, 0, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 1046, - 1, 0, 0, 0, 1034, 1036, 5, 40, 0, 0, 1035, 1034, 1, 0, 0, 0, 1036, 1039, - 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1042, - 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1040, 1043, 3, 148, 74, 0, 1041, 1043, - 5, 33, 0, 0, 1042, 1040, 1, 0, 0, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1045, - 1, 0, 0, 0, 1044, 1037, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, - 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 147, 1, 0, 0, 0, 1048, 1046, - 1, 0, 0, 0, 1049, 1052, 3, 150, 75, 0, 1050, 1052, 3, 156, 78, 0, 1051, - 1049, 1, 0, 0, 0, 1051, 1050, 1, 0, 0, 0, 1052, 149, 1, 0, 0, 0, 1053, - 1054, 3, 152, 76, 0, 1054, 1055, 5, 30, 0, 0, 1055, 1056, 3, 160, 80, 0, - 1056, 151, 1, 0, 0, 0, 1057, 1060, 3, 158, 79, 0, 1058, 1060, 3, 154, 77, - 0, 1059, 1057, 1, 0, 0, 0, 1059, 1058, 1, 0, 0, 0, 1060, 153, 1, 0, 0, - 0, 1061, 1065, 5, 19, 0, 0, 1062, 1064, 5, 40, 0, 0, 1063, 1062, 1, 0, - 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, - 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1085, 3, 158, - 79, 0, 1069, 1073, 5, 3, 0, 0, 1070, 1072, 5, 40, 0, 0, 1071, 1070, 1, - 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, - 0, 0, 0, 1074, 1076, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1080, 3, - 158, 79, 0, 1077, 1079, 5, 40, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1082, - 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1084, - 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1069, 1, 0, 0, 0, 1084, 1087, - 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, - 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1088, 1089, 5, 20, 0, 0, 1089, 155, - 1, 0, 0, 0, 1090, 1091, 3, 174, 87, 0, 1091, 1092, 5, 31, 0, 0, 1092, 1093, - 3, 174, 87, 0, 1093, 157, 1, 0, 0, 0, 1094, 1098, 3, 168, 84, 0, 1095, - 1098, 3, 166, 83, 0, 1096, 1098, 3, 102, 51, 0, 1097, 1094, 1, 0, 0, 0, - 1097, 1095, 1, 0, 0, 0, 1097, 1096, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, - 1099, 1101, 3, 184, 92, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, - 0, 1101, 159, 1, 0, 0, 0, 1102, 1106, 3, 162, 81, 0, 1103, 1106, 3, 186, - 93, 0, 1104, 1106, 3, 188, 94, 0, 1105, 1102, 1, 0, 0, 0, 1105, 1103, 1, - 0, 0, 0, 1105, 1104, 1, 0, 0, 0, 1106, 161, 1, 0, 0, 0, 1107, 1108, 3, - 150, 75, 0, 1108, 163, 1, 0, 0, 0, 1109, 1113, 5, 2, 0, 0, 1110, 1112, - 5, 40, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 1115, 1, 0, 0, 0, 1113, 1111, - 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1113, - 1, 0, 0, 0, 1116, 1120, 3, 148, 74, 0, 1117, 1119, 5, 40, 0, 0, 1118, 1117, - 1, 0, 0, 0, 1119, 1122, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, - 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1124, - 5, 4, 0, 0, 1124, 165, 1, 0, 0, 0, 1125, 1126, 5, 32, 0, 0, 1126, 1127, - 3, 28, 14, 0, 1127, 167, 1, 0, 0, 0, 1128, 1133, 3, 174, 87, 0, 1129, 1133, - 3, 176, 88, 0, 1130, 1133, 3, 170, 85, 0, 1131, 1133, 3, 172, 86, 0, 1132, - 1128, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1132, - 1131, 1, 0, 0, 0, 1133, 169, 1, 0, 0, 0, 1134, 1135, 3, 178, 89, 0, 1135, - 171, 1, 0, 0, 0, 1136, 1137, 3, 178, 89, 0, 1137, 1138, 3, 182, 91, 0, - 1138, 173, 1, 0, 0, 0, 1139, 1141, 3, 178, 89, 0, 1140, 1139, 1, 0, 0, - 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1143, 5, 8, 0, - 0, 1143, 1144, 3, 180, 90, 0, 1144, 175, 1, 0, 0, 0, 1145, 1147, 3, 178, - 89, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, - 0, 0, 1148, 1149, 5, 8, 0, 0, 1149, 1150, 3, 180, 90, 0, 1150, 1151, 3, - 182, 91, 0, 1151, 177, 1, 0, 0, 0, 1152, 1153, 5, 35, 0, 0, 1153, 179, - 1, 0, 0, 0, 1154, 1155, 5, 35, 0, 0, 1155, 181, 1, 0, 0, 0, 1156, 1157, - 5, 19, 0, 0, 1157, 1158, 5, 36, 0, 0, 1158, 1159, 5, 20, 0, 0, 1159, 183, - 1, 0, 0, 0, 1160, 1161, 5, 11, 0, 0, 1161, 1166, 5, 35, 0, 0, 1162, 1163, - 5, 11, 0, 0, 1163, 1165, 5, 35, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, - 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 185, - 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 3, 168, 84, 0, 1170, 1172, - 3, 164, 82, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1170, 1, 0, 0, 0, 1172, 187, - 1, 0, 0, 0, 1173, 1177, 5, 19, 0, 0, 1174, 1176, 5, 40, 0, 0, 1175, 1174, - 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, - 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1197, - 3, 186, 93, 0, 1181, 1185, 5, 3, 0, 0, 1182, 1184, 5, 40, 0, 0, 1183, 1182, - 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, - 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1192, - 3, 186, 93, 0, 1189, 1191, 5, 40, 0, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1194, - 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1196, - 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1181, 1, 0, 0, 0, 1196, 1199, - 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, - 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1201, 5, 20, 0, 0, 1201, 189, - 1, 0, 0, 0, 163, 193, 195, 205, 212, 217, 225, 233, 239, 246, 252, 258, - 264, 272, 278, 286, 296, 301, 315, 318, 327, 334, 338, 344, 349, 356, 359, - 362, 368, 372, 381, 387, 392, 397, 403, 407, 413, 421, 427, 433, 440, 446, - 453, 461, 467, 473, 482, 489, 493, 501, 506, 514, 521, 528, 534, 538, 542, - 545, 554, 561, 565, 570, 577, 584, 595, 599, 606, 609, 615, 620, 625, 630, - 636, 643, 648, 653, 656, 665, 672, 676, 681, 691, 696, 702, 706, 713, 718, - 722, 727, 741, 745, 755, 762, 767, 770, 774, 780, 784, 793, 799, 808, 813, - 816, 819, 828, 835, 842, 847, 851, 854, 859, 867, 872, 879, 886, 891, 898, - 901, 907, 912, 919, 922, 928, 933, 942, 951, 956, 959, 964, 969, 975, 978, - 986, 990, 995, 999, 1007, 1016, 1020, 1025, 1032, 1037, 1042, 1046, 1051, - 1059, 1065, 1073, 1080, 1085, 1097, 1100, 1105, 1113, 1120, 1132, 1140, - 1146, 1166, 1171, 1177, 1185, 1192, 1197, + 94, 2, 95, 7, 95, 1, 0, 1, 0, 1, 0, 5, 0, 196, 8, 0, 10, 0, 12, 0, 199, + 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 208, 8, 1, 1, 2, + 1, 2, 1, 2, 4, 2, 213, 8, 2, 11, 2, 12, 2, 214, 1, 3, 1, 3, 1, 3, 3, 3, + 220, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 5, 4, 226, 8, 4, 10, 4, 12, 4, 229, + 9, 4, 1, 4, 1, 4, 1, 5, 4, 5, 234, 8, 5, 11, 5, 12, 5, 235, 1, 6, 1, 6, + 5, 6, 240, 8, 6, 10, 6, 12, 6, 243, 9, 6, 1, 6, 1, 6, 5, 6, 247, 8, 6, + 10, 6, 12, 6, 250, 9, 6, 1, 6, 5, 6, 253, 8, 6, 10, 6, 12, 6, 256, 9, 6, + 1, 6, 1, 6, 1, 7, 3, 7, 261, 8, 7, 1, 7, 1, 7, 5, 7, 265, 8, 7, 10, 7, + 12, 7, 268, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 275, 8, 9, 1, 9, + 1, 9, 1, 10, 1, 10, 3, 10, 281, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, + 287, 8, 11, 10, 11, 12, 11, 290, 9, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, + 13, 5, 13, 297, 8, 13, 10, 13, 12, 13, 300, 9, 13, 1, 14, 1, 14, 3, 14, + 304, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, + 18, 1, 18, 1, 19, 1, 19, 3, 19, 318, 8, 19, 1, 20, 3, 20, 321, 8, 20, 1, + 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 328, 8, 21, 10, 21, 12, 21, 331, + 9, 21, 1, 21, 1, 21, 5, 21, 335, 8, 21, 10, 21, 12, 21, 338, 9, 21, 1, + 21, 3, 21, 341, 8, 21, 1, 21, 1, 21, 5, 21, 345, 8, 21, 10, 21, 12, 21, + 348, 9, 21, 5, 21, 350, 8, 21, 10, 21, 12, 21, 353, 9, 21, 1, 21, 1, 21, + 1, 22, 1, 22, 3, 22, 359, 8, 22, 1, 22, 3, 22, 362, 8, 22, 1, 22, 3, 22, + 365, 8, 22, 1, 23, 1, 23, 5, 23, 369, 8, 23, 10, 23, 12, 23, 372, 9, 23, + 1, 23, 3, 23, 375, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 5, 24, 382, + 8, 24, 10, 24, 12, 24, 385, 9, 24, 1, 24, 5, 24, 388, 8, 24, 10, 24, 12, + 24, 391, 9, 24, 1, 25, 1, 25, 3, 25, 395, 8, 25, 1, 25, 5, 25, 398, 8, + 25, 10, 25, 12, 25, 401, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 406, 8, 26, + 1, 27, 1, 27, 3, 27, 410, 8, 27, 1, 28, 1, 28, 5, 28, 414, 8, 28, 10, 28, + 12, 28, 417, 9, 28, 1, 28, 1, 28, 1, 28, 5, 28, 422, 8, 28, 10, 28, 12, + 28, 425, 9, 28, 1, 28, 5, 28, 428, 8, 28, 10, 28, 12, 28, 431, 9, 28, 1, + 28, 5, 28, 434, 8, 28, 10, 28, 12, 28, 437, 9, 28, 1, 28, 1, 28, 1, 29, + 1, 29, 3, 29, 443, 8, 29, 1, 30, 1, 30, 5, 30, 447, 8, 30, 10, 30, 12, + 30, 450, 9, 30, 1, 30, 1, 30, 5, 30, 454, 8, 30, 10, 30, 12, 30, 457, 9, + 30, 1, 30, 1, 30, 1, 30, 5, 30, 462, 8, 30, 10, 30, 12, 30, 465, 9, 30, + 1, 30, 5, 30, 468, 8, 30, 10, 30, 12, 30, 471, 9, 30, 1, 30, 5, 30, 474, + 8, 30, 10, 30, 12, 30, 477, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 5, 31, 483, + 8, 31, 10, 31, 12, 31, 486, 9, 31, 1, 31, 1, 31, 5, 31, 490, 8, 31, 10, + 31, 12, 31, 493, 9, 31, 1, 31, 3, 31, 496, 8, 31, 1, 31, 1, 31, 1, 32, + 1, 32, 4, 32, 502, 8, 32, 11, 32, 12, 32, 503, 1, 32, 5, 32, 507, 8, 32, + 10, 32, 12, 32, 510, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 515, 8, 33, 10, + 33, 12, 33, 518, 9, 33, 1, 34, 1, 34, 5, 34, 522, 8, 34, 10, 34, 12, 34, + 525, 9, 34, 1, 34, 1, 34, 5, 34, 529, 8, 34, 10, 34, 12, 34, 532, 9, 34, + 1, 34, 4, 34, 535, 8, 34, 11, 34, 12, 34, 536, 1, 35, 1, 35, 3, 35, 541, + 8, 35, 1, 36, 1, 36, 3, 36, 545, 8, 36, 1, 37, 3, 37, 548, 8, 37, 1, 37, + 1, 37, 1, 37, 1, 38, 1, 38, 5, 38, 555, 8, 38, 10, 38, 12, 38, 558, 9, + 38, 1, 38, 1, 38, 5, 38, 562, 8, 38, 10, 38, 12, 38, 565, 9, 38, 1, 38, + 3, 38, 568, 8, 38, 1, 38, 5, 38, 571, 8, 38, 10, 38, 12, 38, 574, 9, 38, + 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 580, 8, 39, 1, 39, 1, 39, 1, 39, 5, + 39, 585, 8, 39, 10, 39, 12, 39, 588, 9, 39, 1, 40, 1, 40, 1, 41, 1, 41, + 1, 42, 1, 42, 5, 42, 596, 8, 42, 10, 42, 12, 42, 599, 9, 42, 1, 42, 3, + 42, 602, 8, 42, 1, 42, 1, 42, 1, 42, 5, 42, 607, 8, 42, 10, 42, 12, 42, + 610, 9, 42, 3, 42, 612, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 618, + 8, 43, 1, 44, 5, 44, 621, 8, 44, 10, 44, 12, 44, 624, 9, 44, 1, 44, 1, + 44, 3, 44, 628, 8, 44, 1, 44, 5, 44, 631, 8, 44, 10, 44, 12, 44, 634, 9, + 44, 1, 45, 5, 45, 637, 8, 45, 10, 45, 12, 45, 640, 9, 45, 1, 45, 1, 45, + 1, 45, 1, 45, 3, 45, 646, 8, 45, 1, 45, 5, 45, 649, 8, 45, 10, 45, 12, + 45, 652, 9, 45, 1, 46, 1, 46, 3, 46, 656, 8, 46, 1, 47, 3, 47, 659, 8, + 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 5, 48, 666, 8, 48, 10, 48, 12, 48, + 669, 9, 48, 1, 48, 1, 48, 5, 48, 673, 8, 48, 10, 48, 12, 48, 676, 9, 48, + 1, 48, 3, 48, 679, 8, 48, 1, 48, 5, 48, 682, 8, 48, 10, 48, 12, 48, 685, + 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 694, 8, + 49, 1, 49, 5, 49, 697, 8, 49, 10, 49, 12, 49, 700, 9, 49, 1, 50, 1, 50, + 1, 50, 3, 50, 705, 8, 50, 1, 50, 1, 50, 3, 50, 709, 8, 50, 1, 50, 1, 50, + 1, 50, 1, 50, 1, 50, 3, 50, 716, 8, 50, 1, 51, 1, 51, 1, 51, 3, 51, 721, + 8, 51, 1, 51, 1, 51, 3, 51, 725, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 730, + 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, + 55, 5, 55, 742, 8, 55, 10, 55, 12, 55, 745, 9, 55, 1, 55, 3, 55, 748, 8, + 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 756, 8, 56, 10, 56, + 12, 56, 759, 9, 56, 1, 56, 1, 56, 5, 56, 763, 8, 56, 10, 56, 12, 56, 766, + 9, 56, 5, 56, 768, 8, 56, 10, 56, 12, 56, 771, 9, 56, 3, 56, 773, 8, 56, + 1, 57, 1, 57, 3, 57, 777, 8, 57, 1, 58, 1, 58, 5, 58, 781, 8, 58, 10, 58, + 12, 58, 784, 9, 58, 1, 58, 3, 58, 787, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, + 1, 59, 5, 59, 794, 8, 59, 10, 59, 12, 59, 797, 9, 59, 1, 59, 5, 59, 800, + 8, 59, 10, 59, 12, 59, 803, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 809, + 8, 60, 10, 60, 12, 60, 812, 9, 60, 1, 61, 1, 61, 3, 61, 816, 8, 61, 1, + 62, 3, 62, 819, 8, 62, 1, 62, 3, 62, 822, 8, 62, 1, 62, 1, 62, 1, 62, 1, + 63, 1, 63, 5, 63, 829, 8, 63, 10, 63, 12, 63, 832, 9, 63, 1, 63, 1, 63, + 5, 63, 836, 8, 63, 10, 63, 12, 63, 839, 9, 63, 1, 63, 1, 63, 5, 63, 843, + 8, 63, 10, 63, 12, 63, 846, 9, 63, 5, 63, 848, 8, 63, 10, 63, 12, 63, 851, + 9, 63, 1, 63, 3, 63, 854, 8, 63, 1, 63, 3, 63, 857, 8, 63, 1, 63, 5, 63, + 860, 8, 63, 10, 63, 12, 63, 863, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, + 64, 3, 64, 870, 8, 64, 1, 64, 5, 64, 873, 8, 64, 10, 64, 12, 64, 876, 9, + 64, 1, 65, 1, 65, 5, 65, 880, 8, 65, 10, 65, 12, 65, 883, 9, 65, 1, 65, + 1, 65, 5, 65, 887, 8, 65, 10, 65, 12, 65, 890, 9, 65, 5, 65, 892, 8, 65, + 10, 65, 12, 65, 895, 9, 65, 1, 65, 1, 65, 5, 65, 899, 8, 65, 10, 65, 12, + 65, 902, 9, 65, 3, 65, 904, 8, 65, 1, 65, 1, 65, 5, 65, 908, 8, 65, 10, + 65, 12, 65, 911, 9, 65, 5, 65, 913, 8, 65, 10, 65, 12, 65, 916, 9, 65, + 1, 65, 1, 65, 5, 65, 920, 8, 65, 10, 65, 12, 65, 923, 9, 65, 3, 65, 925, + 8, 65, 1, 65, 1, 65, 5, 65, 929, 8, 65, 10, 65, 12, 65, 932, 9, 65, 5, + 65, 934, 8, 65, 10, 65, 12, 65, 937, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, + 5, 66, 943, 8, 66, 10, 66, 12, 66, 946, 9, 66, 1, 66, 1, 66, 1, 67, 1, + 67, 5, 67, 952, 8, 67, 10, 67, 12, 67, 955, 9, 67, 1, 67, 1, 67, 3, 67, + 959, 8, 67, 1, 67, 3, 67, 962, 8, 67, 1, 67, 5, 67, 965, 8, 67, 10, 67, + 12, 67, 968, 9, 67, 5, 67, 970, 8, 67, 10, 67, 12, 67, 973, 9, 67, 1, 67, + 1, 67, 1, 68, 3, 68, 978, 8, 68, 1, 68, 3, 68, 981, 8, 68, 1, 68, 1, 68, + 1, 69, 1, 69, 5, 69, 987, 8, 69, 10, 69, 12, 69, 990, 9, 69, 1, 69, 3, + 69, 993, 8, 69, 1, 69, 3, 69, 996, 8, 69, 1, 69, 5, 69, 999, 8, 69, 10, + 69, 12, 69, 1002, 9, 69, 1, 69, 3, 69, 1005, 8, 69, 1, 70, 1, 70, 1, 71, + 1, 71, 1, 72, 1, 72, 5, 72, 1013, 8, 72, 10, 72, 12, 72, 1016, 9, 72, 1, + 72, 1, 72, 1, 73, 1, 73, 5, 73, 1022, 8, 73, 10, 73, 12, 73, 1025, 9, 73, + 1, 73, 3, 73, 1028, 8, 73, 1, 73, 5, 73, 1031, 8, 73, 10, 73, 12, 73, 1034, + 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 1040, 8, 74, 1, 74, 5, 74, 1043, + 8, 74, 10, 74, 12, 74, 1046, 9, 74, 1, 74, 1, 74, 3, 74, 1050, 8, 74, 5, + 74, 1052, 8, 74, 10, 74, 12, 74, 1055, 9, 74, 1, 75, 1, 75, 3, 75, 1059, + 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1067, 8, 77, 1, + 78, 1, 78, 5, 78, 1071, 8, 78, 10, 78, 12, 78, 1074, 9, 78, 1, 78, 1, 78, + 1, 78, 5, 78, 1079, 8, 78, 10, 78, 12, 78, 1082, 9, 78, 1, 78, 1, 78, 5, + 78, 1086, 8, 78, 10, 78, 12, 78, 1089, 9, 78, 5, 78, 1091, 8, 78, 10, 78, + 12, 78, 1094, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, + 80, 1, 80, 3, 80, 1105, 8, 80, 1, 80, 3, 80, 1108, 8, 80, 1, 81, 1, 81, + 1, 81, 3, 81, 1113, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 5, 83, 1119, 8, + 83, 10, 83, 12, 83, 1122, 9, 83, 1, 83, 1, 83, 5, 83, 1126, 8, 83, 10, + 83, 12, 83, 1129, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, + 1, 85, 1, 85, 3, 85, 1140, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, + 88, 3, 88, 1148, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 3, 89, 1154, 8, 89, + 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, + 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 1172, 8, 93, 10, 93, 12, + 93, 1175, 9, 93, 1, 94, 1, 94, 3, 94, 1179, 8, 94, 1, 95, 1, 95, 5, 95, + 1183, 8, 95, 10, 95, 12, 95, 1186, 9, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1191, + 8, 95, 10, 95, 12, 95, 1194, 9, 95, 1, 95, 1, 95, 5, 95, 1198, 8, 95, 10, + 95, 12, 95, 1201, 9, 95, 5, 95, 1203, 8, 95, 10, 95, 12, 95, 1206, 9, 95, + 1, 95, 1, 95, 1, 95, 0, 0, 96, 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, 172, 174, 176, 178, 180, 182, 184, + 186, 188, 190, 0, 2, 1, 0, 10, 11, 1, 0, 24, 25, 1298, 0, 197, 1, 0, 0, + 0, 2, 207, 1, 0, 0, 0, 4, 212, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 221, + 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 237, 1, 0, 0, 0, 14, 260, 1, 0, 0, + 0, 16, 269, 1, 0, 0, 0, 18, 274, 1, 0, 0, 0, 20, 280, 1, 0, 0, 0, 22, 282, + 1, 0, 0, 0, 24, 291, 1, 0, 0, 0, 26, 293, 1, 0, 0, 0, 28, 303, 1, 0, 0, + 0, 30, 305, 1, 0, 0, 0, 32, 307, 1, 0, 0, 0, 34, 311, 1, 0, 0, 0, 36, 313, + 1, 0, 0, 0, 38, 317, 1, 0, 0, 0, 40, 320, 1, 0, 0, 0, 42, 325, 1, 0, 0, + 0, 44, 356, 1, 0, 0, 0, 46, 366, 1, 0, 0, 0, 48, 378, 1, 0, 0, 0, 50, 392, + 1, 0, 0, 0, 52, 405, 1, 0, 0, 0, 54, 407, 1, 0, 0, 0, 56, 411, 1, 0, 0, + 0, 58, 442, 1, 0, 0, 0, 60, 444, 1, 0, 0, 0, 62, 480, 1, 0, 0, 0, 64, 499, + 1, 0, 0, 0, 66, 511, 1, 0, 0, 0, 68, 519, 1, 0, 0, 0, 70, 540, 1, 0, 0, + 0, 72, 544, 1, 0, 0, 0, 74, 547, 1, 0, 0, 0, 76, 552, 1, 0, 0, 0, 78, 577, + 1, 0, 0, 0, 80, 589, 1, 0, 0, 0, 82, 591, 1, 0, 0, 0, 84, 593, 1, 0, 0, + 0, 86, 617, 1, 0, 0, 0, 88, 622, 1, 0, 0, 0, 90, 638, 1, 0, 0, 0, 92, 655, + 1, 0, 0, 0, 94, 658, 1, 0, 0, 0, 96, 663, 1, 0, 0, 0, 98, 688, 1, 0, 0, + 0, 100, 715, 1, 0, 0, 0, 102, 729, 1, 0, 0, 0, 104, 731, 1, 0, 0, 0, 106, + 733, 1, 0, 0, 0, 108, 735, 1, 0, 0, 0, 110, 739, 1, 0, 0, 0, 112, 772, + 1, 0, 0, 0, 114, 776, 1, 0, 0, 0, 116, 778, 1, 0, 0, 0, 118, 790, 1, 0, + 0, 0, 120, 804, 1, 0, 0, 0, 122, 815, 1, 0, 0, 0, 124, 818, 1, 0, 0, 0, + 126, 826, 1, 0, 0, 0, 128, 866, 1, 0, 0, 0, 130, 877, 1, 0, 0, 0, 132, + 940, 1, 0, 0, 0, 134, 949, 1, 0, 0, 0, 136, 977, 1, 0, 0, 0, 138, 984, + 1, 0, 0, 0, 140, 1006, 1, 0, 0, 0, 142, 1008, 1, 0, 0, 0, 144, 1010, 1, + 0, 0, 0, 146, 1019, 1, 0, 0, 0, 148, 1039, 1, 0, 0, 0, 150, 1058, 1, 0, + 0, 0, 152, 1060, 1, 0, 0, 0, 154, 1066, 1, 0, 0, 0, 156, 1068, 1, 0, 0, + 0, 158, 1097, 1, 0, 0, 0, 160, 1104, 1, 0, 0, 0, 162, 1112, 1, 0, 0, 0, + 164, 1114, 1, 0, 0, 0, 166, 1116, 1, 0, 0, 0, 168, 1132, 1, 0, 0, 0, 170, + 1139, 1, 0, 0, 0, 172, 1141, 1, 0, 0, 0, 174, 1143, 1, 0, 0, 0, 176, 1147, + 1, 0, 0, 0, 178, 1153, 1, 0, 0, 0, 180, 1159, 1, 0, 0, 0, 182, 1161, 1, + 0, 0, 0, 184, 1163, 1, 0, 0, 0, 186, 1167, 1, 0, 0, 0, 188, 1178, 1, 0, + 0, 0, 190, 1180, 1, 0, 0, 0, 192, 196, 5, 41, 0, 0, 193, 196, 5, 34, 0, + 0, 194, 196, 3, 2, 1, 0, 195, 192, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 195, + 194, 1, 0, 0, 0, 196, 199, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 197, 198, + 1, 0, 0, 0, 198, 200, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 201, 5, 0, + 0, 1, 201, 1, 1, 0, 0, 0, 202, 208, 3, 12, 6, 0, 203, 208, 3, 38, 19, 0, + 204, 208, 3, 72, 36, 0, 205, 208, 3, 92, 46, 0, 206, 208, 3, 122, 61, 0, + 207, 202, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 204, 1, 0, 0, 0, 207, + 205, 1, 0, 0, 0, 207, 206, 1, 0, 0, 0, 208, 3, 1, 0, 0, 0, 209, 210, 3, + 6, 3, 0, 210, 211, 5, 41, 0, 0, 211, 213, 1, 0, 0, 0, 212, 209, 1, 0, 0, + 0, 213, 214, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, + 5, 1, 0, 0, 0, 216, 217, 5, 1, 0, 0, 217, 219, 5, 36, 0, 0, 218, 220, 3, + 8, 4, 0, 219, 218, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 7, 1, 0, 0, 0, + 221, 222, 5, 2, 0, 0, 222, 227, 3, 10, 5, 0, 223, 224, 5, 3, 0, 0, 224, + 226, 3, 10, 5, 0, 225, 223, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, + 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, + 0, 0, 230, 231, 5, 4, 0, 0, 231, 9, 1, 0, 0, 0, 232, 234, 5, 36, 0, 0, + 233, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 235, + 236, 1, 0, 0, 0, 236, 11, 1, 0, 0, 0, 237, 241, 5, 5, 0, 0, 238, 240, 5, + 41, 0, 0, 239, 238, 1, 0, 0, 0, 240, 243, 1, 0, 0, 0, 241, 239, 1, 0, 0, + 0, 241, 242, 1, 0, 0, 0, 242, 244, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, + 248, 5, 6, 0, 0, 245, 247, 5, 41, 0, 0, 246, 245, 1, 0, 0, 0, 247, 250, + 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 254, 1, 0, + 0, 0, 250, 248, 1, 0, 0, 0, 251, 253, 3, 14, 7, 0, 252, 251, 1, 0, 0, 0, + 253, 256, 1, 0, 0, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, + 257, 1, 0, 0, 0, 256, 254, 1, 0, 0, 0, 257, 258, 5, 7, 0, 0, 258, 13, 1, + 0, 0, 0, 259, 261, 3, 16, 8, 0, 260, 259, 1, 0, 0, 0, 260, 261, 1, 0, 0, + 0, 261, 262, 1, 0, 0, 0, 262, 266, 3, 18, 9, 0, 263, 265, 5, 41, 0, 0, + 264, 263, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, + 267, 1, 0, 0, 0, 267, 15, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 269, 270, 5, + 36, 0, 0, 270, 17, 1, 0, 0, 0, 271, 272, 3, 20, 10, 0, 272, 273, 5, 8, + 0, 0, 273, 275, 1, 0, 0, 0, 274, 271, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, + 275, 276, 1, 0, 0, 0, 276, 277, 3, 26, 13, 0, 277, 19, 1, 0, 0, 0, 278, + 281, 5, 9, 0, 0, 279, 281, 3, 22, 11, 0, 280, 278, 1, 0, 0, 0, 280, 279, + 1, 0, 0, 0, 281, 21, 1, 0, 0, 0, 282, 288, 5, 36, 0, 0, 283, 284, 3, 24, + 12, 0, 284, 285, 5, 36, 0, 0, 285, 287, 1, 0, 0, 0, 286, 283, 1, 0, 0, + 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, + 23, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 292, 7, 0, 0, 0, 292, 25, 1, + 0, 0, 0, 293, 298, 5, 36, 0, 0, 294, 295, 5, 10, 0, 0, 295, 297, 5, 36, + 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, + 298, 299, 1, 0, 0, 0, 299, 27, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 304, + 3, 32, 16, 0, 302, 304, 3, 30, 15, 0, 303, 301, 1, 0, 0, 0, 303, 302, 1, + 0, 0, 0, 304, 29, 1, 0, 0, 0, 305, 306, 5, 36, 0, 0, 306, 31, 1, 0, 0, + 0, 307, 308, 3, 34, 17, 0, 308, 309, 5, 11, 0, 0, 309, 310, 3, 36, 18, + 0, 310, 33, 1, 0, 0, 0, 311, 312, 5, 36, 0, 0, 312, 35, 1, 0, 0, 0, 313, + 314, 5, 36, 0, 0, 314, 37, 1, 0, 0, 0, 315, 318, 3, 40, 20, 0, 316, 318, + 3, 42, 21, 0, 317, 315, 1, 0, 0, 0, 317, 316, 1, 0, 0, 0, 318, 39, 1, 0, + 0, 0, 319, 321, 5, 35, 0, 0, 320, 319, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, + 321, 322, 1, 0, 0, 0, 322, 323, 5, 12, 0, 0, 323, 324, 3, 44, 22, 0, 324, + 41, 1, 0, 0, 0, 325, 329, 5, 12, 0, 0, 326, 328, 5, 41, 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, 336, 5, 6, 0, 0, + 333, 335, 5, 41, 0, 0, 334, 333, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, + 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 351, 1, 0, 0, 0, 338, 336, + 1, 0, 0, 0, 339, 341, 5, 35, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, + 0, 0, 341, 342, 1, 0, 0, 0, 342, 346, 3, 44, 22, 0, 343, 345, 5, 41, 0, + 0, 344, 343, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, + 347, 1, 0, 0, 0, 347, 350, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 340, + 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, + 0, 0, 352, 354, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 5, 7, 0, 0, + 355, 43, 1, 0, 0, 0, 356, 358, 5, 36, 0, 0, 357, 359, 3, 46, 23, 0, 358, + 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 361, 1, 0, 0, 0, 360, 362, + 3, 52, 26, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 364, 1, + 0, 0, 0, 363, 365, 5, 34, 0, 0, 364, 363, 1, 0, 0, 0, 364, 365, 1, 0, 0, + 0, 365, 45, 1, 0, 0, 0, 366, 370, 5, 13, 0, 0, 367, 369, 5, 41, 0, 0, 368, + 367, 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, + 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 373, 375, 3, 48, + 24, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, + 376, 377, 5, 14, 0, 0, 377, 47, 1, 0, 0, 0, 378, 389, 3, 50, 25, 0, 379, + 383, 5, 3, 0, 0, 380, 382, 5, 41, 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, 388, 3, 50, 25, 0, 387, 379, 1, 0, 0, + 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, + 49, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 394, 5, 36, 0, 0, 393, 395, + 3, 52, 26, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 399, 1, + 0, 0, 0, 396, 398, 5, 41, 0, 0, 397, 396, 1, 0, 0, 0, 398, 401, 1, 0, 0, + 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 51, 1, 0, 0, 0, 401, + 399, 1, 0, 0, 0, 402, 406, 3, 54, 27, 0, 403, 406, 3, 58, 29, 0, 404, 406, + 3, 68, 34, 0, 405, 402, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 404, 1, + 0, 0, 0, 406, 53, 1, 0, 0, 0, 407, 409, 3, 28, 14, 0, 408, 410, 3, 56, + 28, 0, 409, 408, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 55, 1, 0, 0, 0, + 411, 415, 5, 13, 0, 0, 412, 414, 5, 41, 0, 0, 413, 412, 1, 0, 0, 0, 414, + 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, + 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 429, 3, 52, 26, 0, 419, 423, 5, + 3, 0, 0, 420, 422, 5, 41, 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, 428, 3, 52, 26, 0, 427, 419, 1, 0, 0, 0, 428, 431, + 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 435, 1, 0, + 0, 0, 431, 429, 1, 0, 0, 0, 432, 434, 5, 41, 0, 0, 433, 432, 1, 0, 0, 0, + 434, 437, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, + 438, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 438, 439, 5, 14, 0, 0, 439, 57, + 1, 0, 0, 0, 440, 443, 3, 60, 30, 0, 441, 443, 3, 62, 31, 0, 442, 440, 1, + 0, 0, 0, 442, 441, 1, 0, 0, 0, 443, 59, 1, 0, 0, 0, 444, 448, 5, 15, 0, + 0, 445, 447, 5, 41, 0, 0, 446, 445, 1, 0, 0, 0, 447, 450, 1, 0, 0, 0, 448, + 446, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 451, 1, 0, 0, 0, 450, 448, + 1, 0, 0, 0, 451, 455, 5, 6, 0, 0, 452, 454, 5, 41, 0, 0, 453, 452, 1, 0, + 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, + 456, 458, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 469, 5, 36, 0, 0, 459, + 463, 5, 3, 0, 0, 460, 462, 5, 41, 0, 0, 461, 460, 1, 0, 0, 0, 462, 465, + 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 466, 1, 0, + 0, 0, 465, 463, 1, 0, 0, 0, 466, 468, 5, 36, 0, 0, 467, 459, 1, 0, 0, 0, + 468, 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, + 475, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 474, 5, 41, 0, 0, 473, 472, + 1, 0, 0, 0, 474, 477, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 475, 476, 1, 0, + 0, 0, 476, 478, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 478, 479, 5, 7, 0, 0, + 479, 61, 1, 0, 0, 0, 480, 484, 5, 16, 0, 0, 481, 483, 5, 41, 0, 0, 482, + 481, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, + 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 491, 5, 6, + 0, 0, 488, 490, 5, 41, 0, 0, 489, 488, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, + 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, + 491, 1, 0, 0, 0, 494, 496, 3, 64, 32, 0, 495, 494, 1, 0, 0, 0, 495, 496, + 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 5, 7, 0, 0, 498, 63, 1, 0, + 0, 0, 499, 508, 3, 66, 33, 0, 500, 502, 5, 41, 0, 0, 501, 500, 1, 0, 0, + 0, 502, 503, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, + 505, 1, 0, 0, 0, 505, 507, 3, 66, 33, 0, 506, 501, 1, 0, 0, 0, 507, 510, + 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 65, 1, 0, + 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 36, 0, 0, 512, 516, 3, 52, 26, + 0, 513, 515, 5, 41, 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, 67, 1, 0, 0, 0, 518, 516, 1, + 0, 0, 0, 519, 534, 3, 70, 35, 0, 520, 522, 5, 41, 0, 0, 521, 520, 1, 0, + 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, + 524, 526, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 530, 5, 17, 0, 0, 527, + 529, 5, 41, 0, 0, 528, 527, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 528, + 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 530, 1, 0, + 0, 0, 533, 535, 3, 70, 35, 0, 534, 523, 1, 0, 0, 0, 535, 536, 1, 0, 0, + 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 69, 1, 0, 0, 0, 538, + 541, 3, 54, 27, 0, 539, 541, 3, 58, 29, 0, 540, 538, 1, 0, 0, 0, 540, 539, + 1, 0, 0, 0, 541, 71, 1, 0, 0, 0, 542, 545, 3, 74, 37, 0, 543, 545, 3, 76, + 38, 0, 544, 542, 1, 0, 0, 0, 544, 543, 1, 0, 0, 0, 545, 73, 1, 0, 0, 0, + 546, 548, 5, 35, 0, 0, 547, 546, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, + 549, 1, 0, 0, 0, 549, 550, 5, 18, 0, 0, 550, 551, 3, 78, 39, 0, 551, 75, + 1, 0, 0, 0, 552, 556, 5, 18, 0, 0, 553, 555, 5, 41, 0, 0, 554, 553, 1, + 0, 0, 0, 555, 558, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, + 0, 557, 559, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 563, 5, 6, 0, 0, 560, + 562, 5, 41, 0, 0, 561, 560, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 561, + 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 572, 1, 0, 0, 0, 565, 563, 1, 0, + 0, 0, 566, 568, 5, 35, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, + 568, 569, 1, 0, 0, 0, 569, 571, 3, 78, 39, 0, 570, 567, 1, 0, 0, 0, 571, + 574, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, + 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 576, 5, 7, 0, 0, 576, 77, 1, 0, + 0, 0, 577, 579, 5, 36, 0, 0, 578, 580, 3, 46, 23, 0, 579, 578, 1, 0, 0, + 0, 579, 580, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 3, 80, 40, 0, + 582, 586, 3, 82, 41, 0, 583, 585, 5, 41, 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, 79, 1, + 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 590, 3, 84, 42, 0, 590, 81, 1, 0, 0, + 0, 591, 592, 3, 84, 42, 0, 592, 83, 1, 0, 0, 0, 593, 611, 5, 2, 0, 0, 594, + 596, 5, 41, 0, 0, 595, 594, 1, 0, 0, 0, 596, 599, 1, 0, 0, 0, 597, 595, + 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 612, 1, 0, 0, 0, 599, 597, 1, 0, + 0, 0, 600, 602, 3, 86, 43, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, + 0, 602, 612, 1, 0, 0, 0, 603, 608, 3, 86, 43, 0, 604, 605, 5, 3, 0, 0, + 605, 607, 3, 86, 43, 0, 606, 604, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, + 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, + 1, 0, 0, 0, 611, 597, 1, 0, 0, 0, 611, 601, 1, 0, 0, 0, 611, 603, 1, 0, + 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 5, 4, 0, 0, 614, 85, 1, 0, 0, 0, + 615, 618, 3, 88, 44, 0, 616, 618, 3, 90, 45, 0, 617, 615, 1, 0, 0, 0, 617, + 616, 1, 0, 0, 0, 618, 87, 1, 0, 0, 0, 619, 621, 5, 41, 0, 0, 620, 619, + 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, + 0, 0, 623, 625, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 627, 5, 36, 0, 0, + 626, 628, 3, 52, 26, 0, 627, 626, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, + 632, 1, 0, 0, 0, 629, 631, 5, 41, 0, 0, 630, 629, 1, 0, 0, 0, 631, 634, + 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 89, 1, 0, + 0, 0, 634, 632, 1, 0, 0, 0, 635, 637, 5, 41, 0, 0, 636, 635, 1, 0, 0, 0, + 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, + 641, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 19, 0, 0, 642, 643, + 5, 36, 0, 0, 643, 645, 5, 20, 0, 0, 644, 646, 3, 52, 26, 0, 645, 644, 1, + 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 650, 1, 0, 0, 0, 647, 649, 5, 41, 0, + 0, 648, 647, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, + 651, 1, 0, 0, 0, 651, 91, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 656, 3, + 94, 47, 0, 654, 656, 3, 96, 48, 0, 655, 653, 1, 0, 0, 0, 655, 654, 1, 0, + 0, 0, 656, 93, 1, 0, 0, 0, 657, 659, 5, 35, 0, 0, 658, 657, 1, 0, 0, 0, + 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 5, 21, 0, 0, 661, + 662, 3, 98, 49, 0, 662, 95, 1, 0, 0, 0, 663, 667, 5, 21, 0, 0, 664, 666, + 5, 41, 0, 0, 665, 664, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, + 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, + 670, 674, 5, 6, 0, 0, 671, 673, 5, 41, 0, 0, 672, 671, 1, 0, 0, 0, 673, + 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 683, + 1, 0, 0, 0, 676, 674, 1, 0, 0, 0, 677, 679, 5, 35, 0, 0, 678, 677, 1, 0, + 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 3, 98, 49, + 0, 681, 678, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, + 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, + 5, 7, 0, 0, 687, 97, 1, 0, 0, 0, 688, 689, 5, 36, 0, 0, 689, 690, 3, 52, + 26, 0, 690, 693, 5, 22, 0, 0, 691, 694, 3, 28, 14, 0, 692, 694, 3, 100, + 50, 0, 693, 691, 1, 0, 0, 0, 693, 692, 1, 0, 0, 0, 694, 698, 1, 0, 0, 0, + 695, 697, 5, 41, 0, 0, 696, 695, 1, 0, 0, 0, 697, 700, 1, 0, 0, 0, 698, + 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 99, 1, 0, 0, 0, 700, 698, 1, + 0, 0, 0, 701, 716, 3, 104, 52, 0, 702, 716, 3, 106, 53, 0, 703, 705, 5, + 38, 0, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 1, 0, 0, + 0, 706, 716, 5, 37, 0, 0, 707, 709, 5, 38, 0, 0, 708, 707, 1, 0, 0, 0, + 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 716, 5, 39, 0, 0, 711, + 716, 5, 40, 0, 0, 712, 716, 3, 108, 54, 0, 713, 716, 3, 110, 55, 0, 714, + 716, 3, 116, 58, 0, 715, 701, 1, 0, 0, 0, 715, 702, 1, 0, 0, 0, 715, 704, + 1, 0, 0, 0, 715, 708, 1, 0, 0, 0, 715, 711, 1, 0, 0, 0, 715, 712, 1, 0, + 0, 0, 715, 713, 1, 0, 0, 0, 715, 714, 1, 0, 0, 0, 716, 101, 1, 0, 0, 0, + 717, 730, 3, 104, 52, 0, 718, 730, 3, 106, 53, 0, 719, 721, 5, 38, 0, 0, + 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, + 730, 5, 37, 0, 0, 723, 725, 5, 38, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, + 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 730, 5, 39, 0, 0, 727, 730, 5, 40, + 0, 0, 728, 730, 3, 108, 54, 0, 729, 717, 1, 0, 0, 0, 729, 718, 1, 0, 0, + 0, 729, 720, 1, 0, 0, 0, 729, 724, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, + 728, 1, 0, 0, 0, 730, 103, 1, 0, 0, 0, 731, 732, 5, 23, 0, 0, 732, 105, + 1, 0, 0, 0, 733, 734, 7, 1, 0, 0, 734, 107, 1, 0, 0, 0, 735, 736, 3, 28, + 14, 0, 736, 737, 5, 26, 0, 0, 737, 738, 5, 36, 0, 0, 738, 109, 1, 0, 0, + 0, 739, 743, 5, 19, 0, 0, 740, 742, 5, 41, 0, 0, 741, 740, 1, 0, 0, 0, + 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, + 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 746, 748, 3, 112, 56, 0, 747, 746, + 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 20, + 0, 0, 750, 111, 1, 0, 0, 0, 751, 773, 3, 114, 57, 0, 752, 769, 3, 114, + 57, 0, 753, 757, 5, 3, 0, 0, 754, 756, 5, 41, 0, 0, 755, 754, 1, 0, 0, + 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, + 760, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 764, 3, 114, 57, 0, 761, 763, + 5, 41, 0, 0, 762, 761, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, + 0, 0, 764, 765, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, + 767, 753, 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, 751, + 1, 0, 0, 0, 772, 752, 1, 0, 0, 0, 773, 113, 1, 0, 0, 0, 774, 777, 3, 28, + 14, 0, 775, 777, 3, 100, 50, 0, 776, 774, 1, 0, 0, 0, 776, 775, 1, 0, 0, + 0, 777, 115, 1, 0, 0, 0, 778, 782, 5, 6, 0, 0, 779, 781, 5, 41, 0, 0, 780, + 779, 1, 0, 0, 0, 781, 784, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 783, + 1, 0, 0, 0, 783, 786, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 785, 787, 3, 118, + 59, 0, 786, 785, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, + 788, 789, 5, 7, 0, 0, 789, 117, 1, 0, 0, 0, 790, 801, 3, 120, 60, 0, 791, + 795, 5, 3, 0, 0, 792, 794, 5, 41, 0, 0, 793, 792, 1, 0, 0, 0, 794, 797, + 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 798, 1, 0, + 0, 0, 797, 795, 1, 0, 0, 0, 798, 800, 3, 120, 60, 0, 799, 791, 1, 0, 0, + 0, 800, 803, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, + 119, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 804, 805, 5, 36, 0, 0, 805, 806, + 5, 8, 0, 0, 806, 810, 3, 114, 57, 0, 807, 809, 5, 41, 0, 0, 808, 807, 1, + 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, + 0, 811, 121, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 816, 3, 124, 62, 0, + 814, 816, 3, 126, 63, 0, 815, 813, 1, 0, 0, 0, 815, 814, 1, 0, 0, 0, 816, + 123, 1, 0, 0, 0, 817, 819, 3, 4, 2, 0, 818, 817, 1, 0, 0, 0, 818, 819, + 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 822, 5, 35, 0, 0, 821, 820, 1, 0, + 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 5, 27, 0, 0, + 824, 825, 3, 128, 64, 0, 825, 125, 1, 0, 0, 0, 826, 830, 5, 27, 0, 0, 827, + 829, 5, 41, 0, 0, 828, 827, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, + 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, + 0, 0, 833, 837, 5, 6, 0, 0, 834, 836, 5, 41, 0, 0, 835, 834, 1, 0, 0, 0, + 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, + 861, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 844, 5, 34, 0, 0, 841, 843, + 5, 41, 0, 0, 842, 841, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, + 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, + 847, 840, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, + 850, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 852, 854, + 3, 4, 2, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, + 0, 0, 855, 857, 5, 35, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, + 857, 858, 1, 0, 0, 0, 858, 860, 3, 128, 64, 0, 859, 849, 1, 0, 0, 0, 860, + 863, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 864, + 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 864, 865, 5, 7, 0, 0, 865, 127, 1, 0, + 0, 0, 866, 869, 3, 78, 39, 0, 867, 870, 3, 130, 65, 0, 868, 870, 3, 146, + 73, 0, 869, 867, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, + 870, 874, 1, 0, 0, 0, 871, 873, 5, 41, 0, 0, 872, 871, 1, 0, 0, 0, 873, + 876, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 129, + 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 877, 881, 5, 6, 0, 0, 878, 880, 5, 41, + 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, 893, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, + 888, 5, 34, 0, 0, 885, 887, 5, 41, 0, 0, 886, 885, 1, 0, 0, 0, 887, 890, + 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 892, 1, 0, + 0, 0, 890, 888, 1, 0, 0, 0, 891, 884, 1, 0, 0, 0, 892, 895, 1, 0, 0, 0, + 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 903, 1, 0, 0, 0, 895, + 893, 1, 0, 0, 0, 896, 900, 3, 132, 66, 0, 897, 899, 5, 41, 0, 0, 898, 897, + 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 900, 901, 1, 0, + 0, 0, 901, 904, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 896, 1, 0, 0, 0, + 903, 904, 1, 0, 0, 0, 904, 914, 1, 0, 0, 0, 905, 909, 5, 34, 0, 0, 906, + 908, 5, 41, 0, 0, 907, 906, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, + 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 913, 1, 0, 0, 0, 911, 909, 1, 0, + 0, 0, 912, 905, 1, 0, 0, 0, 913, 916, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, + 914, 915, 1, 0, 0, 0, 915, 924, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, + 921, 3, 144, 72, 0, 918, 920, 5, 41, 0, 0, 919, 918, 1, 0, 0, 0, 920, 923, + 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 1, 0, + 0, 0, 923, 921, 1, 0, 0, 0, 924, 917, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, + 925, 935, 1, 0, 0, 0, 926, 930, 5, 34, 0, 0, 927, 929, 5, 41, 0, 0, 928, + 927, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, + 1, 0, 0, 0, 931, 934, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 926, 1, 0, + 0, 0, 934, 937, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, + 936, 938, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 938, 939, 5, 7, 0, 0, 939, + 131, 1, 0, 0, 0, 940, 944, 5, 28, 0, 0, 941, 943, 5, 41, 0, 0, 942, 941, + 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, + 0, 0, 945, 947, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 3, 134, 67, + 0, 948, 133, 1, 0, 0, 0, 949, 953, 5, 6, 0, 0, 950, 952, 5, 41, 0, 0, 951, + 950, 1, 0, 0, 0, 952, 955, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 954, + 1, 0, 0, 0, 954, 971, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 956, 959, 3, 136, + 68, 0, 957, 959, 5, 34, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, + 0, 959, 961, 1, 0, 0, 0, 960, 962, 5, 3, 0, 0, 961, 960, 1, 0, 0, 0, 961, + 962, 1, 0, 0, 0, 962, 966, 1, 0, 0, 0, 963, 965, 5, 41, 0, 0, 964, 963, + 1, 0, 0, 0, 965, 968, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, + 0, 0, 967, 970, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 969, 958, 1, 0, 0, 0, + 970, 973, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, + 974, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 974, 975, 5, 7, 0, 0, 975, 135, + 1, 0, 0, 0, 976, 978, 3, 4, 2, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, + 0, 0, 978, 980, 1, 0, 0, 0, 979, 981, 5, 36, 0, 0, 980, 979, 1, 0, 0, 0, + 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 138, 69, 0, 983, + 137, 1, 0, 0, 0, 984, 988, 3, 28, 14, 0, 985, 987, 5, 41, 0, 0, 986, 985, + 1, 0, 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, + 0, 0, 989, 992, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 991, 993, 3, 56, 28, + 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 1, 0, 0, 0, 994, + 996, 3, 140, 70, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 1000, + 1, 0, 0, 0, 997, 999, 5, 41, 0, 0, 998, 997, 1, 0, 0, 0, 999, 1002, 1, + 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1004, 1, + 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 3, 142, 71, 0, 1004, 1003, + 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 139, 1, 0, 0, 0, 1006, 1007, + 5, 29, 0, 0, 1007, 141, 1, 0, 0, 0, 1008, 1009, 3, 134, 67, 0, 1009, 143, + 1, 0, 0, 0, 1010, 1014, 5, 30, 0, 0, 1011, 1013, 5, 41, 0, 0, 1012, 1011, + 1, 0, 0, 0, 1013, 1016, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, + 1, 0, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1018, + 3, 146, 73, 0, 1018, 145, 1, 0, 0, 0, 1019, 1023, 5, 6, 0, 0, 1020, 1022, + 5, 41, 0, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1025, 1, 0, 0, 0, 1023, 1021, + 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, + 1, 0, 0, 0, 1026, 1028, 3, 148, 74, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, + 1, 0, 0, 0, 1028, 1032, 1, 0, 0, 0, 1029, 1031, 5, 41, 0, 0, 1030, 1029, + 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, + 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 1036, + 5, 7, 0, 0, 1036, 147, 1, 0, 0, 0, 1037, 1040, 3, 150, 75, 0, 1038, 1040, + 5, 34, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1053, + 1, 0, 0, 0, 1041, 1043, 5, 41, 0, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1046, + 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1049, + 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1050, 3, 150, 75, 0, 1048, 1050, + 5, 34, 0, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1052, + 1, 0, 0, 0, 1051, 1044, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, + 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 149, 1, 0, 0, 0, 1055, 1053, + 1, 0, 0, 0, 1056, 1059, 3, 152, 76, 0, 1057, 1059, 3, 158, 79, 0, 1058, + 1056, 1, 0, 0, 0, 1058, 1057, 1, 0, 0, 0, 1059, 151, 1, 0, 0, 0, 1060, + 1061, 3, 154, 77, 0, 1061, 1062, 5, 31, 0, 0, 1062, 1063, 3, 162, 81, 0, + 1063, 153, 1, 0, 0, 0, 1064, 1067, 3, 160, 80, 0, 1065, 1067, 3, 156, 78, + 0, 1066, 1064, 1, 0, 0, 0, 1066, 1065, 1, 0, 0, 0, 1067, 155, 1, 0, 0, + 0, 1068, 1072, 5, 19, 0, 0, 1069, 1071, 5, 41, 0, 0, 1070, 1069, 1, 0, + 0, 0, 1071, 1074, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, + 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1092, 3, 160, + 80, 0, 1076, 1080, 5, 3, 0, 0, 1077, 1079, 5, 41, 0, 0, 1078, 1077, 1, + 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, + 0, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1087, 3, + 160, 80, 0, 1084, 1086, 5, 41, 0, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, + 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1091, + 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1076, 1, 0, 0, 0, 1091, 1094, + 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1095, + 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1096, 5, 20, 0, 0, 1096, 157, + 1, 0, 0, 0, 1097, 1098, 3, 176, 88, 0, 1098, 1099, 5, 32, 0, 0, 1099, 1100, + 3, 176, 88, 0, 1100, 159, 1, 0, 0, 0, 1101, 1105, 3, 170, 85, 0, 1102, + 1105, 3, 168, 84, 0, 1103, 1105, 3, 102, 51, 0, 1104, 1101, 1, 0, 0, 0, + 1104, 1102, 1, 0, 0, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1107, 1, 0, 0, 0, + 1106, 1108, 3, 186, 93, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, + 0, 1108, 161, 1, 0, 0, 0, 1109, 1113, 3, 164, 82, 0, 1110, 1113, 3, 188, + 94, 0, 1111, 1113, 3, 190, 95, 0, 1112, 1109, 1, 0, 0, 0, 1112, 1110, 1, + 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 163, 1, 0, 0, 0, 1114, 1115, 3, + 152, 76, 0, 1115, 165, 1, 0, 0, 0, 1116, 1120, 5, 2, 0, 0, 1117, 1119, + 5, 41, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 1122, 1, 0, 0, 0, 1120, 1118, + 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1120, + 1, 0, 0, 0, 1123, 1127, 3, 150, 75, 0, 1124, 1126, 5, 41, 0, 0, 1125, 1124, + 1, 0, 0, 0, 1126, 1129, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1127, 1128, + 1, 0, 0, 0, 1128, 1130, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1131, + 5, 4, 0, 0, 1131, 167, 1, 0, 0, 0, 1132, 1133, 5, 33, 0, 0, 1133, 1134, + 3, 28, 14, 0, 1134, 169, 1, 0, 0, 0, 1135, 1140, 3, 176, 88, 0, 1136, 1140, + 3, 178, 89, 0, 1137, 1140, 3, 172, 86, 0, 1138, 1140, 3, 174, 87, 0, 1139, + 1135, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1139, + 1138, 1, 0, 0, 0, 1140, 171, 1, 0, 0, 0, 1141, 1142, 3, 180, 90, 0, 1142, + 173, 1, 0, 0, 0, 1143, 1144, 3, 180, 90, 0, 1144, 1145, 3, 184, 92, 0, + 1145, 175, 1, 0, 0, 0, 1146, 1148, 3, 180, 90, 0, 1147, 1146, 1, 0, 0, + 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 5, 8, 0, + 0, 1150, 1151, 3, 182, 91, 0, 1151, 177, 1, 0, 0, 0, 1152, 1154, 3, 180, + 90, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, + 0, 0, 1155, 1156, 5, 8, 0, 0, 1156, 1157, 3, 182, 91, 0, 1157, 1158, 3, + 184, 92, 0, 1158, 179, 1, 0, 0, 0, 1159, 1160, 5, 36, 0, 0, 1160, 181, + 1, 0, 0, 0, 1161, 1162, 5, 36, 0, 0, 1162, 183, 1, 0, 0, 0, 1163, 1164, + 5, 19, 0, 0, 1164, 1165, 5, 37, 0, 0, 1165, 1166, 5, 20, 0, 0, 1166, 185, + 1, 0, 0, 0, 1167, 1168, 5, 11, 0, 0, 1168, 1173, 5, 36, 0, 0, 1169, 1170, + 5, 11, 0, 0, 1170, 1172, 5, 36, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, + 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 187, + 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1179, 3, 170, 85, 0, 1177, 1179, + 3, 166, 83, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 189, + 1, 0, 0, 0, 1180, 1184, 5, 19, 0, 0, 1181, 1183, 5, 41, 0, 0, 1182, 1181, + 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, + 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1204, + 3, 188, 94, 0, 1188, 1192, 5, 3, 0, 0, 1189, 1191, 5, 41, 0, 0, 1190, 1189, + 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, + 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1199, + 3, 188, 94, 0, 1196, 1198, 5, 41, 0, 0, 1197, 1196, 1, 0, 0, 0, 1198, 1201, + 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1203, + 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1202, 1188, 1, 0, 0, 0, 1203, 1206, + 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1207, + 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1208, 5, 20, 0, 0, 1208, 191, + 1, 0, 0, 0, 164, 195, 197, 207, 214, 219, 227, 235, 241, 248, 254, 260, + 266, 274, 280, 288, 298, 303, 317, 320, 329, 336, 340, 346, 351, 358, 361, + 364, 370, 374, 383, 389, 394, 399, 405, 409, 415, 423, 429, 435, 442, 448, + 455, 463, 469, 475, 484, 491, 495, 503, 508, 516, 523, 530, 536, 540, 544, + 547, 556, 563, 567, 572, 579, 586, 597, 601, 608, 611, 617, 622, 627, 632, + 638, 645, 650, 655, 658, 667, 674, 678, 683, 693, 698, 704, 708, 715, 720, + 724, 729, 743, 747, 757, 764, 769, 772, 776, 782, 786, 795, 801, 810, 815, + 818, 821, 830, 837, 844, 849, 853, 856, 861, 869, 874, 881, 888, 893, 900, + 903, 909, 914, 921, 924, 930, 935, 944, 953, 958, 961, 966, 971, 977, 980, + 988, 992, 995, 1000, 1004, 1014, 1023, 1027, 1032, 1039, 1044, 1049, 1053, + 1058, 1066, 1072, 1080, 1087, 1092, 1104, 1107, 1112, 1120, 1127, 1139, + 1147, 1153, 1173, 1178, 1184, 1192, 1199, 1204, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -697,15 +700,16 @@ const ( 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 + nevaParserT__32 = 33 + nevaParserCOMMENT = 34 + nevaParserPUB_KW = 35 + nevaParserIDENTIFIER = 36 + nevaParserINT = 37 + nevaParserMINUS = 38 + nevaParserFLOAT = 39 + nevaParserSTRING = 40 + nevaParserNEWLINE = 41 + nevaParserWS = 42 ) // nevaParser rules. @@ -780,31 +784,32 @@ const ( nevaParserRULE_compNodesDefBody = 67 nevaParserRULE_compNodeDef = 68 nevaParserRULE_nodeInst = 69 - nevaParserRULE_nodeDIArgs = 70 - nevaParserRULE_compNetDef = 71 - nevaParserRULE_compNetBody = 72 - nevaParserRULE_connDefList = 73 - nevaParserRULE_connDef = 74 - nevaParserRULE_normConnDef = 75 - nevaParserRULE_senderSide = 76 - nevaParserRULE_multipleSenderSide = 77 - nevaParserRULE_arrBypassConnDef = 78 - nevaParserRULE_singleSenderSide = 79 - nevaParserRULE_receiverSide = 80 - nevaParserRULE_chainedNormConn = 81 - nevaParserRULE_deferredConn = 82 - nevaParserRULE_senderConstRef = 83 - nevaParserRULE_portAddr = 84 - nevaParserRULE_lonelySinglePortAddr = 85 - nevaParserRULE_lonelyArrPortAddr = 86 - nevaParserRULE_singlePortAddr = 87 - nevaParserRULE_arrPortAddr = 88 - nevaParserRULE_portAddrNode = 89 - nevaParserRULE_portAddrPort = 90 - nevaParserRULE_portAddrIdx = 91 - nevaParserRULE_structSelectors = 92 - nevaParserRULE_singleReceiverSide = 93 - nevaParserRULE_multipleReceiverSide = 94 + nevaParserRULE_errGuard = 70 + nevaParserRULE_nodeDIArgs = 71 + nevaParserRULE_compNetDef = 72 + nevaParserRULE_compNetBody = 73 + nevaParserRULE_connDefList = 74 + nevaParserRULE_connDef = 75 + nevaParserRULE_normConnDef = 76 + nevaParserRULE_senderSide = 77 + nevaParserRULE_multipleSenderSide = 78 + nevaParserRULE_arrBypassConnDef = 79 + nevaParserRULE_singleSenderSide = 80 + nevaParserRULE_receiverSide = 81 + nevaParserRULE_chainedNormConn = 82 + nevaParserRULE_deferredConn = 83 + nevaParserRULE_senderConstRef = 84 + nevaParserRULE_portAddr = 85 + nevaParserRULE_lonelySinglePortAddr = 86 + nevaParserRULE_lonelyArrPortAddr = 87 + nevaParserRULE_singlePortAddr = 88 + nevaParserRULE_arrPortAddr = 89 + nevaParserRULE_portAddrNode = 90 + nevaParserRULE_portAddrPort = 91 + nevaParserRULE_portAddrIdx = 92 + nevaParserRULE_structSelectors = 93 + nevaParserRULE_singleReceiverSide = 94 + nevaParserRULE_multipleReceiverSide = 95 ) // IProgContext is an interface to support dynamic dispatch. @@ -946,15 +951,15 @@ func (p *nevaParser) Prog() (localctx IProgContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(195) + p.SetState(197) 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(193) + for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2250699444258) != 0 { + p.SetState(195) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -963,7 +968,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { switch p.GetTokenStream().LA(1) { case nevaParserNEWLINE: { - p.SetState(190) + p.SetState(192) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -973,7 +978,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { case nevaParserCOMMENT: { - p.SetState(191) + p.SetState(193) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -983,7 +988,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { case nevaParserT__0, nevaParserT__4, nevaParserT__11, nevaParserT__17, nevaParserT__20, nevaParserT__26, nevaParserPUB_KW: { - p.SetState(192) + p.SetState(194) p.Stmt() } @@ -992,7 +997,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { goto errorExit } - p.SetState(197) + p.SetState(199) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1000,7 +1005,7 @@ func (p *nevaParser) Prog() (localctx IProgContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(198) + p.SetState(200) p.Match(nevaParserEOF) if p.HasError() { // Recognition error - abort rule @@ -1174,7 +1179,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(205) + p.SetState(207) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1184,35 +1189,35 @@ func (p *nevaParser) Stmt() (localctx IStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(200) + p.SetState(202) p.ImportStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(201) + p.SetState(203) p.TypeStmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(202) + p.SetState(204) p.InterfaceStmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(203) + p.SetState(205) p.ConstStmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(204) + p.SetState(206) p.CompStmt() } @@ -1357,7 +1362,7 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(210) + p.SetState(212) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1366,11 +1371,11 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) for ok := true; ok; ok = _la == nevaParserT__0 { { - p.SetState(207) + p.SetState(209) p.CompilerDirective() } { - p.SetState(208) + p.SetState(210) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -1378,7 +1383,7 @@ func (p *nevaParser) CompilerDirectives() (localctx ICompilerDirectivesContext) } } - p.SetState(212) + p.SetState(214) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1493,7 +1498,7 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(214) + p.SetState(216) p.Match(nevaParserT__0) if p.HasError() { // Recognition error - abort rule @@ -1501,14 +1506,14 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { } } { - p.SetState(215) + p.SetState(217) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(217) + p.SetState(219) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1517,7 +1522,7 @@ func (p *nevaParser) CompilerDirective() (localctx ICompilerDirectiveContext) { if _la == nevaParserT__1 { { - p.SetState(216) + p.SetState(218) p.CompilerDirectivesArgs() } @@ -1651,7 +1656,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC p.EnterOuterAlt(localctx, 1) { - p.SetState(219) + p.SetState(221) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule @@ -1659,10 +1664,10 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC } } { - p.SetState(220) + p.SetState(222) p.Compiler_directive_arg() } - p.SetState(225) + p.SetState(227) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1671,7 +1676,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC for _la == nevaParserT__2 { { - p.SetState(221) + p.SetState(223) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -1679,11 +1684,11 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC } } { - p.SetState(222) + p.SetState(224) p.Compiler_directive_arg() } - p.SetState(227) + p.SetState(229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1691,7 +1696,7 @@ func (p *nevaParser) CompilerDirectivesArgs() (localctx ICompilerDirectivesArgsC _la = p.GetTokenStream().LA(1) } { - p.SetState(228) + p.SetState(230) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -1793,7 +1798,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(231) + p.SetState(233) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1802,7 +1807,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC for ok := true; ok; ok = _la == nevaParserIDENTIFIER { { - p.SetState(230) + p.SetState(232) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -1810,7 +1815,7 @@ func (p *nevaParser) Compiler_directive_arg() (localctx ICompiler_directive_argC } } - p.SetState(233) + p.SetState(235) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1956,14 +1961,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(235) + p.SetState(237) p.Match(nevaParserT__4) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(239) + p.SetState(241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1972,7 +1977,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(236) + p.SetState(238) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -1980,7 +1985,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { } } - p.SetState(241) + p.SetState(243) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -1988,14 +1993,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(242) + p.SetState(244) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(246) + p.SetState(248) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2004,7 +2009,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(243) + p.SetState(245) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -2012,14 +2017,14 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { } } - p.SetState(248) + p.SetState(250) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(252) + p.SetState(254) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2028,11 +2033,11 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { for _la == nevaParserT__8 || _la == nevaParserIDENTIFIER { { - p.SetState(249) + p.SetState(251) p.ImportDef() } - p.SetState(254) + p.SetState(256) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2040,7 +2045,7 @@ func (p *nevaParser) ImportStmt() (localctx IImportStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(255) + p.SetState(257) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -2176,12 +2181,12 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(258) + p.SetState(260) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 10, p.GetParserRuleContext()) == 1 { { - p.SetState(257) + p.SetState(259) p.ImportAlias() } @@ -2189,10 +2194,10 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { goto errorExit } { - p.SetState(260) + p.SetState(262) p.ImportPath() } - p.SetState(264) + p.SetState(266) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2201,7 +2206,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(261) + p.SetState(263) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -2209,7 +2214,7 @@ func (p *nevaParser) ImportDef() (localctx IImportDefContext) { } } - p.SetState(266) + p.SetState(268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2305,7 +2310,7 @@ func (p *nevaParser) ImportAlias() (localctx IImportAliasContext) { p.EnterRule(localctx, 16, nevaParserRULE_importAlias) p.EnterOuterAlt(localctx, 1) { - p.SetState(267) + p.SetState(269) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2429,16 +2434,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(272) + p.SetState(274) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 12, p.GetParserRuleContext()) == 1 { { - p.SetState(269) + p.SetState(271) p.ImportPathMod() } { - p.SetState(270) + p.SetState(272) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -2450,7 +2455,7 @@ func (p *nevaParser) ImportPath() (localctx IImportPathContext) { goto errorExit } { - p.SetState(274) + p.SetState(276) p.ImportPathPkg() } @@ -2552,7 +2557,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(278) + p.SetState(280) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2562,7 +2567,7 @@ func (p *nevaParser) ImportPathMod() (localctx IImportPathModContext) { case nevaParserT__8: p.EnterOuterAlt(localctx, 1) { - p.SetState(276) + p.SetState(278) p.Match(nevaParserT__8) if p.HasError() { // Recognition error - abort rule @@ -2573,7 +2578,7 @@ func (p *nevaParser) ImportPathMod() (localctx IImportPathModContext) { case nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(277) + p.SetState(279) p.ImportMod() } @@ -2720,14 +2725,14 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(280) + p.SetState(282) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(286) + p.SetState(288) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2736,11 +2741,11 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { for _la == nevaParserT__9 || _la == nevaParserT__10 { { - p.SetState(281) + p.SetState(283) p.ImportModeDelim() } { - p.SetState(282) + p.SetState(284) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2748,7 +2753,7 @@ func (p *nevaParser) ImportMod() (localctx IImportModContext) { } } - p.SetState(288) + p.SetState(290) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2837,7 +2842,7 @@ func (p *nevaParser) ImportModeDelim() (localctx IImportModeDelimContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(289) + p.SetState(291) _la = p.GetTokenStream().LA(1) if !(_la == nevaParserT__9 || _la == nevaParserT__10) { @@ -2943,14 +2948,14 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(291) + p.SetState(293) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(296) + p.SetState(298) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -2959,7 +2964,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { for _la == nevaParserT__9 { { - p.SetState(292) + p.SetState(294) p.Match(nevaParserT__9) if p.HasError() { // Recognition error - abort rule @@ -2967,7 +2972,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { } } { - p.SetState(293) + p.SetState(295) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -2975,7 +2980,7 @@ func (p *nevaParser) ImportPathPkg() (localctx IImportPathPkgContext) { } } - p.SetState(298) + p.SetState(300) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3098,7 +3103,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(301) + p.SetState(303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3108,14 +3113,14 @@ func (p *nevaParser) EntityRef() (localctx IEntityRefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(299) + p.SetState(301) p.ImportedEntityRef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(300) + p.SetState(302) p.LocalEntityRef() } @@ -3211,7 +3216,7 @@ func (p *nevaParser) LocalEntityRef() (localctx ILocalEntityRefContext) { p.EnterRule(localctx, 30, nevaParserRULE_localEntityRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(303) + p.SetState(305) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3336,11 +3341,11 @@ func (p *nevaParser) ImportedEntityRef() (localctx IImportedEntityRefContext) { p.EnterRule(localctx, 32, nevaParserRULE_importedEntityRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(305) + p.SetState(307) p.PkgRef() } { - p.SetState(306) + p.SetState(308) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -3348,7 +3353,7 @@ func (p *nevaParser) ImportedEntityRef() (localctx IImportedEntityRefContext) { } } { - p.SetState(307) + p.SetState(309) p.EntityName() } @@ -3440,7 +3445,7 @@ func (p *nevaParser) PkgRef() (localctx IPkgRefContext) { p.EnterRule(localctx, 34, nevaParserRULE_pkgRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(309) + p.SetState(311) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3536,7 +3541,7 @@ func (p *nevaParser) EntityName() (localctx IEntityNameContext) { p.EnterRule(localctx, 36, nevaParserRULE_entityName) p.EnterOuterAlt(localctx, 1) { - p.SetState(311) + p.SetState(313) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -3659,7 +3664,7 @@ func (s *TypeStmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { localctx = NewTypeStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 38, nevaParserRULE_typeStmt) - p.SetState(315) + p.SetState(317) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3669,14 +3674,14 @@ func (p *nevaParser) TypeStmt() (localctx ITypeStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(313) + p.SetState(315) p.SingleTypeStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(314) + p.SetState(316) p.GroupTypeStmt() } @@ -3790,7 +3795,7 @@ func (p *nevaParser) SingleTypeStmt() (localctx ISingleTypeStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(318) + p.SetState(320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3799,7 +3804,7 @@ func (p *nevaParser) SingleTypeStmt() (localctx ISingleTypeStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(317) + p.SetState(319) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -3809,7 +3814,7 @@ func (p *nevaParser) SingleTypeStmt() (localctx ISingleTypeStmtContext) { } { - p.SetState(320) + p.SetState(322) p.Match(nevaParserT__11) if p.HasError() { // Recognition error - abort rule @@ -3817,7 +3822,7 @@ func (p *nevaParser) SingleTypeStmt() (localctx ISingleTypeStmtContext) { } } { - p.SetState(321) + p.SetState(323) p.TypeDef() } @@ -3969,14 +3974,14 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(323) + p.SetState(325) p.Match(nevaParserT__11) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(327) + p.SetState(329) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -3985,7 +3990,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(324) + p.SetState(326) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -3993,7 +3998,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { } } - p.SetState(329) + p.SetState(331) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4001,14 +4006,14 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(330) + p.SetState(332) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(334) + p.SetState(336) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4017,7 +4022,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(331) + p.SetState(333) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4025,14 +4030,14 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { } } - p.SetState(336) + p.SetState(338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(349) + p.SetState(351) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4040,7 +4045,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { _la = p.GetTokenStream().LA(1) for _la == nevaParserPUB_KW || _la == nevaParserIDENTIFIER { - p.SetState(338) + p.SetState(340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4049,7 +4054,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(337) + p.SetState(339) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -4059,10 +4064,10 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { } { - p.SetState(340) + p.SetState(342) p.TypeDef() } - p.SetState(344) + p.SetState(346) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4071,7 +4076,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(341) + p.SetState(343) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4079,7 +4084,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { } } - p.SetState(346) + p.SetState(348) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4087,7 +4092,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(351) + p.SetState(353) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4095,7 +4100,7 @@ func (p *nevaParser) GroupTypeStmt() (localctx IGroupTypeStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(352) + p.SetState(354) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -4232,14 +4237,14 @@ func (p *nevaParser) TypeDef() (localctx ITypeDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(354) + p.SetState(356) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(356) + p.SetState(358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4248,29 +4253,29 @@ func (p *nevaParser) TypeDef() (localctx ITypeDefContext) { if _la == nevaParserT__12 { { - p.SetState(355) + p.SetState(357) p.TypeParams() } } - p.SetState(359) + p.SetState(361) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 25, p.GetParserRuleContext()) == 1 { { - p.SetState(358) + p.SetState(360) p.TypeExpr() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(362) + p.SetState(364) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 26, p.GetParserRuleContext()) == 1 { { - p.SetState(361) + p.SetState(363) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -4394,14 +4399,14 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(364) + p.SetState(366) p.Match(nevaParserT__12) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(368) + p.SetState(370) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4410,7 +4415,7 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { for _la == nevaParserNEWLINE { { - p.SetState(365) + p.SetState(367) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4418,14 +4423,14 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { } } - p.SetState(370) + p.SetState(372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(372) + p.SetState(374) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4434,13 +4439,13 @@ func (p *nevaParser) TypeParams() (localctx ITypeParamsContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(371) + p.SetState(373) p.TypeParamList() } } { - p.SetState(374) + p.SetState(376) p.Match(nevaParserT__13) if p.HasError() { // Recognition error - abort rule @@ -4586,10 +4591,10 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(376) + p.SetState(378) p.TypeParam() } - p.SetState(387) + p.SetState(389) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4598,14 +4603,14 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { for _la == nevaParserT__2 { { - p.SetState(377) + p.SetState(379) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(381) + p.SetState(383) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4614,7 +4619,7 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { for _la == nevaParserNEWLINE { { - p.SetState(378) + p.SetState(380) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4622,7 +4627,7 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { } } - p.SetState(383) + p.SetState(385) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4630,11 +4635,11 @@ func (p *nevaParser) TypeParamList() (localctx ITypeParamListContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(384) + p.SetState(386) p.TypeParam() } - p.SetState(389) + p.SetState(391) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4759,28 +4764,28 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(390) + p.SetState(392) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(392) + p.SetState(394) 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)&68719575040) != 0 { { - p.SetState(391) + p.SetState(393) p.TypeExpr() } } - p.SetState(397) + p.SetState(399) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4789,7 +4794,7 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { for _la == nevaParserNEWLINE { { - p.SetState(394) + p.SetState(396) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -4797,7 +4802,7 @@ func (p *nevaParser) TypeParam() (localctx ITypeParamContext) { } } - p.SetState(399) + p.SetState(401) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4937,7 +4942,7 @@ func (s *TypeExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) TypeExpr() (localctx ITypeExprContext) { localctx = NewTypeExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 52, nevaParserRULE_typeExpr) - p.SetState(403) + p.SetState(405) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -4947,21 +4952,21 @@ func (p *nevaParser) TypeExpr() (localctx ITypeExprContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(400) + p.SetState(402) p.TypeInstExpr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(401) + p.SetState(403) p.TypeLitExpr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(402) + p.SetState(404) p.UnionTypeExpr() } @@ -5088,10 +5093,10 @@ func (p *nevaParser) TypeInstExpr() (localctx ITypeInstExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(405) + p.SetState(407) p.EntityRef() } - p.SetState(407) + p.SetState(409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5100,7 +5105,7 @@ func (p *nevaParser) TypeInstExpr() (localctx ITypeInstExprContext) { if _la == nevaParserT__12 { { - p.SetState(406) + p.SetState(408) p.TypeArgs() } @@ -5244,14 +5249,14 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(409) + p.SetState(411) p.Match(nevaParserT__12) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(413) + p.SetState(415) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5260,7 +5265,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(410) + p.SetState(412) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5268,7 +5273,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(415) + p.SetState(417) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5276,10 +5281,10 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(416) + p.SetState(418) p.TypeExpr() } - p.SetState(427) + p.SetState(429) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5288,14 +5293,14 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserT__2 { { - p.SetState(417) + p.SetState(419) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(421) + p.SetState(423) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5304,7 +5309,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(418) + p.SetState(420) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5312,7 +5317,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(423) + p.SetState(425) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5320,18 +5325,18 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(424) + p.SetState(426) p.TypeExpr() } - p.SetState(429) + p.SetState(431) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(433) + p.SetState(435) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5340,7 +5345,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { for _la == nevaParserNEWLINE { { - p.SetState(430) + p.SetState(432) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5348,7 +5353,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { } } - p.SetState(435) + p.SetState(437) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5356,7 +5361,7 @@ func (p *nevaParser) TypeArgs() (localctx ITypeArgsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(436) + p.SetState(438) p.Match(nevaParserT__13) if p.HasError() { // Recognition error - abort rule @@ -5479,7 +5484,7 @@ func (s *TypeLitExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) TypeLitExpr() (localctx ITypeLitExprContext) { localctx = NewTypeLitExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 58, nevaParserRULE_typeLitExpr) - p.SetState(440) + p.SetState(442) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5489,14 +5494,14 @@ func (p *nevaParser) TypeLitExpr() (localctx ITypeLitExprContext) { case nevaParserT__14: p.EnterOuterAlt(localctx, 1) { - p.SetState(438) + p.SetState(440) p.EnumTypeExpr() } case nevaParserT__15: p.EnterOuterAlt(localctx, 2) { - p.SetState(439) + p.SetState(441) p.StructTypeExpr() } @@ -5610,14 +5615,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(442) + p.SetState(444) p.Match(nevaParserT__14) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(446) + p.SetState(448) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5626,7 +5631,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(443) + p.SetState(445) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5634,7 +5639,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(448) + p.SetState(450) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5642,14 +5647,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(449) + p.SetState(451) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(453) + p.SetState(455) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5658,7 +5663,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(450) + p.SetState(452) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5666,7 +5671,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(455) + p.SetState(457) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5674,14 +5679,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(456) + p.SetState(458) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(467) + p.SetState(469) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5690,14 +5695,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserT__2 { { - p.SetState(457) + p.SetState(459) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(461) + p.SetState(463) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5706,7 +5711,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(458) + p.SetState(460) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5714,7 +5719,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(463) + p.SetState(465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5722,7 +5727,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(464) + p.SetState(466) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -5730,14 +5735,14 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(469) + p.SetState(471) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(473) + p.SetState(475) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5746,7 +5751,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(470) + p.SetState(472) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5754,7 +5759,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { } } - p.SetState(475) + p.SetState(477) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5762,7 +5767,7 @@ func (p *nevaParser) EnumTypeExpr() (localctx IEnumTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(476) + p.SetState(478) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -5882,14 +5887,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(478) + p.SetState(480) p.Match(nevaParserT__15) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(482) + p.SetState(484) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5898,7 +5903,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(479) + p.SetState(481) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5906,7 +5911,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { } } - p.SetState(484) + p.SetState(486) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5914,14 +5919,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(485) + p.SetState(487) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(489) + p.SetState(491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5930,7 +5935,7 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(486) + p.SetState(488) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -5938,14 +5943,14 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { } } - p.SetState(491) + p.SetState(493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(493) + p.SetState(495) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -5954,13 +5959,13 @@ func (p *nevaParser) StructTypeExpr() (localctx IStructTypeExprContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(492) + p.SetState(494) p.StructFields() } } { - p.SetState(495) + p.SetState(497) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -6106,10 +6111,10 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(497) + p.SetState(499) p.StructField() } - p.SetState(506) + p.SetState(508) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6117,7 +6122,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { _la = p.GetTokenStream().LA(1) for _la == nevaParserNEWLINE { - p.SetState(499) + p.SetState(501) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6126,7 +6131,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { for ok := true; ok; ok = _la == nevaParserNEWLINE { { - p.SetState(498) + p.SetState(500) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6134,7 +6139,7 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { } } - p.SetState(501) + p.SetState(503) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6142,11 +6147,11 @@ func (p *nevaParser) StructFields() (localctx IStructFieldsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(503) + p.SetState(505) p.StructField() } - p.SetState(508) + p.SetState(510) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6271,7 +6276,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(509) + p.SetState(511) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -6279,10 +6284,10 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { } } { - p.SetState(510) + p.SetState(512) p.TypeExpr() } - p.SetState(514) + p.SetState(516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6294,7 +6299,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(511) + p.SetState(513) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6303,7 +6308,7 @@ func (p *nevaParser) StructField() (localctx IStructFieldContext) { } } - p.SetState(516) + p.SetState(518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6454,10 +6459,10 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(517) + p.SetState(519) p.NonUnionTypeExpr() } - p.SetState(532) + p.SetState(534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6466,7 +6471,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for ok := true; ok; ok = _alt != 2 && _alt != antlr.ATNInvalidAltNumber { switch _alt { case 1: - p.SetState(521) + p.SetState(523) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6475,7 +6480,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(518) + p.SetState(520) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6483,7 +6488,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { } } - p.SetState(523) + p.SetState(525) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6491,14 +6496,14 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(524) + p.SetState(526) p.Match(nevaParserT__16) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(528) + p.SetState(530) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6507,7 +6512,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { for _la == nevaParserNEWLINE { { - p.SetState(525) + p.SetState(527) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -6515,7 +6520,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { } } - p.SetState(530) + p.SetState(532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6523,7 +6528,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(531) + p.SetState(533) p.NonUnionTypeExpr() } @@ -6532,7 +6537,7 @@ func (p *nevaParser) UnionTypeExpr() (localctx IUnionTypeExprContext) { goto errorExit } - p.SetState(534) + p.SetState(536) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 53, p.GetParserRuleContext()) if p.HasError() { @@ -6655,7 +6660,7 @@ func (s *NonUnionTypeExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NonUnionTypeExpr() (localctx INonUnionTypeExprContext) { localctx = NewNonUnionTypeExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 70, nevaParserRULE_nonUnionTypeExpr) - p.SetState(538) + p.SetState(540) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6665,14 +6670,14 @@ func (p *nevaParser) NonUnionTypeExpr() (localctx INonUnionTypeExprContext) { case nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(536) + p.SetState(538) p.TypeInstExpr() } case nevaParserT__14, nevaParserT__15: p.EnterOuterAlt(localctx, 2) { - p.SetState(537) + p.SetState(539) p.TypeLitExpr() } @@ -6796,7 +6801,7 @@ func (s *InterfaceStmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { localctx = NewInterfaceStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 72, nevaParserRULE_interfaceStmt) - p.SetState(542) + p.SetState(544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6806,14 +6811,14 @@ func (p *nevaParser) InterfaceStmt() (localctx IInterfaceStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(540) + p.SetState(542) p.SingleInterfaceStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(541) + p.SetState(543) p.GroupInterfaceStmt() } @@ -6927,7 +6932,7 @@ func (p *nevaParser) SingleInterfaceStmt() (localctx ISingleInterfaceStmtContext var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(545) + p.SetState(547) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -6936,7 +6941,7 @@ func (p *nevaParser) SingleInterfaceStmt() (localctx ISingleInterfaceStmtContext if _la == nevaParserPUB_KW { { - p.SetState(544) + p.SetState(546) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -6946,7 +6951,7 @@ func (p *nevaParser) SingleInterfaceStmt() (localctx ISingleInterfaceStmtContext } { - p.SetState(547) + p.SetState(549) p.Match(nevaParserT__17) if p.HasError() { // Recognition error - abort rule @@ -6954,7 +6959,7 @@ func (p *nevaParser) SingleInterfaceStmt() (localctx ISingleInterfaceStmtContext } } { - p.SetState(548) + p.SetState(550) p.InterfaceDef() } @@ -7106,14 +7111,14 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(550) + p.SetState(552) p.Match(nevaParserT__17) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(554) + p.SetState(556) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7122,7 +7127,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) for _la == nevaParserNEWLINE { { - p.SetState(551) + p.SetState(553) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7130,7 +7135,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) } } - p.SetState(556) + p.SetState(558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7138,14 +7143,14 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(557) + p.SetState(559) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(561) + p.SetState(563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7154,7 +7159,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) for _la == nevaParserNEWLINE { { - p.SetState(558) + p.SetState(560) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7162,14 +7167,14 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) } } - p.SetState(563) + p.SetState(565) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(570) + p.SetState(572) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7177,7 +7182,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) _la = p.GetTokenStream().LA(1) for _la == nevaParserPUB_KW || _la == nevaParserIDENTIFIER { - p.SetState(565) + p.SetState(567) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7186,7 +7191,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) if _la == nevaParserPUB_KW { { - p.SetState(564) + p.SetState(566) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -7196,11 +7201,11 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) } { - p.SetState(567) + p.SetState(569) p.InterfaceDef() } - p.SetState(572) + p.SetState(574) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7208,7 +7213,7 @@ func (p *nevaParser) GroupInterfaceStmt() (localctx IGroupInterfaceStmtContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(573) + p.SetState(575) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -7369,14 +7374,14 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(575) + p.SetState(577) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(577) + p.SetState(579) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7385,20 +7390,20 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { if _la == nevaParserT__12 { { - p.SetState(576) + p.SetState(578) p.TypeParams() } } { - p.SetState(579) + p.SetState(581) p.InPortsDef() } { - p.SetState(580) + p.SetState(582) p.OutPortsDef() } - p.SetState(584) + p.SetState(586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7410,7 +7415,7 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(581) + p.SetState(583) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7419,7 +7424,7 @@ func (p *nevaParser) InterfaceDef() (localctx IInterfaceDefContext) { } } - p.SetState(586) + p.SetState(588) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7530,7 +7535,7 @@ func (p *nevaParser) InPortsDef() (localctx IInPortsDefContext) { p.EnterRule(localctx, 80, nevaParserRULE_inPortsDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(587) + p.SetState(589) p.PortsDef() } @@ -7634,7 +7639,7 @@ func (p *nevaParser) OutPortsDef() (localctx IOutPortsDefContext) { p.EnterRule(localctx, 82, nevaParserRULE_outPortsDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(589) + p.SetState(591) p.PortsDef() } @@ -7776,14 +7781,14 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(591) + p.SetState(593) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(609) + p.SetState(611) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7791,7 +7796,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 66, p.GetParserRuleContext()) { case 1: - p.SetState(595) + p.SetState(597) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7800,7 +7805,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(592) + p.SetState(594) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -7808,7 +7813,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } } - p.SetState(597) + p.SetState(599) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7817,16 +7822,16 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } case 2: - p.SetState(599) + p.SetState(601) 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)&2267743256576) != 0 { { - p.SetState(598) + p.SetState(600) p.PortDef() } @@ -7834,10 +7839,10 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { case 3: { - p.SetState(601) + p.SetState(603) p.PortDef() } - p.SetState(606) + p.SetState(608) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7846,7 +7851,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { for _la == nevaParserT__2 { { - p.SetState(602) + p.SetState(604) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -7854,11 +7859,11 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { } } { - p.SetState(603) + p.SetState(605) p.PortDef() } - p.SetState(608) + p.SetState(610) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -7870,7 +7875,7 @@ func (p *nevaParser) PortsDef() (localctx IPortsDefContext) { goto errorExit } { - p.SetState(611) + p.SetState(613) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -7993,7 +7998,7 @@ func (s *PortDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortDef() (localctx IPortDefContext) { localctx = NewPortDefContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 86, nevaParserRULE_portDef) - p.SetState(615) + p.SetState(617) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8003,14 +8008,14 @@ func (p *nevaParser) PortDef() (localctx IPortDefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(613) + p.SetState(615) p.SinglePortDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(614) + p.SetState(616) p.ArrayPortDef() } @@ -8134,7 +8139,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(620) + p.SetState(622) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8143,7 +8148,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(617) + p.SetState(619) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8151,7 +8156,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { } } - p.SetState(622) + p.SetState(624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8159,28 +8164,28 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(623) + p.SetState(625) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(625) + p.SetState(627) 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)&68719575040) != 0 { { - p.SetState(624) + p.SetState(626) p.TypeExpr() } } - p.SetState(630) + p.SetState(632) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8189,7 +8194,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(627) + p.SetState(629) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8197,7 +8202,7 @@ func (p *nevaParser) SinglePortDef() (localctx ISinglePortDefContext) { } } - p.SetState(632) + p.SetState(634) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8321,7 +8326,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(636) + p.SetState(638) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8330,7 +8335,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(633) + p.SetState(635) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8338,7 +8343,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } - p.SetState(638) + p.SetState(640) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8346,7 +8351,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(639) + p.SetState(641) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule @@ -8354,7 +8359,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } { - p.SetState(640) + p.SetState(642) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -8362,28 +8367,28 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } { - p.SetState(641) + p.SetState(643) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(643) + p.SetState(645) 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)&68719575040) != 0 { { - p.SetState(642) + p.SetState(644) p.TypeExpr() } } - p.SetState(648) + p.SetState(650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8392,7 +8397,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(645) + p.SetState(647) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8400,7 +8405,7 @@ func (p *nevaParser) ArrayPortDef() (localctx IArrayPortDefContext) { } } - p.SetState(650) + p.SetState(652) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8523,7 +8528,7 @@ func (s *ConstStmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { localctx = NewConstStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 92, nevaParserRULE_constStmt) - p.SetState(653) + p.SetState(655) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8533,14 +8538,14 @@ func (p *nevaParser) ConstStmt() (localctx IConstStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(651) + p.SetState(653) p.SingleConstStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(652) + p.SetState(654) p.GroupConstStmt() } @@ -8654,7 +8659,7 @@ func (p *nevaParser) SingleConstStmt() (localctx ISingleConstStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(656) + p.SetState(658) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8663,7 +8668,7 @@ func (p *nevaParser) SingleConstStmt() (localctx ISingleConstStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(655) + p.SetState(657) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -8673,7 +8678,7 @@ func (p *nevaParser) SingleConstStmt() (localctx ISingleConstStmtContext) { } { - p.SetState(658) + p.SetState(660) p.Match(nevaParserT__20) if p.HasError() { // Recognition error - abort rule @@ -8681,7 +8686,7 @@ func (p *nevaParser) SingleConstStmt() (localctx ISingleConstStmtContext) { } } { - p.SetState(659) + p.SetState(661) p.ConstDef() } @@ -8833,14 +8838,14 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(661) + p.SetState(663) p.Match(nevaParserT__20) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(665) + p.SetState(667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8849,7 +8854,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(662) + p.SetState(664) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8857,7 +8862,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { } } - p.SetState(667) + p.SetState(669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8865,14 +8870,14 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(668) + p.SetState(670) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(672) + p.SetState(674) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8881,7 +8886,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(669) + p.SetState(671) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -8889,14 +8894,14 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { } } - p.SetState(674) + p.SetState(676) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(681) + p.SetState(683) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8904,7 +8909,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { _la = p.GetTokenStream().LA(1) for _la == nevaParserPUB_KW || _la == nevaParserIDENTIFIER { - p.SetState(676) + p.SetState(678) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8913,7 +8918,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(675) + p.SetState(677) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -8923,11 +8928,11 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { } { - p.SetState(678) + p.SetState(680) p.ConstDef() } - p.SetState(683) + p.SetState(685) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8935,7 +8940,7 @@ func (p *nevaParser) GroupConstStmt() (localctx IGroupConstStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(684) + p.SetState(686) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -9094,7 +9099,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(686) + p.SetState(688) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -9102,18 +9107,18 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { } } { - p.SetState(687) + p.SetState(689) p.TypeExpr() } { - p.SetState(688) + p.SetState(690) p.Match(nevaParserT__21) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(691) + p.SetState(693) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9122,20 +9127,20 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 80, p.GetParserRuleContext()) { case 1: { - p.SetState(689) + p.SetState(691) p.EntityRef() } case 2: { - p.SetState(690) + p.SetState(692) p.ConstLit() } case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(696) + p.SetState(698) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9147,7 +9152,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(693) + p.SetState(695) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -9156,7 +9161,7 @@ func (p *nevaParser) ConstDef() (localctx IConstDefContext) { } } - p.SetState(698) + p.SetState(700) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9355,7 +9360,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { p.EnterRule(localctx, 100, nevaParserRULE_constLit) var _la int - p.SetState(713) + p.SetState(715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9365,20 +9370,20 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(699) + p.SetState(701) p.Nil_() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(700) + p.SetState(702) p.Bool_() } case 3: p.EnterOuterAlt(localctx, 3) - p.SetState(702) + p.SetState(704) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9387,7 +9392,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(701) + p.SetState(703) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -9397,7 +9402,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } { - p.SetState(704) + p.SetState(706) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -9407,7 +9412,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { case 4: p.EnterOuterAlt(localctx, 4) - p.SetState(706) + p.SetState(708) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9416,7 +9421,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(705) + p.SetState(707) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -9426,7 +9431,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { } { - p.SetState(708) + p.SetState(710) p.Match(nevaParserFLOAT) if p.HasError() { // Recognition error - abort rule @@ -9437,7 +9442,7 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(709) + p.SetState(711) p.Match(nevaParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -9448,21 +9453,21 @@ func (p *nevaParser) ConstLit() (localctx IConstLitContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(710) + p.SetState(712) p.EnumLit() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(711) + p.SetState(713) p.ListLit() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(712) + p.SetState(714) p.StructLit() } @@ -9624,7 +9629,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { p.EnterRule(localctx, 102, nevaParserRULE_primitiveConstLit) var _la int - p.SetState(727) + p.SetState(729) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9634,20 +9639,20 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(715) + p.SetState(717) p.Nil_() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(716) + p.SetState(718) p.Bool_() } case 3: p.EnterOuterAlt(localctx, 3) - p.SetState(718) + p.SetState(720) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9656,7 +9661,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(717) + p.SetState(719) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -9666,7 +9671,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } { - p.SetState(720) + p.SetState(722) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -9676,7 +9681,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { case 4: p.EnterOuterAlt(localctx, 4) - p.SetState(722) + p.SetState(724) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9685,7 +9690,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { if _la == nevaParserMINUS { { - p.SetState(721) + p.SetState(723) p.Match(nevaParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -9695,7 +9700,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { } { - p.SetState(724) + p.SetState(726) p.Match(nevaParserFLOAT) if p.HasError() { // Recognition error - abort rule @@ -9706,7 +9711,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(725) + p.SetState(727) p.Match(nevaParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -9717,7 +9722,7 @@ func (p *nevaParser) PrimitiveConstLit() (localctx IPrimitiveConstLitContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(726) + p.SetState(728) p.EnumLit() } @@ -9804,7 +9809,7 @@ func (p *nevaParser) Nil_() (localctx INilContext) { p.EnterRule(localctx, 104, nevaParserRULE_nil) p.EnterOuterAlt(localctx, 1) { - p.SetState(729) + p.SetState(731) p.Match(nevaParserT__22) if p.HasError() { // Recognition error - abort rule @@ -9893,7 +9898,7 @@ func (p *nevaParser) Bool_() (localctx IBoolContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(731) + p.SetState(733) _la = p.GetTokenStream().LA(1) if !(_la == nevaParserT__23 || _la == nevaParserT__24) { @@ -10009,11 +10014,11 @@ func (p *nevaParser) EnumLit() (localctx IEnumLitContext) { p.EnterRule(localctx, 108, nevaParserRULE_enumLit) p.EnterOuterAlt(localctx, 1) { - p.SetState(733) + p.SetState(735) p.EntityRef() } { - p.SetState(734) + p.SetState(736) p.Match(nevaParserT__25) if p.HasError() { // Recognition error - abort rule @@ -10021,7 +10026,7 @@ func (p *nevaParser) EnumLit() (localctx IEnumLitContext) { } } { - p.SetState(735) + p.SetState(737) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -10141,14 +10146,14 @@ func (p *nevaParser) ListLit() (localctx IListLitContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(737) + p.SetState(739) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(741) + p.SetState(743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10157,7 +10162,7 @@ func (p *nevaParser) ListLit() (localctx IListLitContext) { for _la == nevaParserNEWLINE { { - p.SetState(738) + p.SetState(740) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10165,29 +10170,29 @@ func (p *nevaParser) ListLit() (localctx IListLitContext) { } } - p.SetState(743) + p.SetState(745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(745) + p.SetState(747) 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)&2130363023424) != 0 { { - p.SetState(744) + p.SetState(746) p.ListItems() } } { - p.SetState(747) + p.SetState(749) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -10331,7 +10336,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { p.EnterRule(localctx, 112, nevaParserRULE_listItems) var _la int - p.SetState(770) + p.SetState(772) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10341,17 +10346,17 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(749) + p.SetState(751) p.CompositeItem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(750) + p.SetState(752) p.CompositeItem() } - p.SetState(767) + p.SetState(769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10360,14 +10365,14 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserT__2 { { - p.SetState(751) + p.SetState(753) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(755) + p.SetState(757) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10376,7 +10381,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserNEWLINE { { - p.SetState(752) + p.SetState(754) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10384,7 +10389,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { } } - p.SetState(757) + p.SetState(759) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10392,10 +10397,10 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(758) + p.SetState(760) p.CompositeItem() } - p.SetState(762) + p.SetState(764) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10404,7 +10409,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { for _la == nevaParserNEWLINE { { - p.SetState(759) + p.SetState(761) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10412,7 +10417,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { } } - p.SetState(764) + p.SetState(766) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10420,7 +10425,7 @@ func (p *nevaParser) ListItems() (localctx IListItemsContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(769) + p.SetState(771) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10547,7 +10552,7 @@ func (s *CompositeItemContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompositeItem() (localctx ICompositeItemContext) { localctx = NewCompositeItemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 114, nevaParserRULE_compositeItem) - p.SetState(774) + p.SetState(776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10557,14 +10562,14 @@ func (p *nevaParser) CompositeItem() (localctx ICompositeItemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(772) + p.SetState(774) p.EntityRef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(773) + p.SetState(775) p.ConstLit() } @@ -10684,14 +10689,14 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(776) + p.SetState(778) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(780) + p.SetState(782) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10700,7 +10705,7 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { for _la == nevaParserNEWLINE { { - p.SetState(777) + p.SetState(779) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10708,14 +10713,14 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { } } - p.SetState(782) + p.SetState(784) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(784) + p.SetState(786) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10724,13 +10729,13 @@ func (p *nevaParser) StructLit() (localctx IStructLitContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(783) + p.SetState(785) p.StructValueFields() } } { - p.SetState(786) + p.SetState(788) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -10876,10 +10881,10 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(788) + p.SetState(790) p.StructValueField() } - p.SetState(799) + p.SetState(801) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10888,14 +10893,14 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { for _la == nevaParserT__2 { { - p.SetState(789) + p.SetState(791) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(793) + p.SetState(795) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10904,7 +10909,7 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { for _la == nevaParserNEWLINE { { - p.SetState(790) + p.SetState(792) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -10912,7 +10917,7 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { } } - p.SetState(795) + p.SetState(797) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10920,11 +10925,11 @@ func (p *nevaParser) StructValueFields() (localctx IStructValueFieldsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(796) + p.SetState(798) p.StructValueField() } - p.SetState(801) + p.SetState(803) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11049,7 +11054,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(802) + p.SetState(804) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11057,7 +11062,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } { - p.SetState(803) + p.SetState(805) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -11065,10 +11070,10 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } { - p.SetState(804) + p.SetState(806) p.CompositeItem() } - p.SetState(808) + p.SetState(810) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11077,7 +11082,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { for _la == nevaParserNEWLINE { { - p.SetState(805) + p.SetState(807) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11085,7 +11090,7 @@ func (p *nevaParser) StructValueField() (localctx IStructValueFieldContext) { } } - p.SetState(810) + p.SetState(812) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11208,7 +11213,7 @@ func (s *CompStmtContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { localctx = NewCompStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 122, nevaParserRULE_compStmt) - p.SetState(813) + p.SetState(815) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11218,14 +11223,14 @@ func (p *nevaParser) CompStmt() (localctx ICompStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(811) + p.SetState(813) p.SingleCompStmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(812) + p.SetState(814) p.GroupCompStmt() } @@ -11356,7 +11361,7 @@ func (p *nevaParser) SingleCompStmt() (localctx ISingleCompStmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(816) + p.SetState(818) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11365,12 +11370,12 @@ func (p *nevaParser) SingleCompStmt() (localctx ISingleCompStmtContext) { if _la == nevaParserT__0 { { - p.SetState(815) + p.SetState(817) p.CompilerDirectives() } } - p.SetState(819) + p.SetState(821) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11379,7 +11384,7 @@ func (p *nevaParser) SingleCompStmt() (localctx ISingleCompStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(818) + p.SetState(820) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -11389,7 +11394,7 @@ func (p *nevaParser) SingleCompStmt() (localctx ISingleCompStmtContext) { } { - p.SetState(821) + p.SetState(823) p.Match(nevaParserT__26) if p.HasError() { // Recognition error - abort rule @@ -11397,7 +11402,7 @@ func (p *nevaParser) SingleCompStmt() (localctx ISingleCompStmtContext) { } } { - p.SetState(822) + p.SetState(824) p.CompDef() } @@ -11602,14 +11607,14 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(824) + p.SetState(826) p.Match(nevaParserT__26) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(828) + p.SetState(830) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11618,7 +11623,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(825) + p.SetState(827) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11626,7 +11631,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { } } - p.SetState(830) + p.SetState(832) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11634,14 +11639,14 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(831) + p.SetState(833) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(835) + p.SetState(837) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11650,7 +11655,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(832) + p.SetState(834) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11658,22 +11663,22 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { } } - p.SetState(837) + p.SetState(839) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(859) + p.SetState(861) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&60129542146) != 0 { - p.SetState(847) + for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&120259084290) != 0 { + p.SetState(849) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11682,14 +11687,14 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { for _la == nevaParserCOMMENT { { - p.SetState(838) + p.SetState(840) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(842) + p.SetState(844) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11698,7 +11703,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { for _la == nevaParserNEWLINE { { - p.SetState(839) + p.SetState(841) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11706,7 +11711,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { } } - p.SetState(844) + p.SetState(846) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11714,14 +11719,14 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(849) + p.SetState(851) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(851) + p.SetState(853) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11730,12 +11735,12 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { if _la == nevaParserT__0 { { - p.SetState(850) + p.SetState(852) p.CompilerDirectives() } } - p.SetState(854) + p.SetState(856) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11744,7 +11749,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { if _la == nevaParserPUB_KW { { - p.SetState(853) + p.SetState(855) p.Match(nevaParserPUB_KW) if p.HasError() { // Recognition error - abort rule @@ -11754,11 +11759,11 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { } { - p.SetState(856) + p.SetState(858) p.CompDef() } - p.SetState(861) + p.SetState(863) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11766,7 +11771,7 @@ func (p *nevaParser) GroupCompStmt() (localctx IGroupCompStmtContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(862) + p.SetState(864) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -11920,15 +11925,15 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(864) + p.SetState(866) p.InterfaceDef() } - p.SetState(867) + p.SetState(869) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 110, p.GetParserRuleContext()) == 1 { { - p.SetState(865) + p.SetState(867) p.CompBody() } @@ -11936,14 +11941,14 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { goto errorExit } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 110, p.GetParserRuleContext()) == 2 { { - p.SetState(866) + p.SetState(868) p.CompNetBody() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(872) + p.SetState(874) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11955,7 +11960,7 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(869) + p.SetState(871) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -11964,7 +11969,7 @@ func (p *nevaParser) CompDef() (localctx ICompDefContext) { } } - p.SetState(874) + p.SetState(876) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12116,14 +12121,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(875) + p.SetState(877) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(879) + p.SetState(881) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12132,7 +12137,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(876) + p.SetState(878) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12140,14 +12145,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(881) + p.SetState(883) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(891) + p.SetState(893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12159,14 +12164,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(882) + p.SetState(884) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(886) + p.SetState(888) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12175,7 +12180,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(883) + p.SetState(885) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12183,7 +12188,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(888) + p.SetState(890) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12192,7 +12197,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(893) + p.SetState(895) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12202,7 +12207,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { goto errorExit } } - p.SetState(901) + p.SetState(903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12211,10 +12216,10 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { if _la == nevaParserT__27 { { - p.SetState(894) + p.SetState(896) p.CompNodesDef() } - p.SetState(898) + p.SetState(900) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12223,7 +12228,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(895) + p.SetState(897) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12231,7 +12236,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(900) + p.SetState(902) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12240,7 +12245,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(912) + p.SetState(914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12252,14 +12257,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(903) + p.SetState(905) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(907) + p.SetState(909) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12268,7 +12273,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(904) + p.SetState(906) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12276,7 +12281,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(909) + p.SetState(911) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12285,7 +12290,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(914) + p.SetState(916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12295,19 +12300,19 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { goto errorExit } } - p.SetState(922) + p.SetState(924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if _la == nevaParserT__28 { + if _la == nevaParserT__29 { { - p.SetState(915) + p.SetState(917) p.CompNetDef() } - p.SetState(919) + p.SetState(921) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12316,7 +12321,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(916) + p.SetState(918) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12324,7 +12329,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(921) + p.SetState(923) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12333,7 +12338,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(933) + p.SetState(935) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12342,14 +12347,14 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserCOMMENT { { - p.SetState(924) + p.SetState(926) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(928) + p.SetState(930) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12358,7 +12363,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(925) + p.SetState(927) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12366,7 +12371,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { } } - p.SetState(930) + p.SetState(932) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12374,7 +12379,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(935) + p.SetState(937) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12382,7 +12387,7 @@ func (p *nevaParser) CompBody() (localctx ICompBodyContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(936) + p.SetState(938) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -12502,14 +12507,14 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(938) + p.SetState(940) p.Match(nevaParserT__27) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(942) + p.SetState(944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12518,7 +12523,7 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(939) + p.SetState(941) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12526,7 +12531,7 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { } } - p.SetState(944) + p.SetState(946) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12534,7 +12539,7 @@ func (p *nevaParser) CompNodesDef() (localctx ICompNodesDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(945) + p.SetState(947) p.CompNodesDefBody() } @@ -12686,14 +12691,14 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(947) + p.SetState(949) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(951) + p.SetState(953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12702,7 +12707,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(948) + p.SetState(950) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12710,22 +12715,22 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { } } - p.SetState(953) + p.SetState(955) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(969) + p.SetState(971) 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(956) + for (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&85899345922) != 0 { + p.SetState(958) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12734,13 +12739,13 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { switch p.GetTokenStream().LA(1) { case nevaParserT__0, nevaParserIDENTIFIER: { - p.SetState(954) + p.SetState(956) p.CompNodeDef() } case nevaParserCOMMENT: { - p.SetState(955) + p.SetState(957) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -12752,7 +12757,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(959) + p.SetState(961) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12761,7 +12766,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { if _la == nevaParserT__2 { { - p.SetState(958) + p.SetState(960) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule @@ -12770,7 +12775,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { } } - p.SetState(964) + p.SetState(966) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12779,7 +12784,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(961) + p.SetState(963) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -12787,7 +12792,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { } } - p.SetState(966) + p.SetState(968) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12795,7 +12800,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { _la = p.GetTokenStream().LA(1) } - p.SetState(971) + p.SetState(973) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12803,7 +12808,7 @@ func (p *nevaParser) CompNodesDefBody() (localctx ICompNodesDefBodyContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(972) + p.SetState(974) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -12934,7 +12939,7 @@ func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(975) + p.SetState(977) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12943,17 +12948,17 @@ func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { if _la == nevaParserT__0 { { - p.SetState(974) + p.SetState(976) p.CompilerDirectives() } } - p.SetState(978) + p.SetState(980) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 130, p.GetParserRuleContext()) == 1 { { - p.SetState(977) + p.SetState(979) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12965,7 +12970,7 @@ func (p *nevaParser) CompNodeDef() (localctx ICompNodeDefContext) { goto errorExit } { - p.SetState(980) + p.SetState(982) p.NodeInst() } @@ -12994,6 +12999,7 @@ type INodeInstContext interface { AllNEWLINE() []antlr.TerminalNode NEWLINE(i int) antlr.TerminalNode TypeArgs() ITypeArgsContext + ErrGuard() IErrGuardContext NodeDIArgs() INodeDIArgsContext // IsNodeInstContext differentiates from other interfaces. @@ -13072,6 +13078,22 @@ func (s *NodeInstContext) TypeArgs() ITypeArgsContext { return t.(ITypeArgsContext) } +func (s *NodeInstContext) ErrGuard() IErrGuardContext { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IErrGuardContext); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(IErrGuardContext) +} + func (s *NodeInstContext) NodeDIArgs() INodeDIArgsContext { var t antlr.RuleContext for _, ctx := range s.GetChildren() { @@ -13117,10 +13139,10 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(982) + p.SetState(984) p.EntityRef() } - p.SetState(986) + p.SetState(988) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13132,7 +13154,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(983) + p.SetState(985) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13141,7 +13163,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { } } - p.SetState(988) + p.SetState(990) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13151,7 +13173,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { goto errorExit } } - p.SetState(990) + p.SetState(992) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13160,7 +13182,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { if _la == nevaParserT__12 { { - p.SetState(989) + p.SetState(991) p.TypeArgs() } @@ -13170,14 +13192,28 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 133, p.GetParserRuleContext()) + _la = p.GetTokenStream().LA(1) + + if _la == nevaParserT__28 { + { + p.SetState(994) + p.ErrGuard() + } + + } + p.SetState(1000) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 134, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(992) + p.SetState(997) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13186,17 +13222,17 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { } } - p.SetState(997) + p.SetState(1002) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 133, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 134, p.GetParserRuleContext()) if p.HasError() { goto errorExit } } - p.SetState(999) + p.SetState(1004) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13205,7 +13241,7 @@ func (p *nevaParser) NodeInst() (localctx INodeInstContext) { if _la == nevaParserT__5 { { - p.SetState(998) + p.SetState(1003) p.NodeDIArgs() } @@ -13224,6 +13260,93 @@ errorExit: goto errorExit // Trick to prevent compiler error if the label is not used } +// IErrGuardContext is an interface to support dynamic dispatch. +type IErrGuardContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + // IsErrGuardContext differentiates from other interfaces. + IsErrGuardContext() +} + +type ErrGuardContext struct { + antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyErrGuardContext() *ErrGuardContext { + var p = new(ErrGuardContext) + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) + p.RuleIndex = nevaParserRULE_errGuard + return p +} + +func InitEmptyErrGuardContext(p *ErrGuardContext) { + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) + p.RuleIndex = nevaParserRULE_errGuard +} + +func (*ErrGuardContext) IsErrGuardContext() {} + +func NewErrGuardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ErrGuardContext { + var p = new(ErrGuardContext) + + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState) + + p.parser = parser + p.RuleIndex = nevaParserRULE_errGuard + + return p +} + +func (s *ErrGuardContext) GetParser() antlr.Parser { return s.parser } +func (s *ErrGuardContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *ErrGuardContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *ErrGuardContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(nevaListener); ok { + listenerT.EnterErrGuard(s) + } +} + +func (s *ErrGuardContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(nevaListener); ok { + listenerT.ExitErrGuard(s) + } +} + +func (p *nevaParser) ErrGuard() (localctx IErrGuardContext) { + localctx = NewErrGuardContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 140, nevaParserRULE_errGuard) + p.EnterOuterAlt(localctx, 1) + { + p.SetState(1006) + p.Match(nevaParserT__28) + 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 +} + // INodeDIArgsContext is an interface to support dynamic dispatch. type INodeDIArgsContext interface { antlr.ParserRuleContext @@ -13308,10 +13431,10 @@ func (s *NodeDIArgsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NodeDIArgs() (localctx INodeDIArgsContext) { localctx = NewNodeDIArgsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 140, nevaParserRULE_nodeDIArgs) + p.EnterRule(localctx, 142, nevaParserRULE_nodeDIArgs) p.EnterOuterAlt(localctx, 1) { - p.SetState(1001) + p.SetState(1008) p.CompNodesDefBody() } @@ -13422,19 +13545,19 @@ func (s *CompNetDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompNetDef() (localctx ICompNetDefContext) { localctx = NewCompNetDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 142, nevaParserRULE_compNetDef) + p.EnterRule(localctx, 144, nevaParserRULE_compNetDef) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(1003) - p.Match(nevaParserT__28) + p.SetState(1010) + p.Match(nevaParserT__29) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1007) + p.SetState(1014) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13443,7 +13566,7 @@ func (p *nevaParser) CompNetDef() (localctx ICompNetDefContext) { for _la == nevaParserNEWLINE { { - p.SetState(1004) + p.SetState(1011) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13451,7 +13574,7 @@ func (p *nevaParser) CompNetDef() (localctx ICompNetDefContext) { } } - p.SetState(1009) + p.SetState(1016) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13459,7 +13582,7 @@ func (p *nevaParser) CompNetDef() (localctx ICompNetDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1010) + p.SetState(1017) p.CompNetBody() } @@ -13570,33 +13693,33 @@ func (s *CompNetBodyContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) CompNetBody() (localctx ICompNetBodyContext) { localctx = NewCompNetBodyContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 144, nevaParserRULE_compNetBody) + p.EnterRule(localctx, 146, nevaParserRULE_compNetBody) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(1012) + p.SetState(1019) p.Match(nevaParserT__5) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1016) + p.SetState(1023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 136, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 137, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1013) + p.SetState(1020) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13605,31 +13728,31 @@ func (p *nevaParser) CompNetBody() (localctx ICompNetBodyContext) { } } - p.SetState(1018) + p.SetState(1025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 136, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 137, p.GetParserRuleContext()) if p.HasError() { goto errorExit } } - p.SetState(1020) + p.SetState(1027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1078096036096) != 0 { + if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2156132827392) != 0 { { - p.SetState(1019) + p.SetState(1026) p.ConnDefList() } } - p.SetState(1025) + p.SetState(1032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13638,7 +13761,7 @@ func (p *nevaParser) CompNetBody() (localctx ICompNetBodyContext) { for _la == nevaParserNEWLINE { { - p.SetState(1022) + p.SetState(1029) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13646,7 +13769,7 @@ func (p *nevaParser) CompNetBody() (localctx ICompNetBodyContext) { } } - p.SetState(1027) + p.SetState(1034) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13654,7 +13777,7 @@ func (p *nevaParser) CompNetBody() (localctx ICompNetBodyContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1028) + p.SetState(1035) p.Match(nevaParserT__6) if p.HasError() { // Recognition error - abort rule @@ -13805,28 +13928,28 @@ func (s *ConnDefListContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { localctx = NewConnDefListContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 146, nevaParserRULE_connDefList) + p.EnterRule(localctx, 148, nevaParserRULE_connDefList) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1032) + p.SetState(1039) 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__24, nevaParserT__32, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: { - p.SetState(1030) + p.SetState(1037) p.ConnDef() } case nevaParserCOMMENT: { - p.SetState(1031) + p.SetState(1038) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -13838,18 +13961,18 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(1046) + p.SetState(1053) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 142, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 143, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { - p.SetState(1037) + p.SetState(1044) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13858,7 +13981,7 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { for _la == nevaParserNEWLINE { { - p.SetState(1034) + p.SetState(1041) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -13866,29 +13989,29 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { } } - p.SetState(1039) + p.SetState(1046) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(1042) + p.SetState(1049) 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__24, nevaParserT__32, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: { - p.SetState(1040) + p.SetState(1047) p.ConnDef() } case nevaParserCOMMENT: { - p.SetState(1041) + p.SetState(1048) p.Match(nevaParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -13902,12 +14025,12 @@ func (p *nevaParser) ConnDefList() (localctx IConnDefListContext) { } } - p.SetState(1048) + p.SetState(1055) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 142, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 143, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -14027,25 +14150,25 @@ func (s *ConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ConnDef() (localctx IConnDefContext) { localctx = NewConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 148, nevaParserRULE_connDef) - p.SetState(1051) + p.EnterRule(localctx, 150, nevaParserRULE_connDef) + p.SetState(1058) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 143, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 144, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1049) + p.SetState(1056) p.NormConnDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1050) + p.SetState(1057) p.ArrBypassConnDef() } @@ -14167,22 +14290,22 @@ func (s *NormConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) NormConnDef() (localctx INormConnDefContext) { localctx = NewNormConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 150, nevaParserRULE_normConnDef) + p.EnterRule(localctx, 152, nevaParserRULE_normConnDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(1053) + p.SetState(1060) p.SenderSide() } { - p.SetState(1054) - p.Match(nevaParserT__29) + p.SetState(1061) + p.Match(nevaParserT__30) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(1055) + p.SetState(1062) p.ReceiverSide() } @@ -14300,25 +14423,25 @@ func (s *SenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SenderSide() (localctx ISenderSideContext) { localctx = NewSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 152, nevaParserRULE_senderSide) - p.SetState(1059) + p.EnterRule(localctx, 154, nevaParserRULE_senderSide) + p.SetState(1066) 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__24, nevaParserT__32, nevaParserIDENTIFIER, nevaParserINT, nevaParserMINUS, nevaParserFLOAT, nevaParserSTRING: p.EnterOuterAlt(localctx, 1) { - p.SetState(1057) + p.SetState(1064) p.SingleSenderSide() } case nevaParserT__18: p.EnterOuterAlt(localctx, 2) { - p.SetState(1058) + p.SetState(1065) p.MultipleSenderSide() } @@ -14460,19 +14583,19 @@ func (s *MultipleSenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) { localctx = NewMultipleSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 154, nevaParserRULE_multipleSenderSide) + p.EnterRule(localctx, 156, nevaParserRULE_multipleSenderSide) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(1061) + p.SetState(1068) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1065) + p.SetState(1072) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14481,7 +14604,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(1062) + p.SetState(1069) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14489,7 +14612,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(1067) + p.SetState(1074) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14497,10 +14620,10 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(1068) + p.SetState(1075) p.SingleSenderSide() } - p.SetState(1085) + p.SetState(1092) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14509,14 +14632,14 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserT__2 { { - p.SetState(1069) + p.SetState(1076) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1073) + p.SetState(1080) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14525,7 +14648,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(1070) + p.SetState(1077) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14533,7 +14656,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(1075) + p.SetState(1082) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14541,10 +14664,10 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(1076) + p.SetState(1083) p.SingleSenderSide() } - p.SetState(1080) + p.SetState(1087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14553,7 +14676,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) for _la == nevaParserNEWLINE { { - p.SetState(1077) + p.SetState(1084) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -14561,7 +14684,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) } } - p.SetState(1082) + p.SetState(1089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14569,7 +14692,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } - p.SetState(1087) + p.SetState(1094) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14577,7 +14700,7 @@ func (p *nevaParser) MultipleSenderSide() (localctx IMultipleSenderSideContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(1088) + p.SetState(1095) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -14708,22 +14831,22 @@ func (s *ArrBypassConnDefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ArrBypassConnDef() (localctx IArrBypassConnDefContext) { localctx = NewArrBypassConnDefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 156, nevaParserRULE_arrBypassConnDef) + p.EnterRule(localctx, 158, nevaParserRULE_arrBypassConnDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(1090) + p.SetState(1097) p.SinglePortAddr() } { - p.SetState(1091) - p.Match(nevaParserT__30) + p.SetState(1098) + p.Match(nevaParserT__31) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(1092) + p.SetState(1099) p.SinglePortAddr() } @@ -14875,39 +14998,39 @@ func (s *SingleSenderSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SingleSenderSide() (localctx ISingleSenderSideContext) { localctx = NewSingleSenderSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 158, nevaParserRULE_singleSenderSide) + p.EnterRule(localctx, 160, nevaParserRULE_singleSenderSide) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1097) + p.SetState(1104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 149, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 150, p.GetParserRuleContext()) { case 1: { - p.SetState(1094) + p.SetState(1101) p.PortAddr() } case 2: { - p.SetState(1095) + p.SetState(1102) p.SenderConstRef() } case 3: { - p.SetState(1096) + p.SetState(1103) p.PrimitiveConstLit() } case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(1100) + p.SetState(1107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14916,7 +15039,7 @@ func (p *nevaParser) SingleSenderSide() (localctx ISingleSenderSideContext) { if _la == nevaParserT__10 { { - p.SetState(1099) + p.SetState(1106) p.StructSelectors() } @@ -15053,32 +15176,32 @@ func (s *ReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ReceiverSide() (localctx IReceiverSideContext) { localctx = NewReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 160, nevaParserRULE_receiverSide) - p.SetState(1105) + p.EnterRule(localctx, 162, nevaParserRULE_receiverSide) + p.SetState(1112) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 151, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 152, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1102) + p.SetState(1109) p.ChainedNormConn() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1103) + p.SetState(1110) p.SingleReceiverSide() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1104) + p.SetState(1111) p.MultipleReceiverSide() } @@ -15183,10 +15306,10 @@ func (s *ChainedNormConnContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ChainedNormConn() (localctx IChainedNormConnContext) { localctx = NewChainedNormConnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 162, nevaParserRULE_chainedNormConn) + p.EnterRule(localctx, 164, nevaParserRULE_chainedNormConn) p.EnterOuterAlt(localctx, 1) { - p.SetState(1107) + p.SetState(1114) p.NormConnDef() } @@ -15297,19 +15420,19 @@ func (s *DeferredConnContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { localctx = NewDeferredConnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 164, nevaParserRULE_deferredConn) + p.EnterRule(localctx, 166, nevaParserRULE_deferredConn) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(1109) + p.SetState(1116) p.Match(nevaParserT__1) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1113) + p.SetState(1120) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15318,7 +15441,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { for _la == nevaParserNEWLINE { { - p.SetState(1110) + p.SetState(1117) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -15326,7 +15449,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { } } - p.SetState(1115) + p.SetState(1122) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15334,10 +15457,10 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1116) + p.SetState(1123) p.ConnDef() } - p.SetState(1120) + p.SetState(1127) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15346,7 +15469,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { for _la == nevaParserNEWLINE { { - p.SetState(1117) + p.SetState(1124) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -15354,7 +15477,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { } } - p.SetState(1122) + p.SetState(1129) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15362,7 +15485,7 @@ func (p *nevaParser) DeferredConn() (localctx IDeferredConnContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1123) + p.SetState(1130) p.Match(nevaParserT__3) if p.HasError() { // Recognition error - abort rule @@ -15467,18 +15590,18 @@ func (s *SenderConstRefContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SenderConstRef() (localctx ISenderConstRefContext) { localctx = NewSenderConstRefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 166, nevaParserRULE_senderConstRef) + p.EnterRule(localctx, 168, nevaParserRULE_senderConstRef) p.EnterOuterAlt(localctx, 1) { - p.SetState(1125) - p.Match(nevaParserT__31) + p.SetState(1132) + p.Match(nevaParserT__32) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(1126) + p.SetState(1133) p.EntityRef() } @@ -15630,39 +15753,39 @@ func (s *PortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddr() (localctx IPortAddrContext) { localctx = NewPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 168, nevaParserRULE_portAddr) - p.SetState(1132) + p.EnterRule(localctx, 170, nevaParserRULE_portAddr) + p.SetState(1139) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 154, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 155, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1128) + p.SetState(1135) p.SinglePortAddr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1129) + p.SetState(1136) p.ArrPortAddr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1130) + p.SetState(1137) p.LonelySinglePortAddr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1131) + p.SetState(1138) p.LonelyArrPortAddr() } @@ -15767,10 +15890,10 @@ func (s *LonelySinglePortAddrContext) ExitRule(listener antlr.ParseTreeListener) func (p *nevaParser) LonelySinglePortAddr() (localctx ILonelySinglePortAddrContext) { localctx = NewLonelySinglePortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 170, nevaParserRULE_lonelySinglePortAddr) + p.EnterRule(localctx, 172, nevaParserRULE_lonelySinglePortAddr) p.EnterOuterAlt(localctx, 1) { - p.SetState(1134) + p.SetState(1141) p.PortAddrNode() } @@ -15888,14 +16011,14 @@ func (s *LonelyArrPortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) LonelyArrPortAddr() (localctx ILonelyArrPortAddrContext) { localctx = NewLonelyArrPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 172, nevaParserRULE_lonelyArrPortAddr) + p.EnterRule(localctx, 174, nevaParserRULE_lonelyArrPortAddr) p.EnterOuterAlt(localctx, 1) { - p.SetState(1136) + p.SetState(1143) p.PortAddrNode() } { - p.SetState(1137) + p.SetState(1144) p.PortAddrIdx() } @@ -16013,11 +16136,11 @@ func (s *SinglePortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { localctx = NewSinglePortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 174, nevaParserRULE_singlePortAddr) + p.EnterRule(localctx, 176, nevaParserRULE_singlePortAddr) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1140) + p.SetState(1147) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16026,13 +16149,13 @@ func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(1139) + p.SetState(1146) p.PortAddrNode() } } { - p.SetState(1142) + p.SetState(1149) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -16040,7 +16163,7 @@ func (p *nevaParser) SinglePortAddr() (localctx ISinglePortAddrContext) { } } { - p.SetState(1143) + p.SetState(1150) p.PortAddrPort() } @@ -16175,11 +16298,11 @@ func (s *ArrPortAddrContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { localctx = NewArrPortAddrContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 176, nevaParserRULE_arrPortAddr) + p.EnterRule(localctx, 178, nevaParserRULE_arrPortAddr) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1146) + p.SetState(1153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16188,13 +16311,13 @@ func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { if _la == nevaParserIDENTIFIER { { - p.SetState(1145) + p.SetState(1152) p.PortAddrNode() } } { - p.SetState(1148) + p.SetState(1155) p.Match(nevaParserT__7) if p.HasError() { // Recognition error - abort rule @@ -16202,11 +16325,11 @@ func (p *nevaParser) ArrPortAddr() (localctx IArrPortAddrContext) { } } { - p.SetState(1149) + p.SetState(1156) p.PortAddrPort() } { - p.SetState(1150) + p.SetState(1157) p.PortAddrIdx() } @@ -16295,10 +16418,10 @@ func (s *PortAddrNodeContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrNode() (localctx IPortAddrNodeContext) { localctx = NewPortAddrNodeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 178, nevaParserRULE_portAddrNode) + p.EnterRule(localctx, 180, nevaParserRULE_portAddrNode) p.EnterOuterAlt(localctx, 1) { - p.SetState(1152) + p.SetState(1159) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -16391,10 +16514,10 @@ func (s *PortAddrPortContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrPort() (localctx IPortAddrPortContext) { localctx = NewPortAddrPortContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 180, nevaParserRULE_portAddrPort) + p.EnterRule(localctx, 182, nevaParserRULE_portAddrPort) p.EnterOuterAlt(localctx, 1) { - p.SetState(1154) + p.SetState(1161) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -16487,10 +16610,10 @@ func (s *PortAddrIdxContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { localctx = NewPortAddrIdxContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 182, nevaParserRULE_portAddrIdx) + p.EnterRule(localctx, 184, nevaParserRULE_portAddrIdx) p.EnterOuterAlt(localctx, 1) { - p.SetState(1156) + p.SetState(1163) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule @@ -16498,7 +16621,7 @@ func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { } } { - p.SetState(1157) + p.SetState(1164) p.Match(nevaParserINT) if p.HasError() { // Recognition error - abort rule @@ -16506,7 +16629,7 @@ func (p *nevaParser) PortAddrIdx() (localctx IPortAddrIdxContext) { } } { - p.SetState(1158) + p.SetState(1165) p.Match(nevaParserT__19) if p.HasError() { // Recognition error - abort rule @@ -16604,12 +16727,12 @@ func (s *StructSelectorsContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { localctx = NewStructSelectorsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 184, nevaParserRULE_structSelectors) + p.EnterRule(localctx, 186, nevaParserRULE_structSelectors) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(1160) + p.SetState(1167) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -16617,14 +16740,14 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } { - p.SetState(1161) + p.SetState(1168) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1166) + p.SetState(1173) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16633,7 +16756,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { for _la == nevaParserT__10 { { - p.SetState(1162) + p.SetState(1169) p.Match(nevaParserT__10) if p.HasError() { // Recognition error - abort rule @@ -16641,7 +16764,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } { - p.SetState(1163) + p.SetState(1170) p.Match(nevaParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -16649,7 +16772,7 @@ func (p *nevaParser) StructSelectors() (localctx IStructSelectorsContext) { } } - p.SetState(1168) + p.SetState(1175) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16771,8 +16894,8 @@ func (s *SingleReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) { func (p *nevaParser) SingleReceiverSide() (localctx ISingleReceiverSideContext) { localctx = NewSingleReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 186, nevaParserRULE_singleReceiverSide) - p.SetState(1171) + p.EnterRule(localctx, 188, nevaParserRULE_singleReceiverSide) + p.SetState(1178) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16782,14 +16905,14 @@ func (p *nevaParser) SingleReceiverSide() (localctx ISingleReceiverSideContext) case nevaParserT__7, nevaParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(1169) + p.SetState(1176) p.PortAddr() } case nevaParserT__1: p.EnterOuterAlt(localctx, 2) { - p.SetState(1170) + p.SetState(1177) p.DeferredConn() } @@ -16931,19 +17054,19 @@ func (s *MultipleReceiverSideContext) ExitRule(listener antlr.ParseTreeListener) func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideContext) { localctx = NewMultipleReceiverSideContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 188, nevaParserRULE_multipleReceiverSide) + p.EnterRule(localctx, 190, nevaParserRULE_multipleReceiverSide) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(1173) + p.SetState(1180) p.Match(nevaParserT__18) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1177) + p.SetState(1184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16952,7 +17075,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(1174) + p.SetState(1181) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -16960,7 +17083,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1179) + p.SetState(1186) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16968,10 +17091,10 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1180) + p.SetState(1187) p.SingleReceiverSide() } - p.SetState(1197) + p.SetState(1204) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16980,14 +17103,14 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserT__2 { { - p.SetState(1181) + p.SetState(1188) p.Match(nevaParserT__2) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1185) + p.SetState(1192) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16996,7 +17119,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(1182) + p.SetState(1189) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -17004,7 +17127,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1187) + p.SetState(1194) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17012,10 +17135,10 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1188) + p.SetState(1195) p.SingleReceiverSide() } - p.SetState(1192) + p.SetState(1199) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17024,7 +17147,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte for _la == nevaParserNEWLINE { { - p.SetState(1189) + p.SetState(1196) p.Match(nevaParserNEWLINE) if p.HasError() { // Recognition error - abort rule @@ -17032,7 +17155,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte } } - p.SetState(1194) + p.SetState(1201) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17040,7 +17163,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } - p.SetState(1199) + p.SetState(1206) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17048,7 +17171,7 @@ func (p *nevaParser) MultipleReceiverSide() (localctx IMultipleReceiverSideConte _la = p.GetTokenStream().LA(1) } { - p.SetState(1200) + p.SetState(1207) 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 aca88d46..397e0507 100644 --- a/internal/compiler/parser/listener_helpers.go +++ b/internal/compiler/parser/listener_helpers.go @@ -402,14 +402,7 @@ func parseNodes( for _, node := range actx.AllCompNodeDef() { nodeInst := node.NodeInst() - var typeArgs []ts.Expr - if args := nodeInst.TypeArgs(); args != nil { - v, err := parseTypeExprs(args.AllTypeExpr()) - if err != nil { - return nil, err - } - typeArgs = v - } + directives := parseCompilerDirectives(node.CompilerDirectives()) parsedRef, err := parseEntityRef(nodeInst.EntityRef()) if err != nil { @@ -429,7 +422,19 @@ func parseNodes( } } - directives := parseCompilerDirectives(node.CompilerDirectives()) + var typeArgs []ts.Expr + if args := nodeInst.TypeArgs(); args != nil { + v, err := parseTypeExprs(args.AllTypeExpr()) + if err != nil { + return nil, err + } + typeArgs = v + } + + var errGuard bool + if nodeInst.ErrGuard() != nil { + errGuard = true + } var deps map[string]src.Node if diArgs := nodeInst.NodeDIArgs(); diArgs != nil { @@ -451,6 +456,7 @@ func parseNodes( Directives: directives, EntityRef: parsedRef, TypeArgs: typeArgs, + ErrGuard: errGuard, Deps: deps, Meta: core.Meta{ Text: node.GetText(), diff --git a/internal/compiler/parser/net.go b/internal/compiler/parser/net.go index 1654829b..00e01f00 100644 --- a/internal/compiler/parser/net.go +++ b/internal/compiler/parser/net.go @@ -49,7 +49,6 @@ func parseConn(connDef generated.IConnDefContext) ( arrBypassConn := connDef.ArrBypassConnDef() if normConn == nil && arrBypassConn == nil { - return nil, &compiler.Error{ Err: ErrEmptyConnDef, Meta: &connMeta, diff --git a/internal/compiler/parser/neva.g4 b/internal/compiler/parser/neva.g4 index 6679fb0f..f57b528b 100644 --- a/internal/compiler/parser/neva.g4 +++ b/internal/compiler/parser/neva.g4 @@ -133,7 +133,8 @@ compNodesDef: 'nodes' NEWLINE* compNodesDefBody; compNodesDefBody: '{' NEWLINE* ((compNodeDef | COMMENT) ','? NEWLINE*)* '}'; compNodeDef: compilerDirectives? IDENTIFIER? nodeInst; -nodeInst: entityRef NEWLINE* typeArgs? NEWLINE* nodeDIArgs?; +nodeInst: entityRef NEWLINE* typeArgs? errGuard? NEWLINE* nodeDIArgs?; +errGuard: '?'; nodeDIArgs: compNodesDefBody; // network diff --git a/internal/compiler/sourcecode/scope.go b/internal/compiler/sourcecode/scope.go index fada6d21..391bb66b 100644 --- a/internal/compiler/sourcecode/scope.go +++ b/internal/compiler/sourcecode/scope.go @@ -72,7 +72,6 @@ func (s Scope) Entity(entityRef core.EntityRef) (Entity, Location, error) { return s.entity(entityRef) } -//nolint:funlen func (s Scope) entity(entityRef core.EntityRef) (Entity, Location, error) { curMod, ok := s.Build.Modules[s.Location.ModRef] if !ok { diff --git a/internal/compiler/sourcecode/sourcecode.go b/internal/compiler/sourcecode/sourcecode.go index 638f3dc3..e3ca3bb5 100644 --- a/internal/compiler/sourcecode/sourcecode.go +++ b/internal/compiler/sourcecode/sourcecode.go @@ -25,10 +25,12 @@ func (mod Module) Entity(entityRef core.EntityRef) (entity Entity, filename stri if !ok { return Entity{}, "", fmt.Errorf("%w '%v'", ErrPkgNotFound, entityRef.Pkg) } + entity, filename, ok = pkg.Entity(entityRef.Name) if !ok { return Entity{}, "", fmt.Errorf("%w: '%v'", ErrEntityNotFound, entityRef.Name) } + return entity, filename, nil } @@ -173,6 +175,7 @@ type Node struct { Directives map[Directive][]string `json:"directives,omitempty"` EntityRef core.EntityRef `json:"entityRef,omitempty"` TypeArgs TypeArgs `json:"typeArgs,omitempty"` + ErrGuard bool `json:"errGuard,omitempty"` Deps map[string]Node `json:"componentDi,omitempty"` Meta core.Meta `json:"meta,omitempty"` } diff --git a/internal/runtime/funcs/panic.go b/internal/runtime/funcs/panic.go new file mode 100644 index 00000000..90141d6a --- /dev/null +++ b/internal/runtime/funcs/panic.go @@ -0,0 +1,30 @@ +package funcs + +import ( + "context" + "fmt" + + "github.com/nevalang/neva/internal/runtime" +) + +type panicker struct{} + +func (p panicker) Create( + io runtime.FuncIO, + _ runtime.Msg, +) (func(ctx context.Context), error) { + msgIn, err := io.In.Port("msg") + if err != nil { + return nil, err + } + return func(ctx context.Context) { + select { + case <-ctx.Done(): + return + case panicMsg := <-msgIn: + cancel := ctx.Value("cancel").(context.CancelFunc) + cancel() + fmt.Printf("panic: %v\n", panicMsg) + } + }, nil +} diff --git a/internal/runtime/funcs/registry.go b/internal/runtime/funcs/registry.go index 7e2da598..41531d2e 100644 --- a/internal/runtime/funcs/registry.go +++ b/internal/runtime/funcs/registry.go @@ -14,11 +14,12 @@ func CreatorRegistry() map[string]runtime.FuncCreator { "lock": lock{}, "match": match{}, "unwrap": unwrap{}, + "panic": panicker{}, // streamers "array_port_to_stream": arrayPortToStream{}, "list_to_stream": listToStream{}, - "stream_int_range": streamIntRange{}, + "stream_int_range": streamIntRange{}, // builders "struct_builder": structBuilder{}, diff --git a/internal/runtime/msg.go b/internal/runtime/msg.go index 1da4e7c6..f5b94714 100644 --- a/internal/runtime/msg.go +++ b/internal/runtime/msg.go @@ -90,10 +90,17 @@ type StrMsg struct { v string } -func (msg StrMsg) Type() MsgType { return StrMsgType } -func (msg StrMsg) Str() string { return msg.v } -func (msg StrMsg) String() string { return msg.v } -func (msg StrMsg) MarshalJSON() ([]byte, error) { return []byte(msg.String()), nil } +func (msg StrMsg) Type() MsgType { return StrMsgType } +func (msg StrMsg) Str() string { return msg.v } +func (msg StrMsg) String() string { return msg.v } +func (msg StrMsg) MarshalJSON() ([]byte, error) { + // Escape special characters in the string before marshaling + jsonString, err := json.Marshal(msg.String()) + if err != nil { + return nil, err + } + return jsonString, nil +} func NewStrMsg(s string) StrMsg { return StrMsg{ diff --git a/internal/runtime/runtime.go b/internal/runtime/runtime.go index 5c2eac96..3003b484 100644 --- a/internal/runtime/runtime.go +++ b/internal/runtime/runtime.go @@ -45,16 +45,24 @@ func (r Runtime) Run(ctx context.Context, prog Program) error { return fmt.Errorf("%w: %v", ErrFuncRunner, err) } - ctx2, cancel := context.WithCancel(ctx) + cancelableCtx, cancel := context.WithCancel(ctx) wg := sync.WaitGroup{} wg.Add(2) + go func() { - funcRun(ctx2) + funcRun( + context.WithValue( + cancelableCtx, + "cancel", //nolint:staticcheck // SA1029 + cancel, + ), + ) wg.Done() }() + go func() { - r.connector.Connect(ctx2, prog.Connections) + r.connector.Connect(cancelableCtx, prog.Connections) wg.Done() }() diff --git a/pkg/version.go b/pkg/version.go index 004b96fb..60f2f3a3 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -2,4 +2,4 @@ package pkg // Version is the current version of the language and stdlib. // Don't forget to update it before release new tag. -var Version = "0.21.0" //nolint:gochecknoglobals +var Version = "0.22.0" //nolint:gochecknoglobals diff --git a/std/builtin/core.neva b/std/builtin/core.neva index 376cac70..5498bc2f 100644 --- a/std/builtin/core.neva +++ b/std/builtin/core.neva @@ -8,6 +8,9 @@ component { #extern(lock) pub Lock(sig any, data T) (data T) + #extern(panic) + pub Panic(msg any) () + #autoports #extern(struct_builder) pub Struct () (msg T)