diff --git a/plugin_template/swinfo.json b/plugin_template/swinfo.json index c8f9e12..369a8fb 100644 --- a/plugin_template/swinfo.json +++ b/plugin_template/swinfo.json @@ -5,7 +5,7 @@ "name": "Patch Manager", "description": "A mod for generic patching needs similar to KSP 1's Module Manager.", "source": "https://github.com/KSP2Community/PatchManager", - "version": "0.10.1", + "version": "0.11.0", "version_check": "https://raw.githubusercontent.com/KSP2Community/PatchManager/main/plugin_template/swinfo.json", "ksp2_version": { "min": "0.2.0", diff --git a/src/PatchManager.Core/Assets/PatchingManager.cs b/src/PatchManager.Core/Assets/PatchingManager.cs index 509ebc3..2939f35 100644 --- a/src/PatchManager.Core/Assets/PatchingManager.cs +++ b/src/PatchManager.Core/Assets/PatchingManager.cs @@ -28,6 +28,8 @@ internal static class PatchingManager private static Dictionary> _createdAssets = new(); internal static int TotalPatchCount; + internal static int TotalErrorCount; + public static void GenerateUniverse(HashSet singleFileModIds) { var loadedPlugins = PluginList.AllEnabledAndActivePlugins.Select(x => x.Guid).ToList(); @@ -87,6 +89,7 @@ private static string PatchJson(string label, string assetName, string text) } catch (Exception e) { + TotalErrorCount += 1; Console.WriteLine($"Patch of {label}:{assetName} errored due to: {e}"); text = backup; } diff --git a/src/PatchManager.Core/CoreModule.cs b/src/PatchManager.Core/CoreModule.cs index e2b93c9..0c5f084 100644 --- a/src/PatchManager.Core/CoreModule.cs +++ b/src/PatchManager.Core/CoreModule.cs @@ -192,6 +192,7 @@ public override VisualElement GetDetails() { text.text += "Total amount of patches: Unknown (loaded from cache)\n"; } + text.text += $"Total amount of errors: {PatchingManager.TotalErrorCount}\n"; text.text += "Patched labels:"; foreach (var label in PatchingManager.Universe.LoadedLabels) diff --git a/src/PatchManager.Core/Patches/Runtime/LoadingBarPatch.cs b/src/PatchManager.Core/Patches/Runtime/LoadingBarPatch.cs index 47c6a98..78a6b9e 100644 --- a/src/PatchManager.Core/Patches/Runtime/LoadingBarPatch.cs +++ b/src/PatchManager.Core/Patches/Runtime/LoadingBarPatch.cs @@ -17,6 +17,8 @@ public static bool ShuffleLoadingTip(ref LoadingBar __instance) if (!InjectPatchManagerTips) return true; __instance.tipsText.text = $"Patch Manager: {PatchingManager.TotalPatchCount} patches"; + if (PatchingManager.TotalErrorCount > 0) + __instance.tipsText.text += $", {PatchingManager.TotalErrorCount} errors"; return false; } diff --git a/src/PatchManager.SassyPatching/Execution/Environment.cs b/src/PatchManager.SassyPatching/Execution/Environment.cs index 278a78e..d0fac15 100644 --- a/src/PatchManager.SassyPatching/Execution/Environment.cs +++ b/src/PatchManager.SassyPatching/Execution/Environment.cs @@ -1,4 +1,6 @@ using JetBrains.Annotations; +using PatchManager.SassyPatching.Nodes; +using PatchManager.SassyPatching.Nodes.Statements.SelectionLevel; namespace PatchManager.SassyPatching.Execution; @@ -20,6 +22,16 @@ public class Environment /// public Dictionary ScopedValues; + + [CanBeNull] private List _slotActions; + + [CanBeNull] + public List SlotActions + { + get => _slotActions ?? Parent?.SlotActions; + set => _slotActions = value; + } + /// /// Creates a new environment /// @@ -76,7 +88,8 @@ public Environment Snapshot() var parent = Parent?.Snapshot(); return new Environment(GlobalEnvironment, parent) { - ScopedValues = scopedValues + ScopedValues = scopedValues, + _slotActions = _slotActions }; } } \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/Execution/PatchMixin.cs b/src/PatchManager.SassyPatching/Execution/PatchMixin.cs index f0449ef..53868c4 100644 --- a/src/PatchManager.SassyPatching/Execution/PatchMixin.cs +++ b/src/PatchManager.SassyPatching/Execution/PatchMixin.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using PatchManager.SassyPatching.Exceptions; using PatchManager.SassyPatching.Interfaces; +using PatchManager.SassyPatching.Nodes; using PatchManager.SassyPatching.Nodes.Statements.SelectionLevel; using PatchManager.SassyPatching.Nodes.Statements.TopLevel; @@ -17,48 +18,10 @@ public PatchMixin(Mixin mixin) public void Include(Environment env, List arguments, ISelectable selectable, [CanBeNull] IModifiable modifiable) { - Environment subEnvironment = new Environment(env.GlobalEnvironment, env); + var subEnvironment = new Environment(env.GlobalEnvironment, env); foreach (var arg in Function.Arguments) { - // As per usual we consume - bool foundPositional = false; - DataValue argument = null; - int removalIndex = -1; - for (int i = 0; i < arguments.Count; i++) - { - if (!foundPositional && arguments[i].ArgumentName == null) - { - foundPositional = true; - removalIndex = i; - argument = arguments[i].ArgumentDataValue; - } - - if (arguments[i].ArgumentName != arg.Name) continue; - removalIndex = i; - argument = arguments[i].ArgumentDataValue; - break; - } - - if (removalIndex >= 0) - { - arguments.RemoveAt(removalIndex); - } - if (argument == null) - { - if (arg.Value != null) - { - subEnvironment[arg.Name] = arg.Value.Compute(subEnvironment); - } - else - { - throw new InvocationException($"No value found for argument: {arg.Name}"); - } - } - else - { - // args.Add(CheckParameter(parameter, argument)); - subEnvironment[arg.Name] = argument; - } + ConsumeMixinArgument(arguments, arg, subEnvironment); } if (arguments.Count > 0) @@ -78,4 +41,47 @@ public void Include(Environment env, List arguments, ISelectable } } + + private static void ConsumeMixinArgument(List arguments, Argument arg, Environment subEnvironment) + { + // As per usual we consume + var foundPositional = false; + DataValue argument = null; + var removalIndex = -1; + for (var i = 0; i < arguments.Count; i++) + { + if (!foundPositional && arguments[i].ArgumentName == null) + { + foundPositional = true; + removalIndex = i; + argument = arguments[i].ArgumentDataValue; + } + + if (arguments[i].ArgumentName != arg.Name) continue; + removalIndex = i; + argument = arguments[i].ArgumentDataValue; + break; + } + + if (removalIndex >= 0) + { + arguments.RemoveAt(removalIndex); + } + if (argument == null) + { + if (arg.Value != null) + { + subEnvironment[arg.Name] = arg.Value.Compute(subEnvironment); + } + else + { + throw new InvocationException($"No value found for argument: {arg.Name}"); + } + } + else + { + // args.Add(CheckParameter(parameter, argument)); + subEnvironment[arg.Name] = argument; + } + } } \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinBlockInclude.cs b/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinBlockInclude.cs new file mode 100644 index 0000000..75c44e3 --- /dev/null +++ b/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinBlockInclude.cs @@ -0,0 +1,61 @@ +using PatchManager.SassyPatching.Exceptions; +using PatchManager.SassyPatching.Interfaces; +using Environment = PatchManager.SassyPatching.Execution.Environment; + +namespace PatchManager.SassyPatching.Nodes.Statements.SelectionLevel; + +/// +/// Represents a mixin block include (i.e. slotting actions into a mixin) +/// +public class MixinBlockInclude : Node, ISelectionAction +{ + /// + /// The name of the mixin being included + /// + public readonly string MixinName; + /// + /// The list of arguments to the mixin being included + /// + public readonly List Arguments; + + /// + /// The actions to be slotted into the mixin + /// + public readonly List SlotActions; + + internal MixinBlockInclude(Coordinate c, string mixinName, List arguments, List slotActions) : base(c) + { + MixinName = mixinName; + Arguments = arguments; + SlotActions = slotActions; + } + + /// + public override void ExecuteIn(Environment environment) + { + } + + /// + public void ExecuteOn(Environment environment, ISelectable selectable, IModifiable modifiable) + { + if (environment.GlobalEnvironment.AllMixins.TryGetValue(MixinName, out var mixin)) + { + try + { + var subEnv = new Environment(environment.GlobalEnvironment, environment) + { + SlotActions = SlotActions + }; + mixin.Include(subEnv,Arguments.Select(x => x.Compute(environment)).ToList(),selectable,modifiable); + } + catch (InvocationException e) + { + throw new InterpreterException(Coordinate, e.ToString()); + } + } + else + { + throw new InterpreterException(Coordinate, $"{MixinName} is not a valid mixin"); + } + } +} \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinSlot.cs b/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinSlot.cs new file mode 100644 index 0000000..9f86582 --- /dev/null +++ b/src/PatchManager.SassyPatching/Nodes/Statements/SelectionLevel/MixinSlot.cs @@ -0,0 +1,33 @@ +using PatchManager.SassyPatching.Exceptions; +using PatchManager.SassyPatching.Interfaces; +using Environment = PatchManager.SassyPatching.Execution.Environment; + +namespace PatchManager.SassyPatching.Nodes.Statements.SelectionLevel; + +public class MixinSlot(Coordinate c) : Node(c), ISelectionAction +{ + public override void ExecuteIn(Environment environment) + { + } + + public void ExecuteOn(Environment environment, ISelectable selectable, IModifiable modifiable) + { + var actions = environment.SlotActions; + if (actions == null) + { + throw new InterpreterException(Coordinate, "Attempting to insert into a mixin slot without there being any actions passed for this purpose"); + } + + foreach (var action in actions) + { + if (action is ISelectionAction selectionAction) + { + selectionAction.ExecuteOn(environment, selectable, modifiable); + } + else + { + action.ExecuteIn(environment); + } + } + } +} \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.interp b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.interp index 2c82d3d..6d8af87 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.interp +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.interp @@ -8,6 +8,7 @@ null '@else' '@else-if' '@mixin' +'@mixin-slot' '@while' '@for' 'from' @@ -26,6 +27,9 @@ null '@new' '@before' '@after' +'@global' +'@create-config' +'@update-config' '{' '}' '(' @@ -34,6 +38,10 @@ null ']' ';' ':' +'+:' +'-:' +'/:' +'*:' ',' '+' '-' @@ -66,6 +74,10 @@ null null null null +null +null +null +null token symbolic names: null @@ -77,6 +89,7 @@ PRE_IF PRE_ELSE PRE_ELSE_IF MIXIN +MIXIN_SLOT WHILE FOR FROM @@ -95,6 +108,9 @@ PATCH NEW BEFORE AFTER +GLOBAL +CREATE_CONFIG +UPDATE_CONFIG LEFT_BRACE RIGHT_BRACE LEFT_PAREN @@ -103,6 +119,10 @@ LEFT_BRACKET RIGHT_BRACKET SEMICOLON COLON +PLUS_COLON +MINUS_COLON +DIVIDE_COLON +MULTIPLY_COLON COMMA ADD SUBTRACT @@ -129,11 +149,15 @@ NUMBER STRING DELETE NAME +STRING_NAME CLASS +STRING_CLASS VARIABLE LOCALVARIABLE +STRING_LOCALVARIABLE RULESET ENSURE +STRING_ENSURE ELEMENT rule names: @@ -147,6 +171,7 @@ PRE_IF PRE_ELSE PRE_ELSE_IF MIXIN +MIXIN_SLOT WHILE FOR FROM @@ -165,6 +190,9 @@ PATCH NEW BEFORE AFTER +GLOBAL +CREATE_CONFIG +UPDATE_CONFIG LEFT_BRACE RIGHT_BRACE LEFT_PAREN @@ -173,6 +201,10 @@ LEFT_BRACKET RIGHT_BRACKET SEMICOLON COLON +PLUS_COLON +MINUS_COLON +DIVIDE_COLON +MULTIPLY_COLON COMMA ADD SUBTRACT @@ -208,11 +240,15 @@ UNICODE_ESC IDENTIFIER WILDCARDLESS_IDENTIFIER NAME +STRING_NAME CLASS +STRING_CLASS VARIABLE LOCALVARIABLE +STRING_LOCALVARIABLE RULESET ENSURE +STRING_ENSURE ELEMENT channel names: @@ -223,4 +259,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 66, 581, 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, 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, 1, 0, 1, 0, 3, 0, 158, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 166, 8, 1, 10, 1, 12, 1, 169, 9, 1, 1, 1, 4, 1, 172, 8, 1, 11, 1, 12, 1, 173, 1, 1, 1, 1, 5, 1, 178, 8, 1, 10, 1, 12, 1, 181, 9, 1, 1, 1, 4, 1, 184, 8, 1, 11, 1, 12, 1, 185, 5, 1, 188, 8, 1, 10, 1, 12, 1, 191, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 199, 8, 2, 10, 2, 12, 2, 202, 9, 2, 1, 3, 4, 3, 205, 8, 3, 11, 3, 12, 3, 206, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 4, 57, 460, 8, 57, 11, 57, 12, 57, 461, 1, 58, 4, 58, 465, 8, 58, 11, 58, 12, 58, 466, 1, 58, 1, 58, 3, 58, 471, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 476, 8, 59, 10, 59, 12, 59, 479, 9, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 485, 8, 59, 10, 59, 12, 59, 488, 9, 59, 1, 59, 3, 59, 491, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 4, 61, 503, 8, 61, 11, 61, 12, 61, 504, 1, 62, 4, 62, 508, 8, 62, 11, 62, 12, 62, 509, 1, 62, 1, 62, 4, 62, 514, 8, 62, 11, 62, 12, 62, 515, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 526, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 537, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 5, 68, 548, 8, 68, 10, 68, 12, 68, 551, 9, 68, 1, 69, 1, 69, 5, 69, 555, 8, 69, 10, 69, 12, 69, 558, 9, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 0, 0, 77, 1, 1, 3, 0, 5, 0, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 0, 125, 0, 127, 0, 129, 0, 131, 0, 133, 0, 135, 0, 137, 0, 139, 0, 141, 60, 143, 61, 145, 62, 147, 63, 149, 64, 151, 65, 153, 66, 1, 0, 13, 1, 0, 42, 42, 2, 0, 42, 42, 47, 47, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 5, 0, 42, 42, 63, 63, 65, 90, 95, 95, 97, 122, 7, 0, 42, 42, 45, 46, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 45, 46, 48, 57, 65, 90, 95, 95, 97, 122, 595, 0, 1, 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, 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, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 3, 161, 1, 0, 0, 0, 5, 194, 1, 0, 0, 0, 7, 204, 1, 0, 0, 0, 9, 210, 1, 0, 0, 0, 11, 215, 1, 0, 0, 0, 13, 225, 1, 0, 0, 0, 15, 229, 1, 0, 0, 0, 17, 235, 1, 0, 0, 0, 19, 244, 1, 0, 0, 0, 21, 251, 1, 0, 0, 0, 23, 258, 1, 0, 0, 0, 25, 263, 1, 0, 0, 0, 27, 268, 1, 0, 0, 0, 29, 276, 1, 0, 0, 0, 31, 279, 1, 0, 0, 0, 33, 285, 1, 0, 0, 0, 35, 288, 1, 0, 0, 0, 37, 293, 1, 0, 0, 0, 39, 300, 1, 0, 0, 0, 41, 309, 1, 0, 0, 0, 43, 316, 1, 0, 0, 0, 45, 330, 1, 0, 0, 0, 47, 339, 1, 0, 0, 0, 49, 347, 1, 0, 0, 0, 51, 354, 1, 0, 0, 0, 53, 359, 1, 0, 0, 0, 55, 367, 1, 0, 0, 0, 57, 374, 1, 0, 0, 0, 59, 376, 1, 0, 0, 0, 61, 378, 1, 0, 0, 0, 63, 380, 1, 0, 0, 0, 65, 382, 1, 0, 0, 0, 67, 384, 1, 0, 0, 0, 69, 386, 1, 0, 0, 0, 71, 388, 1, 0, 0, 0, 73, 390, 1, 0, 0, 0, 75, 392, 1, 0, 0, 0, 77, 394, 1, 0, 0, 0, 79, 396, 1, 0, 0, 0, 81, 398, 1, 0, 0, 0, 83, 400, 1, 0, 0, 0, 85, 402, 1, 0, 0, 0, 87, 406, 1, 0, 0, 0, 89, 408, 1, 0, 0, 0, 91, 411, 1, 0, 0, 0, 93, 413, 1, 0, 0, 0, 95, 416, 1, 0, 0, 0, 97, 419, 1, 0, 0, 0, 99, 422, 1, 0, 0, 0, 101, 426, 1, 0, 0, 0, 103, 429, 1, 0, 0, 0, 105, 432, 1, 0, 0, 0, 107, 437, 1, 0, 0, 0, 109, 439, 1, 0, 0, 0, 111, 444, 1, 0, 0, 0, 113, 449, 1, 0, 0, 0, 115, 455, 1, 0, 0, 0, 117, 470, 1, 0, 0, 0, 119, 490, 1, 0, 0, 0, 121, 492, 1, 0, 0, 0, 123, 500, 1, 0, 0, 0, 125, 507, 1, 0, 0, 0, 127, 517, 1, 0, 0, 0, 129, 519, 1, 0, 0, 0, 131, 525, 1, 0, 0, 0, 133, 536, 1, 0, 0, 0, 135, 538, 1, 0, 0, 0, 137, 545, 1, 0, 0, 0, 139, 552, 1, 0, 0, 0, 141, 559, 1, 0, 0, 0, 143, 562, 1, 0, 0, 0, 145, 565, 1, 0, 0, 0, 147, 568, 1, 0, 0, 0, 149, 573, 1, 0, 0, 0, 151, 576, 1, 0, 0, 0, 153, 579, 1, 0, 0, 0, 155, 158, 3, 5, 2, 0, 156, 158, 3, 3, 1, 0, 157, 155, 1, 0, 0, 0, 157, 156, 1, 0, 0, 0, 158, 159, 1, 0, 0, 0, 159, 160, 6, 0, 0, 0, 160, 2, 1, 0, 0, 0, 161, 162, 5, 47, 0, 0, 162, 163, 5, 42, 0, 0, 163, 167, 1, 0, 0, 0, 164, 166, 8, 0, 0, 0, 165, 164, 1, 0, 0, 0, 166, 169, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 167, 168, 1, 0, 0, 0, 168, 171, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 170, 172, 5, 42, 0, 0, 171, 170, 1, 0, 0, 0, 172, 173, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 189, 1, 0, 0, 0, 175, 179, 8, 1, 0, 0, 176, 178, 8, 0, 0, 0, 177, 176, 1, 0, 0, 0, 178, 181, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 179, 180, 1, 0, 0, 0, 180, 183, 1, 0, 0, 0, 181, 179, 1, 0, 0, 0, 182, 184, 5, 42, 0, 0, 183, 182, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 183, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 188, 1, 0, 0, 0, 187, 175, 1, 0, 0, 0, 188, 191, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 192, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 192, 193, 5, 47, 0, 0, 193, 4, 1, 0, 0, 0, 194, 195, 5, 47, 0, 0, 195, 196, 5, 47, 0, 0, 196, 200, 1, 0, 0, 0, 197, 199, 8, 2, 0, 0, 198, 197, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 6, 1, 0, 0, 0, 202, 200, 1, 0, 0, 0, 203, 205, 7, 3, 0, 0, 204, 203, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 209, 6, 3, 0, 0, 209, 8, 1, 0, 0, 0, 210, 211, 5, 64, 0, 0, 211, 212, 5, 117, 0, 0, 212, 213, 5, 115, 0, 0, 213, 214, 5, 101, 0, 0, 214, 10, 1, 0, 0, 0, 215, 216, 5, 64, 0, 0, 216, 217, 5, 102, 0, 0, 217, 218, 5, 117, 0, 0, 218, 219, 5, 110, 0, 0, 219, 220, 5, 99, 0, 0, 220, 221, 5, 116, 0, 0, 221, 222, 5, 105, 0, 0, 222, 223, 5, 111, 0, 0, 223, 224, 5, 110, 0, 0, 224, 12, 1, 0, 0, 0, 225, 226, 5, 64, 0, 0, 226, 227, 5, 105, 0, 0, 227, 228, 5, 102, 0, 0, 228, 14, 1, 0, 0, 0, 229, 230, 5, 64, 0, 0, 230, 231, 5, 101, 0, 0, 231, 232, 5, 108, 0, 0, 232, 233, 5, 115, 0, 0, 233, 234, 5, 101, 0, 0, 234, 16, 1, 0, 0, 0, 235, 236, 5, 64, 0, 0, 236, 237, 5, 101, 0, 0, 237, 238, 5, 108, 0, 0, 238, 239, 5, 115, 0, 0, 239, 240, 5, 101, 0, 0, 240, 241, 5, 45, 0, 0, 241, 242, 5, 105, 0, 0, 242, 243, 5, 102, 0, 0, 243, 18, 1, 0, 0, 0, 244, 245, 5, 64, 0, 0, 245, 246, 5, 109, 0, 0, 246, 247, 5, 105, 0, 0, 247, 248, 5, 120, 0, 0, 248, 249, 5, 105, 0, 0, 249, 250, 5, 110, 0, 0, 250, 20, 1, 0, 0, 0, 251, 252, 5, 64, 0, 0, 252, 253, 5, 119, 0, 0, 253, 254, 5, 104, 0, 0, 254, 255, 5, 105, 0, 0, 255, 256, 5, 108, 0, 0, 256, 257, 5, 101, 0, 0, 257, 22, 1, 0, 0, 0, 258, 259, 5, 64, 0, 0, 259, 260, 5, 102, 0, 0, 260, 261, 5, 111, 0, 0, 261, 262, 5, 114, 0, 0, 262, 24, 1, 0, 0, 0, 263, 264, 5, 102, 0, 0, 264, 265, 5, 114, 0, 0, 265, 266, 5, 111, 0, 0, 266, 267, 5, 109, 0, 0, 267, 26, 1, 0, 0, 0, 268, 269, 5, 116, 0, 0, 269, 270, 5, 104, 0, 0, 270, 271, 5, 114, 0, 0, 271, 272, 5, 111, 0, 0, 272, 273, 5, 117, 0, 0, 273, 274, 5, 103, 0, 0, 274, 275, 5, 104, 0, 0, 275, 28, 1, 0, 0, 0, 276, 277, 5, 116, 0, 0, 277, 278, 5, 111, 0, 0, 278, 30, 1, 0, 0, 0, 279, 280, 5, 64, 0, 0, 280, 281, 5, 101, 0, 0, 281, 282, 5, 97, 0, 0, 282, 283, 5, 99, 0, 0, 283, 284, 5, 104, 0, 0, 284, 32, 1, 0, 0, 0, 285, 286, 5, 105, 0, 0, 286, 287, 5, 110, 0, 0, 287, 34, 1, 0, 0, 0, 288, 289, 5, 64, 0, 0, 289, 290, 5, 115, 0, 0, 290, 291, 5, 101, 0, 0, 291, 292, 5, 116, 0, 0, 292, 36, 1, 0, 0, 0, 293, 294, 5, 64, 0, 0, 294, 295, 5, 109, 0, 0, 295, 296, 5, 101, 0, 0, 296, 297, 5, 114, 0, 0, 297, 298, 5, 103, 0, 0, 298, 299, 5, 101, 0, 0, 299, 38, 1, 0, 0, 0, 300, 301, 5, 64, 0, 0, 301, 302, 5, 114, 0, 0, 302, 303, 5, 101, 0, 0, 303, 304, 5, 113, 0, 0, 304, 305, 5, 117, 0, 0, 305, 306, 5, 105, 0, 0, 306, 307, 5, 114, 0, 0, 307, 308, 5, 101, 0, 0, 308, 40, 1, 0, 0, 0, 309, 310, 5, 64, 0, 0, 310, 311, 5, 115, 0, 0, 311, 312, 5, 116, 0, 0, 312, 313, 5, 97, 0, 0, 313, 314, 5, 103, 0, 0, 314, 315, 5, 101, 0, 0, 315, 42, 1, 0, 0, 0, 316, 317, 5, 64, 0, 0, 317, 318, 5, 100, 0, 0, 318, 319, 5, 101, 0, 0, 319, 320, 5, 102, 0, 0, 320, 321, 5, 105, 0, 0, 321, 322, 5, 110, 0, 0, 322, 323, 5, 101, 0, 0, 323, 324, 5, 45, 0, 0, 324, 325, 5, 115, 0, 0, 325, 326, 5, 116, 0, 0, 326, 327, 5, 97, 0, 0, 327, 328, 5, 103, 0, 0, 328, 329, 5, 101, 0, 0, 329, 44, 1, 0, 0, 0, 330, 331, 5, 64, 0, 0, 331, 332, 5, 105, 0, 0, 332, 333, 5, 110, 0, 0, 333, 334, 5, 99, 0, 0, 334, 335, 5, 108, 0, 0, 335, 336, 5, 117, 0, 0, 336, 337, 5, 100, 0, 0, 337, 338, 5, 101, 0, 0, 338, 46, 1, 0, 0, 0, 339, 340, 5, 64, 0, 0, 340, 341, 5, 114, 0, 0, 341, 342, 5, 101, 0, 0, 342, 343, 5, 116, 0, 0, 343, 344, 5, 117, 0, 0, 344, 345, 5, 114, 0, 0, 345, 346, 5, 110, 0, 0, 346, 48, 1, 0, 0, 0, 347, 348, 5, 64, 0, 0, 348, 349, 5, 112, 0, 0, 349, 350, 5, 97, 0, 0, 350, 351, 5, 116, 0, 0, 351, 352, 5, 99, 0, 0, 352, 353, 5, 104, 0, 0, 353, 50, 1, 0, 0, 0, 354, 355, 5, 64, 0, 0, 355, 356, 5, 110, 0, 0, 356, 357, 5, 101, 0, 0, 357, 358, 5, 119, 0, 0, 358, 52, 1, 0, 0, 0, 359, 360, 5, 64, 0, 0, 360, 361, 5, 98, 0, 0, 361, 362, 5, 101, 0, 0, 362, 363, 5, 102, 0, 0, 363, 364, 5, 111, 0, 0, 364, 365, 5, 114, 0, 0, 365, 366, 5, 101, 0, 0, 366, 54, 1, 0, 0, 0, 367, 368, 5, 64, 0, 0, 368, 369, 5, 97, 0, 0, 369, 370, 5, 102, 0, 0, 370, 371, 5, 116, 0, 0, 371, 372, 5, 101, 0, 0, 372, 373, 5, 114, 0, 0, 373, 56, 1, 0, 0, 0, 374, 375, 5, 123, 0, 0, 375, 58, 1, 0, 0, 0, 376, 377, 5, 125, 0, 0, 377, 60, 1, 0, 0, 0, 378, 379, 5, 40, 0, 0, 379, 62, 1, 0, 0, 0, 380, 381, 5, 41, 0, 0, 381, 64, 1, 0, 0, 0, 382, 383, 5, 91, 0, 0, 383, 66, 1, 0, 0, 0, 384, 385, 5, 93, 0, 0, 385, 68, 1, 0, 0, 0, 386, 387, 5, 59, 0, 0, 387, 70, 1, 0, 0, 0, 388, 389, 5, 58, 0, 0, 389, 72, 1, 0, 0, 0, 390, 391, 5, 44, 0, 0, 391, 74, 1, 0, 0, 0, 392, 393, 5, 43, 0, 0, 393, 76, 1, 0, 0, 0, 394, 395, 5, 45, 0, 0, 395, 78, 1, 0, 0, 0, 396, 397, 5, 42, 0, 0, 397, 80, 1, 0, 0, 0, 398, 399, 5, 47, 0, 0, 399, 82, 1, 0, 0, 0, 400, 401, 5, 37, 0, 0, 401, 84, 1, 0, 0, 0, 402, 403, 5, 110, 0, 0, 403, 404, 5, 111, 0, 0, 404, 405, 5, 116, 0, 0, 405, 86, 1, 0, 0, 0, 406, 407, 5, 62, 0, 0, 407, 88, 1, 0, 0, 0, 408, 409, 5, 62, 0, 0, 409, 410, 5, 61, 0, 0, 410, 90, 1, 0, 0, 0, 411, 412, 5, 60, 0, 0, 412, 92, 1, 0, 0, 0, 413, 414, 5, 60, 0, 0, 414, 415, 5, 61, 0, 0, 415, 94, 1, 0, 0, 0, 416, 417, 5, 61, 0, 0, 417, 418, 5, 61, 0, 0, 418, 96, 1, 0, 0, 0, 419, 420, 5, 33, 0, 0, 420, 421, 5, 61, 0, 0, 421, 98, 1, 0, 0, 0, 422, 423, 5, 97, 0, 0, 423, 424, 5, 110, 0, 0, 424, 425, 5, 100, 0, 0, 425, 100, 1, 0, 0, 0, 426, 427, 5, 111, 0, 0, 427, 428, 5, 114, 0, 0, 428, 102, 1, 0, 0, 0, 429, 430, 5, 105, 0, 0, 430, 431, 5, 102, 0, 0, 431, 104, 1, 0, 0, 0, 432, 433, 5, 101, 0, 0, 433, 434, 5, 108, 0, 0, 434, 435, 5, 115, 0, 0, 435, 436, 5, 101, 0, 0, 436, 106, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 108, 1, 0, 0, 0, 439, 440, 5, 110, 0, 0, 440, 441, 5, 117, 0, 0, 441, 442, 5, 108, 0, 0, 442, 443, 5, 108, 0, 0, 443, 110, 1, 0, 0, 0, 444, 445, 5, 116, 0, 0, 445, 446, 5, 114, 0, 0, 446, 447, 5, 117, 0, 0, 447, 448, 5, 101, 0, 0, 448, 112, 1, 0, 0, 0, 449, 450, 5, 102, 0, 0, 450, 451, 5, 97, 0, 0, 451, 452, 5, 108, 0, 0, 452, 453, 5, 115, 0, 0, 453, 454, 5, 101, 0, 0, 454, 114, 1, 0, 0, 0, 455, 456, 5, 48, 0, 0, 456, 457, 5, 120, 0, 0, 457, 459, 1, 0, 0, 0, 458, 460, 3, 129, 64, 0, 459, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 116, 1, 0, 0, 0, 463, 465, 3, 127, 63, 0, 464, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 471, 1, 0, 0, 0, 468, 471, 3, 123, 61, 0, 469, 471, 3, 125, 62, 0, 470, 464, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 469, 1, 0, 0, 0, 471, 118, 1, 0, 0, 0, 472, 477, 5, 34, 0, 0, 473, 476, 3, 131, 65, 0, 474, 476, 8, 4, 0, 0, 475, 473, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 491, 5, 34, 0, 0, 481, 486, 5, 39, 0, 0, 482, 485, 3, 131, 65, 0, 483, 485, 8, 5, 0, 0, 484, 482, 1, 0, 0, 0, 484, 483, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 491, 5, 39, 0, 0, 490, 472, 1, 0, 0, 0, 490, 481, 1, 0, 0, 0, 491, 120, 1, 0, 0, 0, 492, 493, 5, 64, 0, 0, 493, 494, 5, 100, 0, 0, 494, 495, 5, 101, 0, 0, 495, 496, 5, 108, 0, 0, 496, 497, 5, 101, 0, 0, 497, 498, 5, 116, 0, 0, 498, 499, 5, 101, 0, 0, 499, 122, 1, 0, 0, 0, 500, 502, 5, 46, 0, 0, 501, 503, 3, 127, 63, 0, 502, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 124, 1, 0, 0, 0, 506, 508, 3, 127, 63, 0, 507, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 513, 5, 46, 0, 0, 512, 514, 3, 127, 63, 0, 513, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 126, 1, 0, 0, 0, 517, 518, 7, 6, 0, 0, 518, 128, 1, 0, 0, 0, 519, 520, 7, 7, 0, 0, 520, 130, 1, 0, 0, 0, 521, 522, 5, 92, 0, 0, 522, 526, 7, 8, 0, 0, 523, 526, 3, 135, 67, 0, 524, 526, 3, 133, 66, 0, 525, 521, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 525, 524, 1, 0, 0, 0, 526, 132, 1, 0, 0, 0, 527, 528, 5, 92, 0, 0, 528, 529, 2, 48, 51, 0, 529, 530, 2, 48, 55, 0, 530, 537, 2, 48, 55, 0, 531, 532, 5, 92, 0, 0, 532, 533, 2, 48, 55, 0, 533, 537, 2, 48, 55, 0, 534, 535, 5, 92, 0, 0, 535, 537, 2, 48, 55, 0, 536, 527, 1, 0, 0, 0, 536, 531, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 537, 134, 1, 0, 0, 0, 538, 539, 5, 92, 0, 0, 539, 540, 5, 117, 0, 0, 540, 541, 3, 129, 64, 0, 541, 542, 3, 129, 64, 0, 542, 543, 3, 129, 64, 0, 543, 544, 3, 129, 64, 0, 544, 136, 1, 0, 0, 0, 545, 549, 7, 9, 0, 0, 546, 548, 7, 10, 0, 0, 547, 546, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 138, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 556, 7, 11, 0, 0, 553, 555, 7, 12, 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, 140, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 560, 5, 35, 0, 0, 560, 561, 3, 137, 68, 0, 561, 142, 1, 0, 0, 0, 562, 563, 5, 46, 0, 0, 563, 564, 3, 139, 69, 0, 564, 144, 1, 0, 0, 0, 565, 566, 5, 36, 0, 0, 566, 567, 3, 139, 69, 0, 567, 146, 1, 0, 0, 0, 568, 569, 5, 36, 0, 0, 569, 570, 5, 36, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 3, 139, 69, 0, 572, 148, 1, 0, 0, 0, 573, 574, 5, 58, 0, 0, 574, 575, 3, 139, 69, 0, 575, 150, 1, 0, 0, 0, 576, 577, 5, 37, 0, 0, 577, 578, 3, 139, 69, 0, 578, 152, 1, 0, 0, 0, 579, 580, 3, 139, 69, 0, 580, 154, 1, 0, 0, 0, 24, 0, 157, 167, 173, 179, 185, 189, 200, 206, 461, 466, 470, 475, 477, 484, 486, 490, 504, 509, 515, 525, 536, 549, 556, 1, 6, 0, 0] \ No newline at end of file +[4, 0, 78, 683, 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, 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, 1, 0, 1, 0, 3, 0, 182, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 190, 8, 1, 10, 1, 12, 1, 193, 9, 1, 1, 1, 4, 1, 196, 8, 1, 11, 1, 12, 1, 197, 1, 1, 1, 1, 5, 1, 202, 8, 1, 10, 1, 12, 1, 205, 9, 1, 1, 1, 4, 1, 208, 8, 1, 11, 1, 12, 1, 209, 5, 1, 212, 8, 1, 10, 1, 12, 1, 215, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 223, 8, 2, 10, 2, 12, 2, 226, 9, 2, 1, 3, 4, 3, 229, 8, 3, 11, 3, 12, 3, 230, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 546, 8, 65, 11, 65, 12, 65, 547, 1, 66, 4, 66, 551, 8, 66, 11, 66, 12, 66, 552, 1, 66, 1, 66, 3, 66, 557, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 562, 8, 67, 10, 67, 12, 67, 565, 9, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 571, 8, 67, 10, 67, 12, 67, 574, 9, 67, 1, 67, 3, 67, 577, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 4, 69, 589, 8, 69, 11, 69, 12, 69, 590, 1, 70, 4, 70, 594, 8, 70, 11, 70, 12, 70, 595, 1, 70, 1, 70, 4, 70, 600, 8, 70, 11, 70, 12, 70, 601, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 612, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 623, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 5, 76, 634, 8, 76, 10, 76, 12, 76, 637, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 643, 8, 77, 10, 77, 12, 77, 646, 9, 77, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 0, 0, 89, 1, 1, 3, 0, 5, 0, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 60, 125, 61, 127, 62, 129, 63, 131, 64, 133, 65, 135, 66, 137, 67, 139, 0, 141, 0, 143, 0, 145, 0, 147, 0, 149, 0, 151, 0, 153, 0, 155, 0, 157, 68, 159, 69, 161, 70, 163, 71, 165, 72, 167, 73, 169, 74, 171, 75, 173, 76, 175, 77, 177, 78, 1, 0, 15, 1, 0, 42, 42, 2, 0, 42, 42, 47, 47, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 6, 0, 42, 42, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 7, 0, 42, 42, 45, 46, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 46, 46, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 45, 45, 2, 0, 65, 90, 97, 122, 698, 0, 1, 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, 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, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 3, 185, 1, 0, 0, 0, 5, 218, 1, 0, 0, 0, 7, 228, 1, 0, 0, 0, 9, 234, 1, 0, 0, 0, 11, 239, 1, 0, 0, 0, 13, 249, 1, 0, 0, 0, 15, 253, 1, 0, 0, 0, 17, 259, 1, 0, 0, 0, 19, 268, 1, 0, 0, 0, 21, 275, 1, 0, 0, 0, 23, 287, 1, 0, 0, 0, 25, 294, 1, 0, 0, 0, 27, 299, 1, 0, 0, 0, 29, 304, 1, 0, 0, 0, 31, 312, 1, 0, 0, 0, 33, 315, 1, 0, 0, 0, 35, 321, 1, 0, 0, 0, 37, 324, 1, 0, 0, 0, 39, 329, 1, 0, 0, 0, 41, 336, 1, 0, 0, 0, 43, 345, 1, 0, 0, 0, 45, 352, 1, 0, 0, 0, 47, 366, 1, 0, 0, 0, 49, 375, 1, 0, 0, 0, 51, 383, 1, 0, 0, 0, 53, 390, 1, 0, 0, 0, 55, 395, 1, 0, 0, 0, 57, 403, 1, 0, 0, 0, 59, 410, 1, 0, 0, 0, 61, 418, 1, 0, 0, 0, 63, 433, 1, 0, 0, 0, 65, 448, 1, 0, 0, 0, 67, 450, 1, 0, 0, 0, 69, 452, 1, 0, 0, 0, 71, 454, 1, 0, 0, 0, 73, 456, 1, 0, 0, 0, 75, 458, 1, 0, 0, 0, 77, 460, 1, 0, 0, 0, 79, 462, 1, 0, 0, 0, 81, 464, 1, 0, 0, 0, 83, 467, 1, 0, 0, 0, 85, 470, 1, 0, 0, 0, 87, 473, 1, 0, 0, 0, 89, 476, 1, 0, 0, 0, 91, 478, 1, 0, 0, 0, 93, 480, 1, 0, 0, 0, 95, 482, 1, 0, 0, 0, 97, 484, 1, 0, 0, 0, 99, 486, 1, 0, 0, 0, 101, 488, 1, 0, 0, 0, 103, 492, 1, 0, 0, 0, 105, 494, 1, 0, 0, 0, 107, 497, 1, 0, 0, 0, 109, 499, 1, 0, 0, 0, 111, 502, 1, 0, 0, 0, 113, 505, 1, 0, 0, 0, 115, 508, 1, 0, 0, 0, 117, 512, 1, 0, 0, 0, 119, 515, 1, 0, 0, 0, 121, 518, 1, 0, 0, 0, 123, 523, 1, 0, 0, 0, 125, 525, 1, 0, 0, 0, 127, 530, 1, 0, 0, 0, 129, 535, 1, 0, 0, 0, 131, 541, 1, 0, 0, 0, 133, 556, 1, 0, 0, 0, 135, 576, 1, 0, 0, 0, 137, 578, 1, 0, 0, 0, 139, 586, 1, 0, 0, 0, 141, 593, 1, 0, 0, 0, 143, 603, 1, 0, 0, 0, 145, 605, 1, 0, 0, 0, 147, 611, 1, 0, 0, 0, 149, 622, 1, 0, 0, 0, 151, 624, 1, 0, 0, 0, 153, 631, 1, 0, 0, 0, 155, 638, 1, 0, 0, 0, 157, 647, 1, 0, 0, 0, 159, 650, 1, 0, 0, 0, 161, 653, 1, 0, 0, 0, 163, 656, 1, 0, 0, 0, 165, 659, 1, 0, 0, 0, 167, 662, 1, 0, 0, 0, 169, 667, 1, 0, 0, 0, 171, 672, 1, 0, 0, 0, 173, 675, 1, 0, 0, 0, 175, 678, 1, 0, 0, 0, 177, 681, 1, 0, 0, 0, 179, 182, 3, 5, 2, 0, 180, 182, 3, 3, 1, 0, 181, 179, 1, 0, 0, 0, 181, 180, 1, 0, 0, 0, 182, 183, 1, 0, 0, 0, 183, 184, 6, 0, 0, 0, 184, 2, 1, 0, 0, 0, 185, 186, 5, 47, 0, 0, 186, 187, 5, 42, 0, 0, 187, 191, 1, 0, 0, 0, 188, 190, 8, 0, 0, 0, 189, 188, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 195, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 196, 5, 42, 0, 0, 195, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 213, 1, 0, 0, 0, 199, 203, 8, 1, 0, 0, 200, 202, 8, 0, 0, 0, 201, 200, 1, 0, 0, 0, 202, 205, 1, 0, 0, 0, 203, 201, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 207, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 206, 208, 5, 42, 0, 0, 207, 206, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 212, 1, 0, 0, 0, 211, 199, 1, 0, 0, 0, 212, 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 216, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 217, 5, 47, 0, 0, 217, 4, 1, 0, 0, 0, 218, 219, 5, 47, 0, 0, 219, 220, 5, 47, 0, 0, 220, 224, 1, 0, 0, 0, 221, 223, 8, 2, 0, 0, 222, 221, 1, 0, 0, 0, 223, 226, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 6, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 227, 229, 7, 3, 0, 0, 228, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 233, 6, 3, 0, 0, 233, 8, 1, 0, 0, 0, 234, 235, 5, 64, 0, 0, 235, 236, 5, 117, 0, 0, 236, 237, 5, 115, 0, 0, 237, 238, 5, 101, 0, 0, 238, 10, 1, 0, 0, 0, 239, 240, 5, 64, 0, 0, 240, 241, 5, 102, 0, 0, 241, 242, 5, 117, 0, 0, 242, 243, 5, 110, 0, 0, 243, 244, 5, 99, 0, 0, 244, 245, 5, 116, 0, 0, 245, 246, 5, 105, 0, 0, 246, 247, 5, 111, 0, 0, 247, 248, 5, 110, 0, 0, 248, 12, 1, 0, 0, 0, 249, 250, 5, 64, 0, 0, 250, 251, 5, 105, 0, 0, 251, 252, 5, 102, 0, 0, 252, 14, 1, 0, 0, 0, 253, 254, 5, 64, 0, 0, 254, 255, 5, 101, 0, 0, 255, 256, 5, 108, 0, 0, 256, 257, 5, 115, 0, 0, 257, 258, 5, 101, 0, 0, 258, 16, 1, 0, 0, 0, 259, 260, 5, 64, 0, 0, 260, 261, 5, 101, 0, 0, 261, 262, 5, 108, 0, 0, 262, 263, 5, 115, 0, 0, 263, 264, 5, 101, 0, 0, 264, 265, 5, 45, 0, 0, 265, 266, 5, 105, 0, 0, 266, 267, 5, 102, 0, 0, 267, 18, 1, 0, 0, 0, 268, 269, 5, 64, 0, 0, 269, 270, 5, 109, 0, 0, 270, 271, 5, 105, 0, 0, 271, 272, 5, 120, 0, 0, 272, 273, 5, 105, 0, 0, 273, 274, 5, 110, 0, 0, 274, 20, 1, 0, 0, 0, 275, 276, 5, 64, 0, 0, 276, 277, 5, 109, 0, 0, 277, 278, 5, 105, 0, 0, 278, 279, 5, 120, 0, 0, 279, 280, 5, 105, 0, 0, 280, 281, 5, 110, 0, 0, 281, 282, 5, 45, 0, 0, 282, 283, 5, 115, 0, 0, 283, 284, 5, 108, 0, 0, 284, 285, 5, 111, 0, 0, 285, 286, 5, 116, 0, 0, 286, 22, 1, 0, 0, 0, 287, 288, 5, 64, 0, 0, 288, 289, 5, 119, 0, 0, 289, 290, 5, 104, 0, 0, 290, 291, 5, 105, 0, 0, 291, 292, 5, 108, 0, 0, 292, 293, 5, 101, 0, 0, 293, 24, 1, 0, 0, 0, 294, 295, 5, 64, 0, 0, 295, 296, 5, 102, 0, 0, 296, 297, 5, 111, 0, 0, 297, 298, 5, 114, 0, 0, 298, 26, 1, 0, 0, 0, 299, 300, 5, 102, 0, 0, 300, 301, 5, 114, 0, 0, 301, 302, 5, 111, 0, 0, 302, 303, 5, 109, 0, 0, 303, 28, 1, 0, 0, 0, 304, 305, 5, 116, 0, 0, 305, 306, 5, 104, 0, 0, 306, 307, 5, 114, 0, 0, 307, 308, 5, 111, 0, 0, 308, 309, 5, 117, 0, 0, 309, 310, 5, 103, 0, 0, 310, 311, 5, 104, 0, 0, 311, 30, 1, 0, 0, 0, 312, 313, 5, 116, 0, 0, 313, 314, 5, 111, 0, 0, 314, 32, 1, 0, 0, 0, 315, 316, 5, 64, 0, 0, 316, 317, 5, 101, 0, 0, 317, 318, 5, 97, 0, 0, 318, 319, 5, 99, 0, 0, 319, 320, 5, 104, 0, 0, 320, 34, 1, 0, 0, 0, 321, 322, 5, 105, 0, 0, 322, 323, 5, 110, 0, 0, 323, 36, 1, 0, 0, 0, 324, 325, 5, 64, 0, 0, 325, 326, 5, 115, 0, 0, 326, 327, 5, 101, 0, 0, 327, 328, 5, 116, 0, 0, 328, 38, 1, 0, 0, 0, 329, 330, 5, 64, 0, 0, 330, 331, 5, 109, 0, 0, 331, 332, 5, 101, 0, 0, 332, 333, 5, 114, 0, 0, 333, 334, 5, 103, 0, 0, 334, 335, 5, 101, 0, 0, 335, 40, 1, 0, 0, 0, 336, 337, 5, 64, 0, 0, 337, 338, 5, 114, 0, 0, 338, 339, 5, 101, 0, 0, 339, 340, 5, 113, 0, 0, 340, 341, 5, 117, 0, 0, 341, 342, 5, 105, 0, 0, 342, 343, 5, 114, 0, 0, 343, 344, 5, 101, 0, 0, 344, 42, 1, 0, 0, 0, 345, 346, 5, 64, 0, 0, 346, 347, 5, 115, 0, 0, 347, 348, 5, 116, 0, 0, 348, 349, 5, 97, 0, 0, 349, 350, 5, 103, 0, 0, 350, 351, 5, 101, 0, 0, 351, 44, 1, 0, 0, 0, 352, 353, 5, 64, 0, 0, 353, 354, 5, 100, 0, 0, 354, 355, 5, 101, 0, 0, 355, 356, 5, 102, 0, 0, 356, 357, 5, 105, 0, 0, 357, 358, 5, 110, 0, 0, 358, 359, 5, 101, 0, 0, 359, 360, 5, 45, 0, 0, 360, 361, 5, 115, 0, 0, 361, 362, 5, 116, 0, 0, 362, 363, 5, 97, 0, 0, 363, 364, 5, 103, 0, 0, 364, 365, 5, 101, 0, 0, 365, 46, 1, 0, 0, 0, 366, 367, 5, 64, 0, 0, 367, 368, 5, 105, 0, 0, 368, 369, 5, 110, 0, 0, 369, 370, 5, 99, 0, 0, 370, 371, 5, 108, 0, 0, 371, 372, 5, 117, 0, 0, 372, 373, 5, 100, 0, 0, 373, 374, 5, 101, 0, 0, 374, 48, 1, 0, 0, 0, 375, 376, 5, 64, 0, 0, 376, 377, 5, 114, 0, 0, 377, 378, 5, 101, 0, 0, 378, 379, 5, 116, 0, 0, 379, 380, 5, 117, 0, 0, 380, 381, 5, 114, 0, 0, 381, 382, 5, 110, 0, 0, 382, 50, 1, 0, 0, 0, 383, 384, 5, 64, 0, 0, 384, 385, 5, 112, 0, 0, 385, 386, 5, 97, 0, 0, 386, 387, 5, 116, 0, 0, 387, 388, 5, 99, 0, 0, 388, 389, 5, 104, 0, 0, 389, 52, 1, 0, 0, 0, 390, 391, 5, 64, 0, 0, 391, 392, 5, 110, 0, 0, 392, 393, 5, 101, 0, 0, 393, 394, 5, 119, 0, 0, 394, 54, 1, 0, 0, 0, 395, 396, 5, 64, 0, 0, 396, 397, 5, 98, 0, 0, 397, 398, 5, 101, 0, 0, 398, 399, 5, 102, 0, 0, 399, 400, 5, 111, 0, 0, 400, 401, 5, 114, 0, 0, 401, 402, 5, 101, 0, 0, 402, 56, 1, 0, 0, 0, 403, 404, 5, 64, 0, 0, 404, 405, 5, 97, 0, 0, 405, 406, 5, 102, 0, 0, 406, 407, 5, 116, 0, 0, 407, 408, 5, 101, 0, 0, 408, 409, 5, 114, 0, 0, 409, 58, 1, 0, 0, 0, 410, 411, 5, 64, 0, 0, 411, 412, 5, 103, 0, 0, 412, 413, 5, 108, 0, 0, 413, 414, 5, 111, 0, 0, 414, 415, 5, 98, 0, 0, 415, 416, 5, 97, 0, 0, 416, 417, 5, 108, 0, 0, 417, 60, 1, 0, 0, 0, 418, 419, 5, 64, 0, 0, 419, 420, 5, 99, 0, 0, 420, 421, 5, 114, 0, 0, 421, 422, 5, 101, 0, 0, 422, 423, 5, 97, 0, 0, 423, 424, 5, 116, 0, 0, 424, 425, 5, 101, 0, 0, 425, 426, 5, 45, 0, 0, 426, 427, 5, 99, 0, 0, 427, 428, 5, 111, 0, 0, 428, 429, 5, 110, 0, 0, 429, 430, 5, 102, 0, 0, 430, 431, 5, 105, 0, 0, 431, 432, 5, 103, 0, 0, 432, 62, 1, 0, 0, 0, 433, 434, 5, 64, 0, 0, 434, 435, 5, 117, 0, 0, 435, 436, 5, 112, 0, 0, 436, 437, 5, 100, 0, 0, 437, 438, 5, 97, 0, 0, 438, 439, 5, 116, 0, 0, 439, 440, 5, 101, 0, 0, 440, 441, 5, 45, 0, 0, 441, 442, 5, 99, 0, 0, 442, 443, 5, 111, 0, 0, 443, 444, 5, 110, 0, 0, 444, 445, 5, 102, 0, 0, 445, 446, 5, 105, 0, 0, 446, 447, 5, 103, 0, 0, 447, 64, 1, 0, 0, 0, 448, 449, 5, 123, 0, 0, 449, 66, 1, 0, 0, 0, 450, 451, 5, 125, 0, 0, 451, 68, 1, 0, 0, 0, 452, 453, 5, 40, 0, 0, 453, 70, 1, 0, 0, 0, 454, 455, 5, 41, 0, 0, 455, 72, 1, 0, 0, 0, 456, 457, 5, 91, 0, 0, 457, 74, 1, 0, 0, 0, 458, 459, 5, 93, 0, 0, 459, 76, 1, 0, 0, 0, 460, 461, 5, 59, 0, 0, 461, 78, 1, 0, 0, 0, 462, 463, 5, 58, 0, 0, 463, 80, 1, 0, 0, 0, 464, 465, 5, 43, 0, 0, 465, 466, 5, 58, 0, 0, 466, 82, 1, 0, 0, 0, 467, 468, 5, 45, 0, 0, 468, 469, 5, 58, 0, 0, 469, 84, 1, 0, 0, 0, 470, 471, 5, 47, 0, 0, 471, 472, 5, 58, 0, 0, 472, 86, 1, 0, 0, 0, 473, 474, 5, 42, 0, 0, 474, 475, 5, 58, 0, 0, 475, 88, 1, 0, 0, 0, 476, 477, 5, 44, 0, 0, 477, 90, 1, 0, 0, 0, 478, 479, 5, 43, 0, 0, 479, 92, 1, 0, 0, 0, 480, 481, 5, 45, 0, 0, 481, 94, 1, 0, 0, 0, 482, 483, 5, 42, 0, 0, 483, 96, 1, 0, 0, 0, 484, 485, 5, 47, 0, 0, 485, 98, 1, 0, 0, 0, 486, 487, 5, 37, 0, 0, 487, 100, 1, 0, 0, 0, 488, 489, 5, 110, 0, 0, 489, 490, 5, 111, 0, 0, 490, 491, 5, 116, 0, 0, 491, 102, 1, 0, 0, 0, 492, 493, 5, 62, 0, 0, 493, 104, 1, 0, 0, 0, 494, 495, 5, 62, 0, 0, 495, 496, 5, 61, 0, 0, 496, 106, 1, 0, 0, 0, 497, 498, 5, 60, 0, 0, 498, 108, 1, 0, 0, 0, 499, 500, 5, 60, 0, 0, 500, 501, 5, 61, 0, 0, 501, 110, 1, 0, 0, 0, 502, 503, 5, 61, 0, 0, 503, 504, 5, 61, 0, 0, 504, 112, 1, 0, 0, 0, 505, 506, 5, 33, 0, 0, 506, 507, 5, 61, 0, 0, 507, 114, 1, 0, 0, 0, 508, 509, 5, 97, 0, 0, 509, 510, 5, 110, 0, 0, 510, 511, 5, 100, 0, 0, 511, 116, 1, 0, 0, 0, 512, 513, 5, 111, 0, 0, 513, 514, 5, 114, 0, 0, 514, 118, 1, 0, 0, 0, 515, 516, 5, 105, 0, 0, 516, 517, 5, 102, 0, 0, 517, 120, 1, 0, 0, 0, 518, 519, 5, 101, 0, 0, 519, 520, 5, 108, 0, 0, 520, 521, 5, 115, 0, 0, 521, 522, 5, 101, 0, 0, 522, 122, 1, 0, 0, 0, 523, 524, 5, 126, 0, 0, 524, 124, 1, 0, 0, 0, 525, 526, 5, 110, 0, 0, 526, 527, 5, 117, 0, 0, 527, 528, 5, 108, 0, 0, 528, 529, 5, 108, 0, 0, 529, 126, 1, 0, 0, 0, 530, 531, 5, 116, 0, 0, 531, 532, 5, 114, 0, 0, 532, 533, 5, 117, 0, 0, 533, 534, 5, 101, 0, 0, 534, 128, 1, 0, 0, 0, 535, 536, 5, 102, 0, 0, 536, 537, 5, 97, 0, 0, 537, 538, 5, 108, 0, 0, 538, 539, 5, 115, 0, 0, 539, 540, 5, 101, 0, 0, 540, 130, 1, 0, 0, 0, 541, 542, 5, 48, 0, 0, 542, 543, 5, 120, 0, 0, 543, 545, 1, 0, 0, 0, 544, 546, 3, 145, 72, 0, 545, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 132, 1, 0, 0, 0, 549, 551, 3, 143, 71, 0, 550, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 557, 1, 0, 0, 0, 554, 557, 3, 139, 69, 0, 555, 557, 3, 141, 70, 0, 556, 550, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 555, 1, 0, 0, 0, 557, 134, 1, 0, 0, 0, 558, 563, 5, 34, 0, 0, 559, 562, 3, 147, 73, 0, 560, 562, 8, 4, 0, 0, 561, 559, 1, 0, 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, 566, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 577, 5, 34, 0, 0, 567, 572, 5, 39, 0, 0, 568, 571, 3, 147, 73, 0, 569, 571, 8, 5, 0, 0, 570, 568, 1, 0, 0, 0, 570, 569, 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, 577, 5, 39, 0, 0, 576, 558, 1, 0, 0, 0, 576, 567, 1, 0, 0, 0, 577, 136, 1, 0, 0, 0, 578, 579, 5, 64, 0, 0, 579, 580, 5, 100, 0, 0, 580, 581, 5, 101, 0, 0, 581, 582, 5, 108, 0, 0, 582, 583, 5, 101, 0, 0, 583, 584, 5, 116, 0, 0, 584, 585, 5, 101, 0, 0, 585, 138, 1, 0, 0, 0, 586, 588, 5, 46, 0, 0, 587, 589, 3, 143, 71, 0, 588, 587, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 140, 1, 0, 0, 0, 592, 594, 3, 143, 71, 0, 593, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 599, 5, 46, 0, 0, 598, 600, 3, 143, 71, 0, 599, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 142, 1, 0, 0, 0, 603, 604, 7, 6, 0, 0, 604, 144, 1, 0, 0, 0, 605, 606, 7, 7, 0, 0, 606, 146, 1, 0, 0, 0, 607, 608, 5, 92, 0, 0, 608, 612, 7, 8, 0, 0, 609, 612, 3, 151, 75, 0, 610, 612, 3, 149, 74, 0, 611, 607, 1, 0, 0, 0, 611, 609, 1, 0, 0, 0, 611, 610, 1, 0, 0, 0, 612, 148, 1, 0, 0, 0, 613, 614, 5, 92, 0, 0, 614, 615, 2, 48, 51, 0, 615, 616, 2, 48, 55, 0, 616, 623, 2, 48, 55, 0, 617, 618, 5, 92, 0, 0, 618, 619, 2, 48, 55, 0, 619, 623, 2, 48, 55, 0, 620, 621, 5, 92, 0, 0, 621, 623, 2, 48, 55, 0, 622, 613, 1, 0, 0, 0, 622, 617, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 150, 1, 0, 0, 0, 624, 625, 5, 92, 0, 0, 625, 626, 5, 117, 0, 0, 626, 627, 3, 145, 72, 0, 627, 628, 3, 145, 72, 0, 628, 629, 3, 145, 72, 0, 629, 630, 3, 145, 72, 0, 630, 152, 1, 0, 0, 0, 631, 635, 7, 9, 0, 0, 632, 634, 7, 10, 0, 0, 633, 632, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 154, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 644, 7, 11, 0, 0, 639, 643, 7, 12, 0, 0, 640, 641, 7, 13, 0, 0, 641, 643, 7, 14, 0, 0, 642, 639, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 156, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 648, 5, 35, 0, 0, 648, 649, 3, 153, 76, 0, 649, 158, 1, 0, 0, 0, 650, 651, 5, 35, 0, 0, 651, 652, 3, 135, 67, 0, 652, 160, 1, 0, 0, 0, 653, 654, 5, 46, 0, 0, 654, 655, 3, 155, 77, 0, 655, 162, 1, 0, 0, 0, 656, 657, 5, 46, 0, 0, 657, 658, 3, 135, 67, 0, 658, 164, 1, 0, 0, 0, 659, 660, 5, 36, 0, 0, 660, 661, 3, 155, 77, 0, 661, 166, 1, 0, 0, 0, 662, 663, 5, 36, 0, 0, 663, 664, 5, 36, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 3, 155, 77, 0, 666, 168, 1, 0, 0, 0, 667, 668, 5, 36, 0, 0, 668, 669, 5, 36, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 3, 135, 67, 0, 671, 170, 1, 0, 0, 0, 672, 673, 5, 58, 0, 0, 673, 674, 3, 155, 77, 0, 674, 172, 1, 0, 0, 0, 675, 676, 5, 37, 0, 0, 676, 677, 3, 155, 77, 0, 677, 174, 1, 0, 0, 0, 678, 679, 5, 37, 0, 0, 679, 680, 3, 135, 67, 0, 680, 176, 1, 0, 0, 0, 681, 682, 3, 155, 77, 0, 682, 178, 1, 0, 0, 0, 25, 0, 181, 191, 197, 203, 209, 213, 224, 230, 547, 552, 556, 561, 563, 570, 572, 576, 590, 595, 601, 611, 622, 635, 642, 644, 1, 6, 0, 0] \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.java b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.java index 92dce2b..2160676 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.java +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/arall/PatchManager/src/PatchManager.SassyPatching/SassyPatchGrammar\sassy_lexer.g4 by ANTLR 4.12.0 +// Generated from C:/Users/arall/PatchManager/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 by ANTLR 4.13.1 import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.Token; @@ -8,25 +8,27 @@ import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.misc.*; -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"}) public class sassy_lexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.12.0", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int COMMENT=1, SPACE=2, USE=3, FUNCTION=4, PRE_IF=5, PRE_ELSE=6, PRE_ELSE_IF=7, - MIXIN=8, WHILE=9, FOR=10, FROM=11, THROUGH=12, TO=13, EACH=14, IN=15, - SET=16, MERGE=17, REQUIRE=18, STAGE=19, DEFINE_STAGE=20, INCLUDE=21, RETURN=22, - PATCH=23, NEW=24, BEFORE=25, AFTER=26, LEFT_BRACE=27, RIGHT_BRACE=28, - LEFT_PAREN=29, RIGHT_PAREN=30, LEFT_BRACKET=31, RIGHT_BRACKET=32, SEMICOLON=33, - COLON=34, COMMA=35, ADD=36, SUBTRACT=37, MULTIPLY=38, DIVIDE=39, MODULUS=40, - NOT=41, GREATER_THAN=42, GREATER_THAN_EQUAL=43, LESSER_THAN=44, LESSER_THAN_EQUAL=45, - EQUAL_TO=46, NOT_EQUAL_TO=47, AND=48, OR=49, IF=50, ELSE=51, WITHOUT=52, - NONE=53, TRUE=54, FALSE=55, HEX_NUMBER=56, NUMBER=57, STRING=58, DELETE=59, - NAME=60, CLASS=61, VARIABLE=62, LOCALVARIABLE=63, RULESET=64, ENSURE=65, - ELEMENT=66; + MIXIN=8, MIXIN_SLOT=9, WHILE=10, FOR=11, FROM=12, THROUGH=13, TO=14, EACH=15, + IN=16, SET=17, MERGE=18, REQUIRE=19, STAGE=20, DEFINE_STAGE=21, INCLUDE=22, + RETURN=23, PATCH=24, NEW=25, BEFORE=26, AFTER=27, GLOBAL=28, CREATE_CONFIG=29, + UPDATE_CONFIG=30, LEFT_BRACE=31, RIGHT_BRACE=32, LEFT_PAREN=33, RIGHT_PAREN=34, + LEFT_BRACKET=35, RIGHT_BRACKET=36, SEMICOLON=37, COLON=38, PLUS_COLON=39, + MINUS_COLON=40, DIVIDE_COLON=41, MULTIPLY_COLON=42, COMMA=43, ADD=44, + SUBTRACT=45, MULTIPLY=46, DIVIDE=47, MODULUS=48, NOT=49, GREATER_THAN=50, + GREATER_THAN_EQUAL=51, LESSER_THAN=52, LESSER_THAN_EQUAL=53, EQUAL_TO=54, + NOT_EQUAL_TO=55, AND=56, OR=57, IF=58, ELSE=59, WITHOUT=60, NONE=61, TRUE=62, + FALSE=63, HEX_NUMBER=64, NUMBER=65, STRING=66, DELETE=67, NAME=68, STRING_NAME=69, + CLASS=70, STRING_CLASS=71, VARIABLE=72, LOCALVARIABLE=73, STRING_LOCALVARIABLE=74, + RULESET=75, ENSURE=76, STRING_ENSURE=77, ELEMENT=78; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -38,17 +40,20 @@ public class sassy_lexer extends Lexer { private static String[] makeRuleNames() { return new String[] { "COMMENT", "MULTILINE_COMMENT", "LINE_COMMENT", "SPACE", "USE", "FUNCTION", - "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", "MIXIN", "WHILE", "FOR", "FROM", - "THROUGH", "TO", "EACH", "IN", "SET", "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", - "INCLUDE", "RETURN", "PATCH", "NEW", "BEFORE", "AFTER", "LEFT_BRACE", - "RIGHT_BRACE", "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", - "SEMICOLON", "COLON", "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", - "MODULUS", "NOT", "GREATER_THAN", "GREATER_THAN_EQUAL", "LESSER_THAN", - "LESSER_THAN_EQUAL", "EQUAL_TO", "NOT_EQUAL_TO", "AND", "OR", "IF", "ELSE", - "WITHOUT", "NONE", "TRUE", "FALSE", "HEX_NUMBER", "NUMBER", "STRING", - "DELETE", "SHORT_NUMBER", "LONG_NUMBER", "DIGIT", "HEX_DIGIT", "ESC_SEQ", - "OCTAL_ESC", "UNICODE_ESC", "IDENTIFIER", "WILDCARDLESS_IDENTIFIER", - "NAME", "CLASS", "VARIABLE", "LOCALVARIABLE", "RULESET", "ENSURE", "ELEMENT" + "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", "MIXIN", "MIXIN_SLOT", "WHILE", + "FOR", "FROM", "THROUGH", "TO", "EACH", "IN", "SET", "MERGE", "REQUIRE", + "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", "PATCH", "NEW", "BEFORE", + "AFTER", "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", + "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", + "COLON", "PLUS_COLON", "MINUS_COLON", "DIVIDE_COLON", "MULTIPLY_COLON", + "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", "MODULUS", "NOT", "GREATER_THAN", + "GREATER_THAN_EQUAL", "LESSER_THAN", "LESSER_THAN_EQUAL", "EQUAL_TO", + "NOT_EQUAL_TO", "AND", "OR", "IF", "ELSE", "WITHOUT", "NONE", "TRUE", + "FALSE", "HEX_NUMBER", "NUMBER", "STRING", "DELETE", "SHORT_NUMBER", + "LONG_NUMBER", "DIGIT", "HEX_DIGIT", "ESC_SEQ", "OCTAL_ESC", "UNICODE_ESC", + "IDENTIFIER", "WILDCARDLESS_IDENTIFIER", "NAME", "STRING_NAME", "CLASS", + "STRING_CLASS", "VARIABLE", "LOCALVARIABLE", "STRING_LOCALVARIABLE", + "RULESET", "ENSURE", "STRING_ENSURE", "ELEMENT" }; } public static final String[] ruleNames = makeRuleNames(); @@ -56,28 +61,32 @@ private static String[] makeRuleNames() { private static String[] makeLiteralNames() { return new String[] { null, null, null, "'@use'", "'@function'", "'@if'", "'@else'", "'@else-if'", - "'@mixin'", "'@while'", "'@for'", "'from'", "'through'", "'to'", "'@each'", - "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", "'@define-stage'", - "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", "'@after'", - "'{'", "'}'", "'('", "')'", "'['", "']'", "';'", "':'", "','", "'+'", - "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", "'<'", "'<='", "'=='", - "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", "'null'", "'true'", - "'false'", null, null, null, "'@delete'" + "'@mixin'", "'@mixin-slot'", "'@while'", "'@for'", "'from'", "'through'", + "'to'", "'@each'", "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", + "'@define-stage'", "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", + "'@after'", "'@global'", "'@create-config'", "'@update-config'", "'{'", + "'}'", "'('", "')'", "'['", "']'", "';'", "':'", "'+:'", "'-:'", "'/:'", + "'*:'", "','", "'+'", "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", + "'<'", "'<='", "'=='", "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", + "'null'", "'true'", "'false'", null, null, null, "'@delete'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { null, "COMMENT", "SPACE", "USE", "FUNCTION", "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", - "MIXIN", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", "IN", "SET", - "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", "PATCH", - "NEW", "BEFORE", "AFTER", "LEFT_BRACE", "RIGHT_BRACE", "LEFT_PAREN", - "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "COLON", - "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", "MODULUS", "NOT", "GREATER_THAN", - "GREATER_THAN_EQUAL", "LESSER_THAN", "LESSER_THAN_EQUAL", "EQUAL_TO", - "NOT_EQUAL_TO", "AND", "OR", "IF", "ELSE", "WITHOUT", "NONE", "TRUE", - "FALSE", "HEX_NUMBER", "NUMBER", "STRING", "DELETE", "NAME", "CLASS", - "VARIABLE", "LOCALVARIABLE", "RULESET", "ENSURE", "ELEMENT" + "MIXIN", "MIXIN_SLOT", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", + "IN", "SET", "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", + "RETURN", "PATCH", "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", + "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", "LEFT_PAREN", "RIGHT_PAREN", + "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "COLON", "PLUS_COLON", + "MINUS_COLON", "DIVIDE_COLON", "MULTIPLY_COLON", "COMMA", "ADD", "SUBTRACT", + "MULTIPLY", "DIVIDE", "MODULUS", "NOT", "GREATER_THAN", "GREATER_THAN_EQUAL", + "LESSER_THAN", "LESSER_THAN_EQUAL", "EQUAL_TO", "NOT_EQUAL_TO", "AND", + "OR", "IF", "ELSE", "WITHOUT", "NONE", "TRUE", "FALSE", "HEX_NUMBER", + "NUMBER", "STRING", "DELETE", "NAME", "STRING_NAME", "CLASS", "STRING_CLASS", + "VARIABLE", "LOCALVARIABLE", "STRING_LOCALVARIABLE", "RULESET", "ENSURE", + "STRING_ENSURE", "ELEMENT" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -139,7 +148,7 @@ public sassy_lexer(CharStream input) { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\u0004\u0000B\u0245\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+ + "\u0004\u0000N\u02ab\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+ "\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+ "\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+ "\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+ @@ -158,344 +167,405 @@ public sassy_lexer(CharStream input) { ":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+ "?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+ "D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+ - "I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0001\u0000\u0001\u0000\u0003"+ - "\u0000\u009e\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0005\u0001\u00a6\b\u0001\n\u0001\f\u0001\u00a9\t\u0001"+ - "\u0001\u0001\u0004\u0001\u00ac\b\u0001\u000b\u0001\f\u0001\u00ad\u0001"+ - "\u0001\u0001\u0001\u0005\u0001\u00b2\b\u0001\n\u0001\f\u0001\u00b5\t\u0001"+ - "\u0001\u0001\u0004\u0001\u00b8\b\u0001\u000b\u0001\f\u0001\u00b9\u0005"+ - "\u0001\u00bc\b\u0001\n\u0001\f\u0001\u00bf\t\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002\u00c7\b\u0002"+ - "\n\u0002\f\u0002\u00ca\t\u0002\u0001\u0003\u0004\u0003\u00cd\b\u0003\u000b"+ - "\u0003\f\u0003\u00ce\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001"+ - "\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001"+ - "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b"+ - "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001"+ - "\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001"+ - "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+ - "\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ - "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ - "\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+ - "\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+ - "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+ - "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001"+ - "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+ - "\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+ - "\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+ - "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001"+ - "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+ - "\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001"+ - "\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0001#"+ - "\u0001#\u0001$\u0001$\u0001%\u0001%\u0001&\u0001&\u0001\'\u0001\'\u0001"+ - "(\u0001(\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ - ",\u0001,\u0001,\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u0001"+ - "/\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u00012\u00012\u0001"+ - "2\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00014\u00015\u0001"+ - "5\u00016\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u0001"+ - "7\u00018\u00018\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u0001"+ - "9\u00049\u01cc\b9\u000b9\f9\u01cd\u0001:\u0004:\u01d1\b:\u000b:\f:\u01d2"+ - "\u0001:\u0001:\u0003:\u01d7\b:\u0001;\u0001;\u0001;\u0005;\u01dc\b;\n"+ - ";\f;\u01df\t;\u0001;\u0001;\u0001;\u0001;\u0005;\u01e5\b;\n;\f;\u01e8"+ - "\t;\u0001;\u0003;\u01eb\b;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001"+ - "<\u0001<\u0001=\u0001=\u0004=\u01f7\b=\u000b=\f=\u01f8\u0001>\u0004>\u01fc"+ - "\b>\u000b>\f>\u01fd\u0001>\u0001>\u0004>\u0202\b>\u000b>\f>\u0203\u0001"+ - "?\u0001?\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0003A\u020e\bA\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0003B\u0219"+ - "\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0005"+ - "D\u0224\bD\nD\fD\u0227\tD\u0001E\u0001E\u0005E\u022b\bE\nE\fE\u022e\t"+ - "E\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001"+ - "I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001"+ - "K\u0001L\u0001L\u0000\u0000M\u0001\u0001\u0003\u0000\u0005\u0000\u0007"+ + "I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+ + "N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+ + "S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+ + "X\u0001\u0000\u0001\u0000\u0003\u0000\u00b6\b\u0000\u0001\u0000\u0001"+ + "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00be"+ + "\b\u0001\n\u0001\f\u0001\u00c1\t\u0001\u0001\u0001\u0004\u0001\u00c4\b"+ + "\u0001\u000b\u0001\f\u0001\u00c5\u0001\u0001\u0001\u0001\u0005\u0001\u00ca"+ + "\b\u0001\n\u0001\f\u0001\u00cd\t\u0001\u0001\u0001\u0004\u0001\u00d0\b"+ + "\u0001\u000b\u0001\f\u0001\u00d1\u0005\u0001\u00d4\b\u0001\n\u0001\f\u0001"+ + "\u00d7\t\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0005\u0002\u00df\b\u0002\n\u0002\f\u0002\u00e2\t\u0002\u0001"+ + "\u0003\u0004\u0003\u00e5\b\u0003\u000b\u0003\f\u0003\u00e6\u0001\u0003"+ + "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ + "\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b"+ + "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001"+ + "\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011"+ + "\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+ + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018"+ + "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+ + "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+ + "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b"+ + "\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c"+ + "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+ + "\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e"+ + "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ + "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ + "\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001"+ + " \u0001!\u0001!\u0001\"\u0001\"\u0001#\u0001#\u0001$\u0001$\u0001%\u0001"+ + "%\u0001&\u0001&\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001"+ + ")\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001,\u0001,\u0001-\u0001"+ + "-\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u00011\u00011\u00012\u0001"+ + "2\u00012\u00012\u00013\u00013\u00014\u00014\u00014\u00015\u00015\u0001"+ + "6\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u00019\u0001"+ + "9\u00019\u00019\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001<\u0001"+ + "<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001"+ + ">\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001"+ + "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0004A\u0222\bA\u000bA\fA\u0223\u0001"+ + "B\u0004B\u0227\bB\u000bB\fB\u0228\u0001B\u0001B\u0003B\u022d\bB\u0001"+ + "C\u0001C\u0001C\u0005C\u0232\bC\nC\fC\u0235\tC\u0001C\u0001C\u0001C\u0001"+ + "C\u0005C\u023b\bC\nC\fC\u023e\tC\u0001C\u0003C\u0241\bC\u0001D\u0001D"+ + "\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001E\u0004E\u024d"+ + "\bE\u000bE\fE\u024e\u0001F\u0004F\u0252\bF\u000bF\fF\u0253\u0001F\u0001"+ + "F\u0004F\u0258\bF\u000bF\fF\u0259\u0001G\u0001G\u0001H\u0001H\u0001I\u0001"+ + "I\u0001I\u0001I\u0003I\u0264\bI\u0001J\u0001J\u0001J\u0001J\u0001J\u0001"+ + "J\u0001J\u0001J\u0001J\u0003J\u026f\bJ\u0001K\u0001K\u0001K\u0001K\u0001"+ + "K\u0001K\u0001K\u0001L\u0001L\u0005L\u027a\bL\nL\fL\u027d\tL\u0001M\u0001"+ + "M\u0001M\u0001M\u0005M\u0283\bM\nM\fM\u0286\tM\u0001N\u0001N\u0001N\u0001"+ + "O\u0001O\u0001O\u0001P\u0001P\u0001P\u0001Q\u0001Q\u0001Q\u0001R\u0001"+ + "R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001T\u0001"+ + "T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001W\u0001W\u0001"+ + "W\u0001X\u0001X\u0000\u0000Y\u0001\u0001\u0003\u0000\u0005\u0000\u0007"+ "\u0002\t\u0003\u000b\u0004\r\u0005\u000f\u0006\u0011\u0007\u0013\b\u0015"+ "\t\u0017\n\u0019\u000b\u001b\f\u001d\r\u001f\u000e!\u000f#\u0010%\u0011"+ "\'\u0012)\u0013+\u0014-\u0015/\u00161\u00173\u00185\u00197\u001a9\u001b"+ ";\u001c=\u001d?\u001eA\u001fC E!G\"I#K$M%O&Q\'S(U)W*Y+[,]-_.a/c0e1g2i"+ - "3k4m5o6q7s8u9w:y;{\u0000}\u0000\u007f\u0000\u0081\u0000\u0083\u0000\u0085"+ - "\u0000\u0087\u0000\u0089\u0000\u008b\u0000\u008d<\u008f=\u0091>\u0093"+ - "?\u0095@\u0097A\u0099B\u0001\u0000\r\u0001\u0000**\u0002\u0000**//\u0002"+ - "\u0000\n\n\r\r\u0003\u0000\t\n\f\r \u0002\u0000\"\"\\\\\u0002\u0000\'"+ - "\'\\\\\u0001\u000009\u0003\u000009AFaf\b\u0000\"\"\'\'\\\\bbffnnrrtt\u0005"+ - "\u0000**??AZ__az\u0007\u0000**-.09??AZ__az\u0003\u0000AZ__az\u0005\u0000"+ - "-.09AZ__az\u0253\u0000\u0001\u0001\u0000\u0000\u0000\u0000\u0007\u0001"+ - "\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000\u000b\u0001\u0000"+ - "\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000"+ - "\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000"+ - "\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000"+ - "\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000"+ - "\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000"+ - "\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000"+ - "%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001"+ - "\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000"+ - "\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u0000"+ - "3\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001"+ - "\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000"+ - "\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000"+ - "A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001"+ - "\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000"+ - "\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000\u0000\u0000"+ - "O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000\u0000S\u0001"+ - "\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000W\u0001\u0000\u0000"+ - "\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001\u0000\u0000\u0000\u0000"+ - "]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000\u0000\u0000a\u0001"+ - "\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000e\u0001\u0000\u0000"+ - "\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001\u0000\u0000\u0000\u0000"+ - "k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\u0000\u0000o\u0001"+ - "\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000s\u0001\u0000\u0000"+ - "\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001\u0000\u0000\u0000\u0000"+ - "y\u0001\u0000\u0000\u0000\u0000\u008d\u0001\u0000\u0000\u0000\u0000\u008f"+ - "\u0001\u0000\u0000\u0000\u0000\u0091\u0001\u0000\u0000\u0000\u0000\u0093"+ - "\u0001\u0000\u0000\u0000\u0000\u0095\u0001\u0000\u0000\u0000\u0000\u0097"+ - "\u0001\u0000\u0000\u0000\u0000\u0099\u0001\u0000\u0000\u0000\u0001\u009d"+ - "\u0001\u0000\u0000\u0000\u0003\u00a1\u0001\u0000\u0000\u0000\u0005\u00c2"+ - "\u0001\u0000\u0000\u0000\u0007\u00cc\u0001\u0000\u0000\u0000\t\u00d2\u0001"+ - "\u0000\u0000\u0000\u000b\u00d7\u0001\u0000\u0000\u0000\r\u00e1\u0001\u0000"+ - "\u0000\u0000\u000f\u00e5\u0001\u0000\u0000\u0000\u0011\u00eb\u0001\u0000"+ - "\u0000\u0000\u0013\u00f4\u0001\u0000\u0000\u0000\u0015\u00fb\u0001\u0000"+ - "\u0000\u0000\u0017\u0102\u0001\u0000\u0000\u0000\u0019\u0107\u0001\u0000"+ - "\u0000\u0000\u001b\u010c\u0001\u0000\u0000\u0000\u001d\u0114\u0001\u0000"+ - "\u0000\u0000\u001f\u0117\u0001\u0000\u0000\u0000!\u011d\u0001\u0000\u0000"+ - "\u0000#\u0120\u0001\u0000\u0000\u0000%\u0125\u0001\u0000\u0000\u0000\'"+ - "\u012c\u0001\u0000\u0000\u0000)\u0135\u0001\u0000\u0000\u0000+\u013c\u0001"+ - "\u0000\u0000\u0000-\u014a\u0001\u0000\u0000\u0000/\u0153\u0001\u0000\u0000"+ - "\u00001\u015b\u0001\u0000\u0000\u00003\u0162\u0001\u0000\u0000\u00005"+ - "\u0167\u0001\u0000\u0000\u00007\u016f\u0001\u0000\u0000\u00009\u0176\u0001"+ - "\u0000\u0000\u0000;\u0178\u0001\u0000\u0000\u0000=\u017a\u0001\u0000\u0000"+ - "\u0000?\u017c\u0001\u0000\u0000\u0000A\u017e\u0001\u0000\u0000\u0000C"+ - "\u0180\u0001\u0000\u0000\u0000E\u0182\u0001\u0000\u0000\u0000G\u0184\u0001"+ - "\u0000\u0000\u0000I\u0186\u0001\u0000\u0000\u0000K\u0188\u0001\u0000\u0000"+ - "\u0000M\u018a\u0001\u0000\u0000\u0000O\u018c\u0001\u0000\u0000\u0000Q"+ - "\u018e\u0001\u0000\u0000\u0000S\u0190\u0001\u0000\u0000\u0000U\u0192\u0001"+ - "\u0000\u0000\u0000W\u0196\u0001\u0000\u0000\u0000Y\u0198\u0001\u0000\u0000"+ - "\u0000[\u019b\u0001\u0000\u0000\u0000]\u019d\u0001\u0000\u0000\u0000_"+ - "\u01a0\u0001\u0000\u0000\u0000a\u01a3\u0001\u0000\u0000\u0000c\u01a6\u0001"+ - "\u0000\u0000\u0000e\u01aa\u0001\u0000\u0000\u0000g\u01ad\u0001\u0000\u0000"+ - "\u0000i\u01b0\u0001\u0000\u0000\u0000k\u01b5\u0001\u0000\u0000\u0000m"+ - "\u01b7\u0001\u0000\u0000\u0000o\u01bc\u0001\u0000\u0000\u0000q\u01c1\u0001"+ - "\u0000\u0000\u0000s\u01c7\u0001\u0000\u0000\u0000u\u01d6\u0001\u0000\u0000"+ - "\u0000w\u01ea\u0001\u0000\u0000\u0000y\u01ec\u0001\u0000\u0000\u0000{"+ - "\u01f4\u0001\u0000\u0000\u0000}\u01fb\u0001\u0000\u0000\u0000\u007f\u0205"+ - "\u0001\u0000\u0000\u0000\u0081\u0207\u0001\u0000\u0000\u0000\u0083\u020d"+ - "\u0001\u0000\u0000\u0000\u0085\u0218\u0001\u0000\u0000\u0000\u0087\u021a"+ - "\u0001\u0000\u0000\u0000\u0089\u0221\u0001\u0000\u0000\u0000\u008b\u0228"+ - "\u0001\u0000\u0000\u0000\u008d\u022f\u0001\u0000\u0000\u0000\u008f\u0232"+ - "\u0001\u0000\u0000\u0000\u0091\u0235\u0001\u0000\u0000\u0000\u0093\u0238"+ - "\u0001\u0000\u0000\u0000\u0095\u023d\u0001\u0000\u0000\u0000\u0097\u0240"+ - "\u0001\u0000\u0000\u0000\u0099\u0243\u0001\u0000\u0000\u0000\u009b\u009e"+ - "\u0003\u0005\u0002\u0000\u009c\u009e\u0003\u0003\u0001\u0000\u009d\u009b"+ - "\u0001\u0000\u0000\u0000\u009d\u009c\u0001\u0000\u0000\u0000\u009e\u009f"+ - "\u0001\u0000\u0000\u0000\u009f\u00a0\u0006\u0000\u0000\u0000\u00a0\u0002"+ - "\u0001\u0000\u0000\u0000\u00a1\u00a2\u0005/\u0000\u0000\u00a2\u00a3\u0005"+ - "*\u0000\u0000\u00a3\u00a7\u0001\u0000\u0000\u0000\u00a4\u00a6\b\u0000"+ - "\u0000\u0000\u00a5\u00a4\u0001\u0000\u0000\u0000\u00a6\u00a9\u0001\u0000"+ - "\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a7\u00a8\u0001\u0000"+ - "\u0000\u0000\u00a8\u00ab\u0001\u0000\u0000\u0000\u00a9\u00a7\u0001\u0000"+ - "\u0000\u0000\u00aa\u00ac\u0005*\u0000\u0000\u00ab\u00aa\u0001\u0000\u0000"+ - "\u0000\u00ac\u00ad\u0001\u0000\u0000\u0000\u00ad\u00ab\u0001\u0000\u0000"+ - "\u0000\u00ad\u00ae\u0001\u0000\u0000\u0000\u00ae\u00bd\u0001\u0000\u0000"+ - "\u0000\u00af\u00b3\b\u0001\u0000\u0000\u00b0\u00b2\b\u0000\u0000\u0000"+ - "\u00b1\u00b0\u0001\u0000\u0000\u0000\u00b2\u00b5\u0001\u0000\u0000\u0000"+ - "\u00b3\u00b1\u0001\u0000\u0000\u0000\u00b3\u00b4\u0001\u0000\u0000\u0000"+ - "\u00b4\u00b7\u0001\u0000\u0000\u0000\u00b5\u00b3\u0001\u0000\u0000\u0000"+ - "\u00b6\u00b8\u0005*\u0000\u0000\u00b7\u00b6\u0001\u0000\u0000\u0000\u00b8"+ - "\u00b9\u0001\u0000\u0000\u0000\u00b9\u00b7\u0001\u0000\u0000\u0000\u00b9"+ - "\u00ba\u0001\u0000\u0000\u0000\u00ba\u00bc\u0001\u0000\u0000\u0000\u00bb"+ - "\u00af\u0001\u0000\u0000\u0000\u00bc\u00bf\u0001\u0000\u0000\u0000\u00bd"+ - "\u00bb\u0001\u0000\u0000\u0000\u00bd\u00be\u0001\u0000\u0000\u0000\u00be"+ - "\u00c0\u0001\u0000\u0000\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00c0"+ - "\u00c1\u0005/\u0000\u0000\u00c1\u0004\u0001\u0000\u0000\u0000\u00c2\u00c3"+ - "\u0005/\u0000\u0000\u00c3\u00c4\u0005/\u0000\u0000\u00c4\u00c8\u0001\u0000"+ - "\u0000\u0000\u00c5\u00c7\b\u0002\u0000\u0000\u00c6\u00c5\u0001\u0000\u0000"+ - "\u0000\u00c7\u00ca\u0001\u0000\u0000\u0000\u00c8\u00c6\u0001\u0000\u0000"+ - "\u0000\u00c8\u00c9\u0001\u0000\u0000\u0000\u00c9\u0006\u0001\u0000\u0000"+ - "\u0000\u00ca\u00c8\u0001\u0000\u0000\u0000\u00cb\u00cd\u0007\u0003\u0000"+ - "\u0000\u00cc\u00cb\u0001\u0000\u0000\u0000\u00cd\u00ce\u0001\u0000\u0000"+ - "\u0000\u00ce\u00cc\u0001\u0000\u0000\u0000\u00ce\u00cf\u0001\u0000\u0000"+ - "\u0000\u00cf\u00d0\u0001\u0000\u0000\u0000\u00d0\u00d1\u0006\u0003\u0000"+ - "\u0000\u00d1\b\u0001\u0000\u0000\u0000\u00d2\u00d3\u0005@\u0000\u0000"+ - "\u00d3\u00d4\u0005u\u0000\u0000\u00d4\u00d5\u0005s\u0000\u0000\u00d5\u00d6"+ - "\u0005e\u0000\u0000\u00d6\n\u0001\u0000\u0000\u0000\u00d7\u00d8\u0005"+ - "@\u0000\u0000\u00d8\u00d9\u0005f\u0000\u0000\u00d9\u00da\u0005u\u0000"+ - "\u0000\u00da\u00db\u0005n\u0000\u0000\u00db\u00dc\u0005c\u0000\u0000\u00dc"+ - "\u00dd\u0005t\u0000\u0000\u00dd\u00de\u0005i\u0000\u0000\u00de\u00df\u0005"+ - "o\u0000\u0000\u00df\u00e0\u0005n\u0000\u0000\u00e0\f\u0001\u0000\u0000"+ - "\u0000\u00e1\u00e2\u0005@\u0000\u0000\u00e2\u00e3\u0005i\u0000\u0000\u00e3"+ - "\u00e4\u0005f\u0000\u0000\u00e4\u000e\u0001\u0000\u0000\u0000\u00e5\u00e6"+ - "\u0005@\u0000\u0000\u00e6\u00e7\u0005e\u0000\u0000\u00e7\u00e8\u0005l"+ - "\u0000\u0000\u00e8\u00e9\u0005s\u0000\u0000\u00e9\u00ea\u0005e\u0000\u0000"+ - "\u00ea\u0010\u0001\u0000\u0000\u0000\u00eb\u00ec\u0005@\u0000\u0000\u00ec"+ - "\u00ed\u0005e\u0000\u0000\u00ed\u00ee\u0005l\u0000\u0000\u00ee\u00ef\u0005"+ - "s\u0000\u0000\u00ef\u00f0\u0005e\u0000\u0000\u00f0\u00f1\u0005-\u0000"+ - "\u0000\u00f1\u00f2\u0005i\u0000\u0000\u00f2\u00f3\u0005f\u0000\u0000\u00f3"+ - "\u0012\u0001\u0000\u0000\u0000\u00f4\u00f5\u0005@\u0000\u0000\u00f5\u00f6"+ - "\u0005m\u0000\u0000\u00f6\u00f7\u0005i\u0000\u0000\u00f7\u00f8\u0005x"+ - "\u0000\u0000\u00f8\u00f9\u0005i\u0000\u0000\u00f9\u00fa\u0005n\u0000\u0000"+ - "\u00fa\u0014\u0001\u0000\u0000\u0000\u00fb\u00fc\u0005@\u0000\u0000\u00fc"+ - "\u00fd\u0005w\u0000\u0000\u00fd\u00fe\u0005h\u0000\u0000\u00fe\u00ff\u0005"+ - "i\u0000\u0000\u00ff\u0100\u0005l\u0000\u0000\u0100\u0101\u0005e\u0000"+ - "\u0000\u0101\u0016\u0001\u0000\u0000\u0000\u0102\u0103\u0005@\u0000\u0000"+ - "\u0103\u0104\u0005f\u0000\u0000\u0104\u0105\u0005o\u0000\u0000\u0105\u0106"+ - "\u0005r\u0000\u0000\u0106\u0018\u0001\u0000\u0000\u0000\u0107\u0108\u0005"+ - "f\u0000\u0000\u0108\u0109\u0005r\u0000\u0000\u0109\u010a\u0005o\u0000"+ - "\u0000\u010a\u010b\u0005m\u0000\u0000\u010b\u001a\u0001\u0000\u0000\u0000"+ - "\u010c\u010d\u0005t\u0000\u0000\u010d\u010e\u0005h\u0000\u0000\u010e\u010f"+ - "\u0005r\u0000\u0000\u010f\u0110\u0005o\u0000\u0000\u0110\u0111\u0005u"+ - "\u0000\u0000\u0111\u0112\u0005g\u0000\u0000\u0112\u0113\u0005h\u0000\u0000"+ - "\u0113\u001c\u0001\u0000\u0000\u0000\u0114\u0115\u0005t\u0000\u0000\u0115"+ - "\u0116\u0005o\u0000\u0000\u0116\u001e\u0001\u0000\u0000\u0000\u0117\u0118"+ - "\u0005@\u0000\u0000\u0118\u0119\u0005e\u0000\u0000\u0119\u011a\u0005a"+ - "\u0000\u0000\u011a\u011b\u0005c\u0000\u0000\u011b\u011c\u0005h\u0000\u0000"+ - "\u011c \u0001\u0000\u0000\u0000\u011d\u011e\u0005i\u0000\u0000\u011e\u011f"+ - "\u0005n\u0000\u0000\u011f\"\u0001\u0000\u0000\u0000\u0120\u0121\u0005"+ - "@\u0000\u0000\u0121\u0122\u0005s\u0000\u0000\u0122\u0123\u0005e\u0000"+ - "\u0000\u0123\u0124\u0005t\u0000\u0000\u0124$\u0001\u0000\u0000\u0000\u0125"+ - "\u0126\u0005@\u0000\u0000\u0126\u0127\u0005m\u0000\u0000\u0127\u0128\u0005"+ - "e\u0000\u0000\u0128\u0129\u0005r\u0000\u0000\u0129\u012a\u0005g\u0000"+ - "\u0000\u012a\u012b\u0005e\u0000\u0000\u012b&\u0001\u0000\u0000\u0000\u012c"+ - "\u012d\u0005@\u0000\u0000\u012d\u012e\u0005r\u0000\u0000\u012e\u012f\u0005"+ - "e\u0000\u0000\u012f\u0130\u0005q\u0000\u0000\u0130\u0131\u0005u\u0000"+ - "\u0000\u0131\u0132\u0005i\u0000\u0000\u0132\u0133\u0005r\u0000\u0000\u0133"+ - "\u0134\u0005e\u0000\u0000\u0134(\u0001\u0000\u0000\u0000\u0135\u0136\u0005"+ - "@\u0000\u0000\u0136\u0137\u0005s\u0000\u0000\u0137\u0138\u0005t\u0000"+ - "\u0000\u0138\u0139\u0005a\u0000\u0000\u0139\u013a\u0005g\u0000\u0000\u013a"+ - "\u013b\u0005e\u0000\u0000\u013b*\u0001\u0000\u0000\u0000\u013c\u013d\u0005"+ - "@\u0000\u0000\u013d\u013e\u0005d\u0000\u0000\u013e\u013f\u0005e\u0000"+ - "\u0000\u013f\u0140\u0005f\u0000\u0000\u0140\u0141\u0005i\u0000\u0000\u0141"+ - "\u0142\u0005n\u0000\u0000\u0142\u0143\u0005e\u0000\u0000\u0143\u0144\u0005"+ - "-\u0000\u0000\u0144\u0145\u0005s\u0000\u0000\u0145\u0146\u0005t\u0000"+ - "\u0000\u0146\u0147\u0005a\u0000\u0000\u0147\u0148\u0005g\u0000\u0000\u0148"+ - "\u0149\u0005e\u0000\u0000\u0149,\u0001\u0000\u0000\u0000\u014a\u014b\u0005"+ - "@\u0000\u0000\u014b\u014c\u0005i\u0000\u0000\u014c\u014d\u0005n\u0000"+ - "\u0000\u014d\u014e\u0005c\u0000\u0000\u014e\u014f\u0005l\u0000\u0000\u014f"+ - "\u0150\u0005u\u0000\u0000\u0150\u0151\u0005d\u0000\u0000\u0151\u0152\u0005"+ - "e\u0000\u0000\u0152.\u0001\u0000\u0000\u0000\u0153\u0154\u0005@\u0000"+ - "\u0000\u0154\u0155\u0005r\u0000\u0000\u0155\u0156\u0005e\u0000\u0000\u0156"+ - "\u0157\u0005t\u0000\u0000\u0157\u0158\u0005u\u0000\u0000\u0158\u0159\u0005"+ - "r\u0000\u0000\u0159\u015a\u0005n\u0000\u0000\u015a0\u0001\u0000\u0000"+ - "\u0000\u015b\u015c\u0005@\u0000\u0000\u015c\u015d\u0005p\u0000\u0000\u015d"+ - "\u015e\u0005a\u0000\u0000\u015e\u015f\u0005t\u0000\u0000\u015f\u0160\u0005"+ - "c\u0000\u0000\u0160\u0161\u0005h\u0000\u0000\u01612\u0001\u0000\u0000"+ - "\u0000\u0162\u0163\u0005@\u0000\u0000\u0163\u0164\u0005n\u0000\u0000\u0164"+ - "\u0165\u0005e\u0000\u0000\u0165\u0166\u0005w\u0000\u0000\u01664\u0001"+ - "\u0000\u0000\u0000\u0167\u0168\u0005@\u0000\u0000\u0168\u0169\u0005b\u0000"+ - "\u0000\u0169\u016a\u0005e\u0000\u0000\u016a\u016b\u0005f\u0000\u0000\u016b"+ - "\u016c\u0005o\u0000\u0000\u016c\u016d\u0005r\u0000\u0000\u016d\u016e\u0005"+ - "e\u0000\u0000\u016e6\u0001\u0000\u0000\u0000\u016f\u0170\u0005@\u0000"+ - "\u0000\u0170\u0171\u0005a\u0000\u0000\u0171\u0172\u0005f\u0000\u0000\u0172"+ - "\u0173\u0005t\u0000\u0000\u0173\u0174\u0005e\u0000\u0000\u0174\u0175\u0005"+ - "r\u0000\u0000\u01758\u0001\u0000\u0000\u0000\u0176\u0177\u0005{\u0000"+ - "\u0000\u0177:\u0001\u0000\u0000\u0000\u0178\u0179\u0005}\u0000\u0000\u0179"+ - "<\u0001\u0000\u0000\u0000\u017a\u017b\u0005(\u0000\u0000\u017b>\u0001"+ - "\u0000\u0000\u0000\u017c\u017d\u0005)\u0000\u0000\u017d@\u0001\u0000\u0000"+ - "\u0000\u017e\u017f\u0005[\u0000\u0000\u017fB\u0001\u0000\u0000\u0000\u0180"+ - "\u0181\u0005]\u0000\u0000\u0181D\u0001\u0000\u0000\u0000\u0182\u0183\u0005"+ - ";\u0000\u0000\u0183F\u0001\u0000\u0000\u0000\u0184\u0185\u0005:\u0000"+ - "\u0000\u0185H\u0001\u0000\u0000\u0000\u0186\u0187\u0005,\u0000\u0000\u0187"+ - "J\u0001\u0000\u0000\u0000\u0188\u0189\u0005+\u0000\u0000\u0189L\u0001"+ - "\u0000\u0000\u0000\u018a\u018b\u0005-\u0000\u0000\u018bN\u0001\u0000\u0000"+ - "\u0000\u018c\u018d\u0005*\u0000\u0000\u018dP\u0001\u0000\u0000\u0000\u018e"+ - "\u018f\u0005/\u0000\u0000\u018fR\u0001\u0000\u0000\u0000\u0190\u0191\u0005"+ - "%\u0000\u0000\u0191T\u0001\u0000\u0000\u0000\u0192\u0193\u0005n\u0000"+ - "\u0000\u0193\u0194\u0005o\u0000\u0000\u0194\u0195\u0005t\u0000\u0000\u0195"+ - "V\u0001\u0000\u0000\u0000\u0196\u0197\u0005>\u0000\u0000\u0197X\u0001"+ - "\u0000\u0000\u0000\u0198\u0199\u0005>\u0000\u0000\u0199\u019a\u0005=\u0000"+ - "\u0000\u019aZ\u0001\u0000\u0000\u0000\u019b\u019c\u0005<\u0000\u0000\u019c"+ - "\\\u0001\u0000\u0000\u0000\u019d\u019e\u0005<\u0000\u0000\u019e\u019f"+ - "\u0005=\u0000\u0000\u019f^\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005="+ - "\u0000\u0000\u01a1\u01a2\u0005=\u0000\u0000\u01a2`\u0001\u0000\u0000\u0000"+ - "\u01a3\u01a4\u0005!\u0000\u0000\u01a4\u01a5\u0005=\u0000\u0000\u01a5b"+ - "\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005a\u0000\u0000\u01a7\u01a8\u0005"+ - "n\u0000\u0000\u01a8\u01a9\u0005d\u0000\u0000\u01a9d\u0001\u0000\u0000"+ - "\u0000\u01aa\u01ab\u0005o\u0000\u0000\u01ab\u01ac\u0005r\u0000\u0000\u01ac"+ - "f\u0001\u0000\u0000\u0000\u01ad\u01ae\u0005i\u0000\u0000\u01ae\u01af\u0005"+ - "f\u0000\u0000\u01afh\u0001\u0000\u0000\u0000\u01b0\u01b1\u0005e\u0000"+ - "\u0000\u01b1\u01b2\u0005l\u0000\u0000\u01b2\u01b3\u0005s\u0000\u0000\u01b3"+ - "\u01b4\u0005e\u0000\u0000\u01b4j\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005"+ - "~\u0000\u0000\u01b6l\u0001\u0000\u0000\u0000\u01b7\u01b8\u0005n\u0000"+ - "\u0000\u01b8\u01b9\u0005u\u0000\u0000\u01b9\u01ba\u0005l\u0000\u0000\u01ba"+ - "\u01bb\u0005l\u0000\u0000\u01bbn\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005"+ - "t\u0000\u0000\u01bd\u01be\u0005r\u0000\u0000\u01be\u01bf\u0005u\u0000"+ - "\u0000\u01bf\u01c0\u0005e\u0000\u0000\u01c0p\u0001\u0000\u0000\u0000\u01c1"+ - "\u01c2\u0005f\u0000\u0000\u01c2\u01c3\u0005a\u0000\u0000\u01c3\u01c4\u0005"+ - "l\u0000\u0000\u01c4\u01c5\u0005s\u0000\u0000\u01c5\u01c6\u0005e\u0000"+ - "\u0000\u01c6r\u0001\u0000\u0000\u0000\u01c7\u01c8\u00050\u0000\u0000\u01c8"+ - "\u01c9\u0005x\u0000\u0000\u01c9\u01cb\u0001\u0000\u0000\u0000\u01ca\u01cc"+ - "\u0003\u0081@\u0000\u01cb\u01ca\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001"+ - "\u0000\u0000\u0000\u01cd\u01cb\u0001\u0000\u0000\u0000\u01cd\u01ce\u0001"+ - "\u0000\u0000\u0000\u01cet\u0001\u0000\u0000\u0000\u01cf\u01d1\u0003\u007f"+ - "?\u0000\u01d0\u01cf\u0001\u0000\u0000\u0000\u01d1\u01d2\u0001\u0000\u0000"+ - "\u0000\u01d2\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000"+ - "\u0000\u01d3\u01d7\u0001\u0000\u0000\u0000\u01d4\u01d7\u0003{=\u0000\u01d5"+ - "\u01d7\u0003}>\u0000\u01d6\u01d0\u0001\u0000\u0000\u0000\u01d6\u01d4\u0001"+ - "\u0000\u0000\u0000\u01d6\u01d5\u0001\u0000\u0000\u0000\u01d7v\u0001\u0000"+ - "\u0000\u0000\u01d8\u01dd\u0005\"\u0000\u0000\u01d9\u01dc\u0003\u0083A"+ - "\u0000\u01da\u01dc\b\u0004\u0000\u0000\u01db\u01d9\u0001\u0000\u0000\u0000"+ - "\u01db\u01da\u0001\u0000\u0000\u0000\u01dc\u01df\u0001\u0000\u0000\u0000"+ - "\u01dd\u01db\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000"+ - "\u01de\u01e0\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000"+ - "\u01e0\u01eb\u0005\"\u0000\u0000\u01e1\u01e6\u0005\'\u0000\u0000\u01e2"+ - "\u01e5\u0003\u0083A\u0000\u01e3\u01e5\b\u0005\u0000\u0000\u01e4\u01e2"+ - "\u0001\u0000\u0000\u0000\u01e4\u01e3\u0001\u0000\u0000\u0000\u01e5\u01e8"+ - "\u0001\u0000\u0000\u0000\u01e6\u01e4\u0001\u0000\u0000\u0000\u01e6\u01e7"+ - "\u0001\u0000\u0000\u0000\u01e7\u01e9\u0001\u0000\u0000\u0000\u01e8\u01e6"+ - "\u0001\u0000\u0000\u0000\u01e9\u01eb\u0005\'\u0000\u0000\u01ea\u01d8\u0001"+ - "\u0000\u0000\u0000\u01ea\u01e1\u0001\u0000\u0000\u0000\u01ebx\u0001\u0000"+ - "\u0000\u0000\u01ec\u01ed\u0005@\u0000\u0000\u01ed\u01ee\u0005d\u0000\u0000"+ - "\u01ee\u01ef\u0005e\u0000\u0000\u01ef\u01f0\u0005l\u0000\u0000\u01f0\u01f1"+ - "\u0005e\u0000\u0000\u01f1\u01f2\u0005t\u0000\u0000\u01f2\u01f3\u0005e"+ - "\u0000\u0000\u01f3z\u0001\u0000\u0000\u0000\u01f4\u01f6\u0005.\u0000\u0000"+ - "\u01f5\u01f7\u0003\u007f?\u0000\u01f6\u01f5\u0001\u0000\u0000\u0000\u01f7"+ - "\u01f8\u0001\u0000\u0000\u0000\u01f8\u01f6\u0001\u0000\u0000\u0000\u01f8"+ - "\u01f9\u0001\u0000\u0000\u0000\u01f9|\u0001\u0000\u0000\u0000\u01fa\u01fc"+ - "\u0003\u007f?\u0000\u01fb\u01fa\u0001\u0000\u0000\u0000\u01fc\u01fd\u0001"+ - "\u0000\u0000\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001"+ - "\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000\u0000\u0000\u01ff\u0201\u0005"+ - ".\u0000\u0000\u0200\u0202\u0003\u007f?\u0000\u0201\u0200\u0001\u0000\u0000"+ - "\u0000\u0202\u0203\u0001\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000"+ - "\u0000\u0203\u0204\u0001\u0000\u0000\u0000\u0204~\u0001\u0000\u0000\u0000"+ - "\u0205\u0206\u0007\u0006\u0000\u0000\u0206\u0080\u0001\u0000\u0000\u0000"+ - "\u0207\u0208\u0007\u0007\u0000\u0000\u0208\u0082\u0001\u0000\u0000\u0000"+ - "\u0209\u020a\u0005\\\u0000\u0000\u020a\u020e\u0007\b\u0000\u0000\u020b"+ - "\u020e\u0003\u0087C\u0000\u020c\u020e\u0003\u0085B\u0000\u020d\u0209\u0001"+ - "\u0000\u0000\u0000\u020d\u020b\u0001\u0000\u0000\u0000\u020d\u020c\u0001"+ - "\u0000\u0000\u0000\u020e\u0084\u0001\u0000\u0000\u0000\u020f\u0210\u0005"+ - "\\\u0000\u0000\u0210\u0211\u000203\u0000\u0211\u0212\u000207\u0000\u0212"+ - "\u0219\u000207\u0000\u0213\u0214\u0005\\\u0000\u0000\u0214\u0215\u0002"+ - "07\u0000\u0215\u0219\u000207\u0000\u0216\u0217\u0005\\\u0000\u0000\u0217"+ - "\u0219\u000207\u0000\u0218\u020f\u0001\u0000\u0000\u0000\u0218\u0213\u0001"+ - "\u0000\u0000\u0000\u0218\u0216\u0001\u0000\u0000\u0000\u0219\u0086\u0001"+ - "\u0000\u0000\u0000\u021a\u021b\u0005\\\u0000\u0000\u021b\u021c\u0005u"+ - "\u0000\u0000\u021c\u021d\u0003\u0081@\u0000\u021d\u021e\u0003\u0081@\u0000"+ - "\u021e\u021f\u0003\u0081@\u0000\u021f\u0220\u0003\u0081@\u0000\u0220\u0088"+ - "\u0001\u0000\u0000\u0000\u0221\u0225\u0007\t\u0000\u0000\u0222\u0224\u0007"+ - "\n\u0000\u0000\u0223\u0222\u0001\u0000\u0000\u0000\u0224\u0227\u0001\u0000"+ - "\u0000\u0000\u0225\u0223\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000"+ - "\u0000\u0000\u0226\u008a\u0001\u0000\u0000\u0000\u0227\u0225\u0001\u0000"+ - "\u0000\u0000\u0228\u022c\u0007\u000b\u0000\u0000\u0229\u022b\u0007\f\u0000"+ - "\u0000\u022a\u0229\u0001\u0000\u0000\u0000\u022b\u022e\u0001\u0000\u0000"+ - "\u0000\u022c\u022a\u0001\u0000\u0000\u0000\u022c\u022d\u0001\u0000\u0000"+ - "\u0000\u022d\u008c\u0001\u0000\u0000\u0000\u022e\u022c\u0001\u0000\u0000"+ - "\u0000\u022f\u0230\u0005#\u0000\u0000\u0230\u0231\u0003\u0089D\u0000\u0231"+ - "\u008e\u0001\u0000\u0000\u0000\u0232\u0233\u0005.\u0000\u0000\u0233\u0234"+ - "\u0003\u008bE\u0000\u0234\u0090\u0001\u0000\u0000\u0000\u0235\u0236\u0005"+ - "$\u0000\u0000\u0236\u0237\u0003\u008bE\u0000\u0237\u0092\u0001\u0000\u0000"+ - "\u0000\u0238\u0239\u0005$\u0000\u0000\u0239\u023a\u0005$\u0000\u0000\u023a"+ - "\u023b\u0001\u0000\u0000\u0000\u023b\u023c\u0003\u008bE\u0000\u023c\u0094"+ - "\u0001\u0000\u0000\u0000\u023d\u023e\u0005:\u0000\u0000\u023e\u023f\u0003"+ - "\u008bE\u0000\u023f\u0096\u0001\u0000\u0000\u0000\u0240\u0241\u0005%\u0000"+ - "\u0000\u0241\u0242\u0003\u008bE\u0000\u0242\u0098\u0001\u0000\u0000\u0000"+ - "\u0243\u0244\u0003\u008bE\u0000\u0244\u009a\u0001\u0000\u0000\u0000\u0018"+ - "\u0000\u009d\u00a7\u00ad\u00b3\u00b9\u00bd\u00c8\u00ce\u01cd\u01d2\u01d6"+ - "\u01db\u01dd\u01e4\u01e6\u01ea\u01f8\u01fd\u0203\u020d\u0218\u0225\u022c"+ - "\u0001\u0006\u0000\u0000"; + "3k4m5o6q7s8u9w:y;{<}=\u007f>\u0081?\u0083@\u0085A\u0087B\u0089C\u008b"+ + "\u0000\u008d\u0000\u008f\u0000\u0091\u0000\u0093\u0000\u0095\u0000\u0097"+ + "\u0000\u0099\u0000\u009b\u0000\u009dD\u009fE\u00a1F\u00a3G\u00a5H\u00a7"+ + "I\u00a9J\u00abK\u00adL\u00afM\u00b1N\u0001\u0000\u000f\u0001\u0000**\u0002"+ + "\u0000**//\u0002\u0000\n\n\r\r\u0003\u0000\t\n\f\r \u0002\u0000\"\"\\"+ + "\\\u0002\u0000\'\'\\\\\u0001\u000009\u0003\u000009AFaf\b\u0000\"\"\'\'"+ + "\\\\bbffnnrrtt\u0006\u0000**09??AZ__az\u0007\u0000**-.09??AZ__az\u0003"+ + "\u0000AZ__az\u0005\u0000..09AZ__az\u0001\u0000--\u0002\u0000AZaz\u02ba"+ + "\u0000\u0001\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\u0000"+ + "\u0000\t\u0001\u0000\u0000\u0000\u0000\u000b\u0001\u0000\u0000\u0000\u0000"+ + "\r\u0001\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\u0000\u0000\u0011"+ + "\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015"+ + "\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019"+ + "\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d"+ + "\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001"+ + "\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000"+ + "\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000"+ + "\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/"+ + "\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000"+ + "\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000"+ + "\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000="+ + "\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000"+ + "\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000"+ + "\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K"+ + "\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000\u0000\u0000O\u0001\u0000"+ + "\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000\u0000S\u0001\u0000\u0000\u0000"+ + "\u0000U\u0001\u0000\u0000\u0000\u0000W\u0001\u0000\u0000\u0000\u0000Y"+ + "\u0001\u0000\u0000\u0000\u0000[\u0001\u0000\u0000\u0000\u0000]\u0001\u0000"+ + "\u0000\u0000\u0000_\u0001\u0000\u0000\u0000\u0000a\u0001\u0000\u0000\u0000"+ + "\u0000c\u0001\u0000\u0000\u0000\u0000e\u0001\u0000\u0000\u0000\u0000g"+ + "\u0001\u0000\u0000\u0000\u0000i\u0001\u0000\u0000\u0000\u0000k\u0001\u0000"+ + "\u0000\u0000\u0000m\u0001\u0000\u0000\u0000\u0000o\u0001\u0000\u0000\u0000"+ + "\u0000q\u0001\u0000\u0000\u0000\u0000s\u0001\u0000\u0000\u0000\u0000u"+ + "\u0001\u0000\u0000\u0000\u0000w\u0001\u0000\u0000\u0000\u0000y\u0001\u0000"+ + "\u0000\u0000\u0000{\u0001\u0000\u0000\u0000\u0000}\u0001\u0000\u0000\u0000"+ + "\u0000\u007f\u0001\u0000\u0000\u0000\u0000\u0081\u0001\u0000\u0000\u0000"+ + "\u0000\u0083\u0001\u0000\u0000\u0000\u0000\u0085\u0001\u0000\u0000\u0000"+ + "\u0000\u0087\u0001\u0000\u0000\u0000\u0000\u0089\u0001\u0000\u0000\u0000"+ + "\u0000\u009d\u0001\u0000\u0000\u0000\u0000\u009f\u0001\u0000\u0000\u0000"+ + "\u0000\u00a1\u0001\u0000\u0000\u0000\u0000\u00a3\u0001\u0000\u0000\u0000"+ + "\u0000\u00a5\u0001\u0000\u0000\u0000\u0000\u00a7\u0001\u0000\u0000\u0000"+ + "\u0000\u00a9\u0001\u0000\u0000\u0000\u0000\u00ab\u0001\u0000\u0000\u0000"+ + "\u0000\u00ad\u0001\u0000\u0000\u0000\u0000\u00af\u0001\u0000\u0000\u0000"+ + "\u0000\u00b1\u0001\u0000\u0000\u0000\u0001\u00b5\u0001\u0000\u0000\u0000"+ + "\u0003\u00b9\u0001\u0000\u0000\u0000\u0005\u00da\u0001\u0000\u0000\u0000"+ + "\u0007\u00e4\u0001\u0000\u0000\u0000\t\u00ea\u0001\u0000\u0000\u0000\u000b"+ + "\u00ef\u0001\u0000\u0000\u0000\r\u00f9\u0001\u0000\u0000\u0000\u000f\u00fd"+ + "\u0001\u0000\u0000\u0000\u0011\u0103\u0001\u0000\u0000\u0000\u0013\u010c"+ + "\u0001\u0000\u0000\u0000\u0015\u0113\u0001\u0000\u0000\u0000\u0017\u011f"+ + "\u0001\u0000\u0000\u0000\u0019\u0126\u0001\u0000\u0000\u0000\u001b\u012b"+ + "\u0001\u0000\u0000\u0000\u001d\u0130\u0001\u0000\u0000\u0000\u001f\u0138"+ + "\u0001\u0000\u0000\u0000!\u013b\u0001\u0000\u0000\u0000#\u0141\u0001\u0000"+ + "\u0000\u0000%\u0144\u0001\u0000\u0000\u0000\'\u0149\u0001\u0000\u0000"+ + "\u0000)\u0150\u0001\u0000\u0000\u0000+\u0159\u0001\u0000\u0000\u0000-"+ + "\u0160\u0001\u0000\u0000\u0000/\u016e\u0001\u0000\u0000\u00001\u0177\u0001"+ + "\u0000\u0000\u00003\u017f\u0001\u0000\u0000\u00005\u0186\u0001\u0000\u0000"+ + "\u00007\u018b\u0001\u0000\u0000\u00009\u0193\u0001\u0000\u0000\u0000;"+ + "\u019a\u0001\u0000\u0000\u0000=\u01a2\u0001\u0000\u0000\u0000?\u01b1\u0001"+ + "\u0000\u0000\u0000A\u01c0\u0001\u0000\u0000\u0000C\u01c2\u0001\u0000\u0000"+ + "\u0000E\u01c4\u0001\u0000\u0000\u0000G\u01c6\u0001\u0000\u0000\u0000I"+ + "\u01c8\u0001\u0000\u0000\u0000K\u01ca\u0001\u0000\u0000\u0000M\u01cc\u0001"+ + "\u0000\u0000\u0000O\u01ce\u0001\u0000\u0000\u0000Q\u01d0\u0001\u0000\u0000"+ + "\u0000S\u01d3\u0001\u0000\u0000\u0000U\u01d6\u0001\u0000\u0000\u0000W"+ + "\u01d9\u0001\u0000\u0000\u0000Y\u01dc\u0001\u0000\u0000\u0000[\u01de\u0001"+ + "\u0000\u0000\u0000]\u01e0\u0001\u0000\u0000\u0000_\u01e2\u0001\u0000\u0000"+ + "\u0000a\u01e4\u0001\u0000\u0000\u0000c\u01e6\u0001\u0000\u0000\u0000e"+ + "\u01e8\u0001\u0000\u0000\u0000g\u01ec\u0001\u0000\u0000\u0000i\u01ee\u0001"+ + "\u0000\u0000\u0000k\u01f1\u0001\u0000\u0000\u0000m\u01f3\u0001\u0000\u0000"+ + "\u0000o\u01f6\u0001\u0000\u0000\u0000q\u01f9\u0001\u0000\u0000\u0000s"+ + "\u01fc\u0001\u0000\u0000\u0000u\u0200\u0001\u0000\u0000\u0000w\u0203\u0001"+ + "\u0000\u0000\u0000y\u0206\u0001\u0000\u0000\u0000{\u020b\u0001\u0000\u0000"+ + "\u0000}\u020d\u0001\u0000\u0000\u0000\u007f\u0212\u0001\u0000\u0000\u0000"+ + "\u0081\u0217\u0001\u0000\u0000\u0000\u0083\u021d\u0001\u0000\u0000\u0000"+ + "\u0085\u022c\u0001\u0000\u0000\u0000\u0087\u0240\u0001\u0000\u0000\u0000"+ + "\u0089\u0242\u0001\u0000\u0000\u0000\u008b\u024a\u0001\u0000\u0000\u0000"+ + "\u008d\u0251\u0001\u0000\u0000\u0000\u008f\u025b\u0001\u0000\u0000\u0000"+ + "\u0091\u025d\u0001\u0000\u0000\u0000\u0093\u0263\u0001\u0000\u0000\u0000"+ + "\u0095\u026e\u0001\u0000\u0000\u0000\u0097\u0270\u0001\u0000\u0000\u0000"+ + "\u0099\u0277\u0001\u0000\u0000\u0000\u009b\u027e\u0001\u0000\u0000\u0000"+ + "\u009d\u0287\u0001\u0000\u0000\u0000\u009f\u028a\u0001\u0000\u0000\u0000"+ + "\u00a1\u028d\u0001\u0000\u0000\u0000\u00a3\u0290\u0001\u0000\u0000\u0000"+ + "\u00a5\u0293\u0001\u0000\u0000\u0000\u00a7\u0296\u0001\u0000\u0000\u0000"+ + "\u00a9\u029b\u0001\u0000\u0000\u0000\u00ab\u02a0\u0001\u0000\u0000\u0000"+ + "\u00ad\u02a3\u0001\u0000\u0000\u0000\u00af\u02a6\u0001\u0000\u0000\u0000"+ + "\u00b1\u02a9\u0001\u0000\u0000\u0000\u00b3\u00b6\u0003\u0005\u0002\u0000"+ + "\u00b4\u00b6\u0003\u0003\u0001\u0000\u00b5\u00b3\u0001\u0000\u0000\u0000"+ + "\u00b5\u00b4\u0001\u0000\u0000\u0000\u00b6\u00b7\u0001\u0000\u0000\u0000"+ + "\u00b7\u00b8\u0006\u0000\u0000\u0000\u00b8\u0002\u0001\u0000\u0000\u0000"+ + "\u00b9\u00ba\u0005/\u0000\u0000\u00ba\u00bb\u0005*\u0000\u0000\u00bb\u00bf"+ + "\u0001\u0000\u0000\u0000\u00bc\u00be\b\u0000\u0000\u0000\u00bd\u00bc\u0001"+ + "\u0000\u0000\u0000\u00be\u00c1\u0001\u0000\u0000\u0000\u00bf\u00bd\u0001"+ + "\u0000\u0000\u0000\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0\u00c3\u0001"+ + "\u0000\u0000\u0000\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c2\u00c4\u0005"+ + "*\u0000\u0000\u00c3\u00c2\u0001\u0000\u0000\u0000\u00c4\u00c5\u0001\u0000"+ + "\u0000\u0000\u00c5\u00c3\u0001\u0000\u0000\u0000\u00c5\u00c6\u0001\u0000"+ + "\u0000\u0000\u00c6\u00d5\u0001\u0000\u0000\u0000\u00c7\u00cb\b\u0001\u0000"+ + "\u0000\u00c8\u00ca\b\u0000\u0000\u0000\u00c9\u00c8\u0001\u0000\u0000\u0000"+ + "\u00ca\u00cd\u0001\u0000\u0000\u0000\u00cb\u00c9\u0001\u0000\u0000\u0000"+ + "\u00cb\u00cc\u0001\u0000\u0000\u0000\u00cc\u00cf\u0001\u0000\u0000\u0000"+ + "\u00cd\u00cb\u0001\u0000\u0000\u0000\u00ce\u00d0\u0005*\u0000\u0000\u00cf"+ + "\u00ce\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1"+ + "\u00cf\u0001\u0000\u0000\u0000\u00d1\u00d2\u0001\u0000\u0000\u0000\u00d2"+ + "\u00d4\u0001\u0000\u0000\u0000\u00d3\u00c7\u0001\u0000\u0000\u0000\u00d4"+ + "\u00d7\u0001\u0000\u0000\u0000\u00d5\u00d3\u0001\u0000\u0000\u0000\u00d5"+ + "\u00d6\u0001\u0000\u0000\u0000\u00d6\u00d8\u0001\u0000\u0000\u0000\u00d7"+ + "\u00d5\u0001\u0000\u0000\u0000\u00d8\u00d9\u0005/\u0000\u0000\u00d9\u0004"+ + "\u0001\u0000\u0000\u0000\u00da\u00db\u0005/\u0000\u0000\u00db\u00dc\u0005"+ + "/\u0000\u0000\u00dc\u00e0\u0001\u0000\u0000\u0000\u00dd\u00df\b\u0002"+ + "\u0000\u0000\u00de\u00dd\u0001\u0000\u0000\u0000\u00df\u00e2\u0001\u0000"+ + "\u0000\u0000\u00e0\u00de\u0001\u0000\u0000\u0000\u00e0\u00e1\u0001\u0000"+ + "\u0000\u0000\u00e1\u0006\u0001\u0000\u0000\u0000\u00e2\u00e0\u0001\u0000"+ + "\u0000\u0000\u00e3\u00e5\u0007\u0003\u0000\u0000\u00e4\u00e3\u0001\u0000"+ + "\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6\u00e4\u0001\u0000"+ + "\u0000\u0000\u00e6\u00e7\u0001\u0000\u0000\u0000\u00e7\u00e8\u0001\u0000"+ + "\u0000\u0000\u00e8\u00e9\u0006\u0003\u0000\u0000\u00e9\b\u0001\u0000\u0000"+ + "\u0000\u00ea\u00eb\u0005@\u0000\u0000\u00eb\u00ec\u0005u\u0000\u0000\u00ec"+ + "\u00ed\u0005s\u0000\u0000\u00ed\u00ee\u0005e\u0000\u0000\u00ee\n\u0001"+ + "\u0000\u0000\u0000\u00ef\u00f0\u0005@\u0000\u0000\u00f0\u00f1\u0005f\u0000"+ + "\u0000\u00f1\u00f2\u0005u\u0000\u0000\u00f2\u00f3\u0005n\u0000\u0000\u00f3"+ + "\u00f4\u0005c\u0000\u0000\u00f4\u00f5\u0005t\u0000\u0000\u00f5\u00f6\u0005"+ + "i\u0000\u0000\u00f6\u00f7\u0005o\u0000\u0000\u00f7\u00f8\u0005n\u0000"+ + "\u0000\u00f8\f\u0001\u0000\u0000\u0000\u00f9\u00fa\u0005@\u0000\u0000"+ + "\u00fa\u00fb\u0005i\u0000\u0000\u00fb\u00fc\u0005f\u0000\u0000\u00fc\u000e"+ + "\u0001\u0000\u0000\u0000\u00fd\u00fe\u0005@\u0000\u0000\u00fe\u00ff\u0005"+ + "e\u0000\u0000\u00ff\u0100\u0005l\u0000\u0000\u0100\u0101\u0005s\u0000"+ + "\u0000\u0101\u0102\u0005e\u0000\u0000\u0102\u0010\u0001\u0000\u0000\u0000"+ + "\u0103\u0104\u0005@\u0000\u0000\u0104\u0105\u0005e\u0000\u0000\u0105\u0106"+ + "\u0005l\u0000\u0000\u0106\u0107\u0005s\u0000\u0000\u0107\u0108\u0005e"+ + "\u0000\u0000\u0108\u0109\u0005-\u0000\u0000\u0109\u010a\u0005i\u0000\u0000"+ + "\u010a\u010b\u0005f\u0000\u0000\u010b\u0012\u0001\u0000\u0000\u0000\u010c"+ + "\u010d\u0005@\u0000\u0000\u010d\u010e\u0005m\u0000\u0000\u010e\u010f\u0005"+ + "i\u0000\u0000\u010f\u0110\u0005x\u0000\u0000\u0110\u0111\u0005i\u0000"+ + "\u0000\u0111\u0112\u0005n\u0000\u0000\u0112\u0014\u0001\u0000\u0000\u0000"+ + "\u0113\u0114\u0005@\u0000\u0000\u0114\u0115\u0005m\u0000\u0000\u0115\u0116"+ + "\u0005i\u0000\u0000\u0116\u0117\u0005x\u0000\u0000\u0117\u0118\u0005i"+ + "\u0000\u0000\u0118\u0119\u0005n\u0000\u0000\u0119\u011a\u0005-\u0000\u0000"+ + "\u011a\u011b\u0005s\u0000\u0000\u011b\u011c\u0005l\u0000\u0000\u011c\u011d"+ + "\u0005o\u0000\u0000\u011d\u011e\u0005t\u0000\u0000\u011e\u0016\u0001\u0000"+ + "\u0000\u0000\u011f\u0120\u0005@\u0000\u0000\u0120\u0121\u0005w\u0000\u0000"+ + "\u0121\u0122\u0005h\u0000\u0000\u0122\u0123\u0005i\u0000\u0000\u0123\u0124"+ + "\u0005l\u0000\u0000\u0124\u0125\u0005e\u0000\u0000\u0125\u0018\u0001\u0000"+ + "\u0000\u0000\u0126\u0127\u0005@\u0000\u0000\u0127\u0128\u0005f\u0000\u0000"+ + "\u0128\u0129\u0005o\u0000\u0000\u0129\u012a\u0005r\u0000\u0000\u012a\u001a"+ + "\u0001\u0000\u0000\u0000\u012b\u012c\u0005f\u0000\u0000\u012c\u012d\u0005"+ + "r\u0000\u0000\u012d\u012e\u0005o\u0000\u0000\u012e\u012f\u0005m\u0000"+ + "\u0000\u012f\u001c\u0001\u0000\u0000\u0000\u0130\u0131\u0005t\u0000\u0000"+ + "\u0131\u0132\u0005h\u0000\u0000\u0132\u0133\u0005r\u0000\u0000\u0133\u0134"+ + "\u0005o\u0000\u0000\u0134\u0135\u0005u\u0000\u0000\u0135\u0136\u0005g"+ + "\u0000\u0000\u0136\u0137\u0005h\u0000\u0000\u0137\u001e\u0001\u0000\u0000"+ + "\u0000\u0138\u0139\u0005t\u0000\u0000\u0139\u013a\u0005o\u0000\u0000\u013a"+ + " \u0001\u0000\u0000\u0000\u013b\u013c\u0005@\u0000\u0000\u013c\u013d\u0005"+ + "e\u0000\u0000\u013d\u013e\u0005a\u0000\u0000\u013e\u013f\u0005c\u0000"+ + "\u0000\u013f\u0140\u0005h\u0000\u0000\u0140\"\u0001\u0000\u0000\u0000"+ + "\u0141\u0142\u0005i\u0000\u0000\u0142\u0143\u0005n\u0000\u0000\u0143$"+ + "\u0001\u0000\u0000\u0000\u0144\u0145\u0005@\u0000\u0000\u0145\u0146\u0005"+ + "s\u0000\u0000\u0146\u0147\u0005e\u0000\u0000\u0147\u0148\u0005t\u0000"+ + "\u0000\u0148&\u0001\u0000\u0000\u0000\u0149\u014a\u0005@\u0000\u0000\u014a"+ + "\u014b\u0005m\u0000\u0000\u014b\u014c\u0005e\u0000\u0000\u014c\u014d\u0005"+ + "r\u0000\u0000\u014d\u014e\u0005g\u0000\u0000\u014e\u014f\u0005e\u0000"+ + "\u0000\u014f(\u0001\u0000\u0000\u0000\u0150\u0151\u0005@\u0000\u0000\u0151"+ + "\u0152\u0005r\u0000\u0000\u0152\u0153\u0005e\u0000\u0000\u0153\u0154\u0005"+ + "q\u0000\u0000\u0154\u0155\u0005u\u0000\u0000\u0155\u0156\u0005i\u0000"+ + "\u0000\u0156\u0157\u0005r\u0000\u0000\u0157\u0158\u0005e\u0000\u0000\u0158"+ + "*\u0001\u0000\u0000\u0000\u0159\u015a\u0005@\u0000\u0000\u015a\u015b\u0005"+ + "s\u0000\u0000\u015b\u015c\u0005t\u0000\u0000\u015c\u015d\u0005a\u0000"+ + "\u0000\u015d\u015e\u0005g\u0000\u0000\u015e\u015f\u0005e\u0000\u0000\u015f"+ + ",\u0001\u0000\u0000\u0000\u0160\u0161\u0005@\u0000\u0000\u0161\u0162\u0005"+ + "d\u0000\u0000\u0162\u0163\u0005e\u0000\u0000\u0163\u0164\u0005f\u0000"+ + "\u0000\u0164\u0165\u0005i\u0000\u0000\u0165\u0166\u0005n\u0000\u0000\u0166"+ + "\u0167\u0005e\u0000\u0000\u0167\u0168\u0005-\u0000\u0000\u0168\u0169\u0005"+ + "s\u0000\u0000\u0169\u016a\u0005t\u0000\u0000\u016a\u016b\u0005a\u0000"+ + "\u0000\u016b\u016c\u0005g\u0000\u0000\u016c\u016d\u0005e\u0000\u0000\u016d"+ + ".\u0001\u0000\u0000\u0000\u016e\u016f\u0005@\u0000\u0000\u016f\u0170\u0005"+ + "i\u0000\u0000\u0170\u0171\u0005n\u0000\u0000\u0171\u0172\u0005c\u0000"+ + "\u0000\u0172\u0173\u0005l\u0000\u0000\u0173\u0174\u0005u\u0000\u0000\u0174"+ + "\u0175\u0005d\u0000\u0000\u0175\u0176\u0005e\u0000\u0000\u01760\u0001"+ + "\u0000\u0000\u0000\u0177\u0178\u0005@\u0000\u0000\u0178\u0179\u0005r\u0000"+ + "\u0000\u0179\u017a\u0005e\u0000\u0000\u017a\u017b\u0005t\u0000\u0000\u017b"+ + "\u017c\u0005u\u0000\u0000\u017c\u017d\u0005r\u0000\u0000\u017d\u017e\u0005"+ + "n\u0000\u0000\u017e2\u0001\u0000\u0000\u0000\u017f\u0180\u0005@\u0000"+ + "\u0000\u0180\u0181\u0005p\u0000\u0000\u0181\u0182\u0005a\u0000\u0000\u0182"+ + "\u0183\u0005t\u0000\u0000\u0183\u0184\u0005c\u0000\u0000\u0184\u0185\u0005"+ + "h\u0000\u0000\u01854\u0001\u0000\u0000\u0000\u0186\u0187\u0005@\u0000"+ + "\u0000\u0187\u0188\u0005n\u0000\u0000\u0188\u0189\u0005e\u0000\u0000\u0189"+ + "\u018a\u0005w\u0000\u0000\u018a6\u0001\u0000\u0000\u0000\u018b\u018c\u0005"+ + "@\u0000\u0000\u018c\u018d\u0005b\u0000\u0000\u018d\u018e\u0005e\u0000"+ + "\u0000\u018e\u018f\u0005f\u0000\u0000\u018f\u0190\u0005o\u0000\u0000\u0190"+ + "\u0191\u0005r\u0000\u0000\u0191\u0192\u0005e\u0000\u0000\u01928\u0001"+ + "\u0000\u0000\u0000\u0193\u0194\u0005@\u0000\u0000\u0194\u0195\u0005a\u0000"+ + "\u0000\u0195\u0196\u0005f\u0000\u0000\u0196\u0197\u0005t\u0000\u0000\u0197"+ + "\u0198\u0005e\u0000\u0000\u0198\u0199\u0005r\u0000\u0000\u0199:\u0001"+ + "\u0000\u0000\u0000\u019a\u019b\u0005@\u0000\u0000\u019b\u019c\u0005g\u0000"+ + "\u0000\u019c\u019d\u0005l\u0000\u0000\u019d\u019e\u0005o\u0000\u0000\u019e"+ + "\u019f\u0005b\u0000\u0000\u019f\u01a0\u0005a\u0000\u0000\u01a0\u01a1\u0005"+ + "l\u0000\u0000\u01a1<\u0001\u0000\u0000\u0000\u01a2\u01a3\u0005@\u0000"+ + "\u0000\u01a3\u01a4\u0005c\u0000\u0000\u01a4\u01a5\u0005r\u0000\u0000\u01a5"+ + "\u01a6\u0005e\u0000\u0000\u01a6\u01a7\u0005a\u0000\u0000\u01a7\u01a8\u0005"+ + "t\u0000\u0000\u01a8\u01a9\u0005e\u0000\u0000\u01a9\u01aa\u0005-\u0000"+ + "\u0000\u01aa\u01ab\u0005c\u0000\u0000\u01ab\u01ac\u0005o\u0000\u0000\u01ac"+ + "\u01ad\u0005n\u0000\u0000\u01ad\u01ae\u0005f\u0000\u0000\u01ae\u01af\u0005"+ + "i\u0000\u0000\u01af\u01b0\u0005g\u0000\u0000\u01b0>\u0001\u0000\u0000"+ + "\u0000\u01b1\u01b2\u0005@\u0000\u0000\u01b2\u01b3\u0005u\u0000\u0000\u01b3"+ + "\u01b4\u0005p\u0000\u0000\u01b4\u01b5\u0005d\u0000\u0000\u01b5\u01b6\u0005"+ + "a\u0000\u0000\u01b6\u01b7\u0005t\u0000\u0000\u01b7\u01b8\u0005e\u0000"+ + "\u0000\u01b8\u01b9\u0005-\u0000\u0000\u01b9\u01ba\u0005c\u0000\u0000\u01ba"+ + "\u01bb\u0005o\u0000\u0000\u01bb\u01bc\u0005n\u0000\u0000\u01bc\u01bd\u0005"+ + "f\u0000\u0000\u01bd\u01be\u0005i\u0000\u0000\u01be\u01bf\u0005g\u0000"+ + "\u0000\u01bf@\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005{\u0000\u0000\u01c1"+ + "B\u0001\u0000\u0000\u0000\u01c2\u01c3\u0005}\u0000\u0000\u01c3D\u0001"+ + "\u0000\u0000\u0000\u01c4\u01c5\u0005(\u0000\u0000\u01c5F\u0001\u0000\u0000"+ + "\u0000\u01c6\u01c7\u0005)\u0000\u0000\u01c7H\u0001\u0000\u0000\u0000\u01c8"+ + "\u01c9\u0005[\u0000\u0000\u01c9J\u0001\u0000\u0000\u0000\u01ca\u01cb\u0005"+ + "]\u0000\u0000\u01cbL\u0001\u0000\u0000\u0000\u01cc\u01cd\u0005;\u0000"+ + "\u0000\u01cdN\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005:\u0000\u0000\u01cf"+ + "P\u0001\u0000\u0000\u0000\u01d0\u01d1\u0005+\u0000\u0000\u01d1\u01d2\u0005"+ + ":\u0000\u0000\u01d2R\u0001\u0000\u0000\u0000\u01d3\u01d4\u0005-\u0000"+ + "\u0000\u01d4\u01d5\u0005:\u0000\u0000\u01d5T\u0001\u0000\u0000\u0000\u01d6"+ + "\u01d7\u0005/\u0000\u0000\u01d7\u01d8\u0005:\u0000\u0000\u01d8V\u0001"+ + "\u0000\u0000\u0000\u01d9\u01da\u0005*\u0000\u0000\u01da\u01db\u0005:\u0000"+ + "\u0000\u01dbX\u0001\u0000\u0000\u0000\u01dc\u01dd\u0005,\u0000\u0000\u01dd"+ + "Z\u0001\u0000\u0000\u0000\u01de\u01df\u0005+\u0000\u0000\u01df\\\u0001"+ + "\u0000\u0000\u0000\u01e0\u01e1\u0005-\u0000\u0000\u01e1^\u0001\u0000\u0000"+ + "\u0000\u01e2\u01e3\u0005*\u0000\u0000\u01e3`\u0001\u0000\u0000\u0000\u01e4"+ + "\u01e5\u0005/\u0000\u0000\u01e5b\u0001\u0000\u0000\u0000\u01e6\u01e7\u0005"+ + "%\u0000\u0000\u01e7d\u0001\u0000\u0000\u0000\u01e8\u01e9\u0005n\u0000"+ + "\u0000\u01e9\u01ea\u0005o\u0000\u0000\u01ea\u01eb\u0005t\u0000\u0000\u01eb"+ + "f\u0001\u0000\u0000\u0000\u01ec\u01ed\u0005>\u0000\u0000\u01edh\u0001"+ + "\u0000\u0000\u0000\u01ee\u01ef\u0005>\u0000\u0000\u01ef\u01f0\u0005=\u0000"+ + "\u0000\u01f0j\u0001\u0000\u0000\u0000\u01f1\u01f2\u0005<\u0000\u0000\u01f2"+ + "l\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005<\u0000\u0000\u01f4\u01f5\u0005"+ + "=\u0000\u0000\u01f5n\u0001\u0000\u0000\u0000\u01f6\u01f7\u0005=\u0000"+ + "\u0000\u01f7\u01f8\u0005=\u0000\u0000\u01f8p\u0001\u0000\u0000\u0000\u01f9"+ + "\u01fa\u0005!\u0000\u0000\u01fa\u01fb\u0005=\u0000\u0000\u01fbr\u0001"+ + "\u0000\u0000\u0000\u01fc\u01fd\u0005a\u0000\u0000\u01fd\u01fe\u0005n\u0000"+ + "\u0000\u01fe\u01ff\u0005d\u0000\u0000\u01fft\u0001\u0000\u0000\u0000\u0200"+ + "\u0201\u0005o\u0000\u0000\u0201\u0202\u0005r\u0000\u0000\u0202v\u0001"+ + "\u0000\u0000\u0000\u0203\u0204\u0005i\u0000\u0000\u0204\u0205\u0005f\u0000"+ + "\u0000\u0205x\u0001\u0000\u0000\u0000\u0206\u0207\u0005e\u0000\u0000\u0207"+ + "\u0208\u0005l\u0000\u0000\u0208\u0209\u0005s\u0000\u0000\u0209\u020a\u0005"+ + "e\u0000\u0000\u020az\u0001\u0000\u0000\u0000\u020b\u020c\u0005~\u0000"+ + "\u0000\u020c|\u0001\u0000\u0000\u0000\u020d\u020e\u0005n\u0000\u0000\u020e"+ + "\u020f\u0005u\u0000\u0000\u020f\u0210\u0005l\u0000\u0000\u0210\u0211\u0005"+ + "l\u0000\u0000\u0211~\u0001\u0000\u0000\u0000\u0212\u0213\u0005t\u0000"+ + "\u0000\u0213\u0214\u0005r\u0000\u0000\u0214\u0215\u0005u\u0000\u0000\u0215"+ + "\u0216\u0005e\u0000\u0000\u0216\u0080\u0001\u0000\u0000\u0000\u0217\u0218"+ + "\u0005f\u0000\u0000\u0218\u0219\u0005a\u0000\u0000\u0219\u021a\u0005l"+ + "\u0000\u0000\u021a\u021b\u0005s\u0000\u0000\u021b\u021c\u0005e\u0000\u0000"+ + "\u021c\u0082\u0001\u0000\u0000\u0000\u021d\u021e\u00050\u0000\u0000\u021e"+ + "\u021f\u0005x\u0000\u0000\u021f\u0221\u0001\u0000\u0000\u0000\u0220\u0222"+ + "\u0003\u0091H\u0000\u0221\u0220\u0001\u0000\u0000\u0000\u0222\u0223\u0001"+ + "\u0000\u0000\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0223\u0224\u0001"+ + "\u0000\u0000\u0000\u0224\u0084\u0001\u0000\u0000\u0000\u0225\u0227\u0003"+ + "\u008fG\u0000\u0226\u0225\u0001\u0000\u0000\u0000\u0227\u0228\u0001\u0000"+ + "\u0000\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000"+ + "\u0000\u0000\u0229\u022d\u0001\u0000\u0000\u0000\u022a\u022d\u0003\u008b"+ + "E\u0000\u022b\u022d\u0003\u008dF\u0000\u022c\u0226\u0001\u0000\u0000\u0000"+ + "\u022c\u022a\u0001\u0000\u0000\u0000\u022c\u022b\u0001\u0000\u0000\u0000"+ + "\u022d\u0086\u0001\u0000\u0000\u0000\u022e\u0233\u0005\"\u0000\u0000\u022f"+ + "\u0232\u0003\u0093I\u0000\u0230\u0232\b\u0004\u0000\u0000\u0231\u022f"+ + "\u0001\u0000\u0000\u0000\u0231\u0230\u0001\u0000\u0000\u0000\u0232\u0235"+ + "\u0001\u0000\u0000\u0000\u0233\u0231\u0001\u0000\u0000\u0000\u0233\u0234"+ + "\u0001\u0000\u0000\u0000\u0234\u0236\u0001\u0000\u0000\u0000\u0235\u0233"+ + "\u0001\u0000\u0000\u0000\u0236\u0241\u0005\"\u0000\u0000\u0237\u023c\u0005"+ + "\'\u0000\u0000\u0238\u023b\u0003\u0093I\u0000\u0239\u023b\b\u0005\u0000"+ + "\u0000\u023a\u0238\u0001\u0000\u0000\u0000\u023a\u0239\u0001\u0000\u0000"+ + "\u0000\u023b\u023e\u0001\u0000\u0000\u0000\u023c\u023a\u0001\u0000\u0000"+ + "\u0000\u023c\u023d\u0001\u0000\u0000\u0000\u023d\u023f\u0001\u0000\u0000"+ + "\u0000\u023e\u023c\u0001\u0000\u0000\u0000\u023f\u0241\u0005\'\u0000\u0000"+ + "\u0240\u022e\u0001\u0000\u0000\u0000\u0240\u0237\u0001\u0000\u0000\u0000"+ + "\u0241\u0088\u0001\u0000\u0000\u0000\u0242\u0243\u0005@\u0000\u0000\u0243"+ + "\u0244\u0005d\u0000\u0000\u0244\u0245\u0005e\u0000\u0000\u0245\u0246\u0005"+ + "l\u0000\u0000\u0246\u0247\u0005e\u0000\u0000\u0247\u0248\u0005t\u0000"+ + "\u0000\u0248\u0249\u0005e\u0000\u0000\u0249\u008a\u0001\u0000\u0000\u0000"+ + "\u024a\u024c\u0005.\u0000\u0000\u024b\u024d\u0003\u008fG\u0000\u024c\u024b"+ + "\u0001\u0000\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e\u024c"+ + "\u0001\u0000\u0000\u0000\u024e\u024f\u0001\u0000\u0000\u0000\u024f\u008c"+ + "\u0001\u0000\u0000\u0000\u0250\u0252\u0003\u008fG\u0000\u0251\u0250\u0001"+ + "\u0000\u0000\u0000\u0252\u0253\u0001\u0000\u0000\u0000\u0253\u0251\u0001"+ + "\u0000\u0000\u0000\u0253\u0254\u0001\u0000\u0000\u0000\u0254\u0255\u0001"+ + "\u0000\u0000\u0000\u0255\u0257\u0005.\u0000\u0000\u0256\u0258\u0003\u008f"+ + "G\u0000\u0257\u0256\u0001\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000"+ + "\u0000\u0259\u0257\u0001\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000"+ + "\u0000\u025a\u008e\u0001\u0000\u0000\u0000\u025b\u025c\u0007\u0006\u0000"+ + "\u0000\u025c\u0090\u0001\u0000\u0000\u0000\u025d\u025e\u0007\u0007\u0000"+ + "\u0000\u025e\u0092\u0001\u0000\u0000\u0000\u025f\u0260\u0005\\\u0000\u0000"+ + "\u0260\u0264\u0007\b\u0000\u0000\u0261\u0264\u0003\u0097K\u0000\u0262"+ + "\u0264\u0003\u0095J\u0000\u0263\u025f\u0001\u0000\u0000\u0000\u0263\u0261"+ + "\u0001\u0000\u0000\u0000\u0263\u0262\u0001\u0000\u0000\u0000\u0264\u0094"+ + "\u0001\u0000\u0000\u0000\u0265\u0266\u0005\\\u0000\u0000\u0266\u0267\u0002"+ + "03\u0000\u0267\u0268\u000207\u0000\u0268\u026f\u000207\u0000\u0269\u026a"+ + "\u0005\\\u0000\u0000\u026a\u026b\u000207\u0000\u026b\u026f\u000207\u0000"+ + "\u026c\u026d\u0005\\\u0000\u0000\u026d\u026f\u000207\u0000\u026e\u0265"+ + "\u0001\u0000\u0000\u0000\u026e\u0269\u0001\u0000\u0000\u0000\u026e\u026c"+ + "\u0001\u0000\u0000\u0000\u026f\u0096\u0001\u0000\u0000\u0000\u0270\u0271"+ + "\u0005\\\u0000\u0000\u0271\u0272\u0005u\u0000\u0000\u0272\u0273\u0003"+ + "\u0091H\u0000\u0273\u0274\u0003\u0091H\u0000\u0274\u0275\u0003\u0091H"+ + "\u0000\u0275\u0276\u0003\u0091H\u0000\u0276\u0098\u0001\u0000\u0000\u0000"+ + "\u0277\u027b\u0007\t\u0000\u0000\u0278\u027a\u0007\n\u0000\u0000\u0279"+ + "\u0278\u0001\u0000\u0000\u0000\u027a\u027d\u0001\u0000\u0000\u0000\u027b"+ + "\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c"+ + "\u009a\u0001\u0000\u0000\u0000\u027d\u027b\u0001\u0000\u0000\u0000\u027e"+ + "\u0284\u0007\u000b\u0000\u0000\u027f\u0283\u0007\f\u0000\u0000\u0280\u0281"+ + "\u0007\r\u0000\u0000\u0281\u0283\u0007\u000e\u0000\u0000\u0282\u027f\u0001"+ + "\u0000\u0000\u0000\u0282\u0280\u0001\u0000\u0000\u0000\u0283\u0286\u0001"+ + "\u0000\u0000\u0000\u0284\u0282\u0001\u0000\u0000\u0000\u0284\u0285\u0001"+ + "\u0000\u0000\u0000\u0285\u009c\u0001\u0000\u0000\u0000\u0286\u0284\u0001"+ + "\u0000\u0000\u0000\u0287\u0288\u0005#\u0000\u0000\u0288\u0289\u0003\u0099"+ + "L\u0000\u0289\u009e\u0001\u0000\u0000\u0000\u028a\u028b\u0005#\u0000\u0000"+ + "\u028b\u028c\u0003\u0087C\u0000\u028c\u00a0\u0001\u0000\u0000\u0000\u028d"+ + "\u028e\u0005.\u0000\u0000\u028e\u028f\u0003\u009bM\u0000\u028f\u00a2\u0001"+ + "\u0000\u0000\u0000\u0290\u0291\u0005.\u0000\u0000\u0291\u0292\u0003\u0087"+ + "C\u0000\u0292\u00a4\u0001\u0000\u0000\u0000\u0293\u0294\u0005$\u0000\u0000"+ + "\u0294\u0295\u0003\u009bM\u0000\u0295\u00a6\u0001\u0000\u0000\u0000\u0296"+ + "\u0297\u0005$\u0000\u0000\u0297\u0298\u0005$\u0000\u0000\u0298\u0299\u0001"+ + "\u0000\u0000\u0000\u0299\u029a\u0003\u009bM\u0000\u029a\u00a8\u0001\u0000"+ + "\u0000\u0000\u029b\u029c\u0005$\u0000\u0000\u029c\u029d\u0005$\u0000\u0000"+ + "\u029d\u029e\u0001\u0000\u0000\u0000\u029e\u029f\u0003\u0087C\u0000\u029f"+ + "\u00aa\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005:\u0000\u0000\u02a1\u02a2"+ + "\u0003\u009bM\u0000\u02a2\u00ac\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005"+ + "%\u0000\u0000\u02a4\u02a5\u0003\u009bM\u0000\u02a5\u00ae\u0001\u0000\u0000"+ + "\u0000\u02a6\u02a7\u0005%\u0000\u0000\u02a7\u02a8\u0003\u0087C\u0000\u02a8"+ + "\u00b0\u0001\u0000\u0000\u0000\u02a9\u02aa\u0003\u009bM\u0000\u02aa\u00b2"+ + "\u0001\u0000\u0000\u0000\u0019\u0000\u00b5\u00bf\u00c5\u00cb\u00d1\u00d5"+ + "\u00e0\u00e6\u0223\u0228\u022c\u0231\u0233\u023a\u023c\u0240\u024e\u0253"+ + "\u0259\u0263\u026e\u027b\u0282\u0284\u0001\u0006\u0000\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.tokens b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.tokens index d717d66..29a2d4c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.tokens +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/gen/sassy_lexer.tokens @@ -6,115 +6,135 @@ PRE_IF=5 PRE_ELSE=6 PRE_ELSE_IF=7 MIXIN=8 -WHILE=9 -FOR=10 -FROM=11 -THROUGH=12 -TO=13 -EACH=14 -IN=15 -SET=16 -MERGE=17 -REQUIRE=18 -STAGE=19 -DEFINE_STAGE=20 -INCLUDE=21 -RETURN=22 -PATCH=23 -NEW=24 -BEFORE=25 -AFTER=26 -LEFT_BRACE=27 -RIGHT_BRACE=28 -LEFT_PAREN=29 -RIGHT_PAREN=30 -LEFT_BRACKET=31 -RIGHT_BRACKET=32 -SEMICOLON=33 -COLON=34 -COMMA=35 -ADD=36 -SUBTRACT=37 -MULTIPLY=38 -DIVIDE=39 -MODULUS=40 -NOT=41 -GREATER_THAN=42 -GREATER_THAN_EQUAL=43 -LESSER_THAN=44 -LESSER_THAN_EQUAL=45 -EQUAL_TO=46 -NOT_EQUAL_TO=47 -AND=48 -OR=49 -IF=50 -ELSE=51 -WITHOUT=52 -NONE=53 -TRUE=54 -FALSE=55 -HEX_NUMBER=56 -NUMBER=57 -STRING=58 -DELETE=59 -NAME=60 -CLASS=61 -VARIABLE=62 -LOCALVARIABLE=63 -RULESET=64 -ENSURE=65 -ELEMENT=66 +MIXIN_SLOT=9 +WHILE=10 +FOR=11 +FROM=12 +THROUGH=13 +TO=14 +EACH=15 +IN=16 +SET=17 +MERGE=18 +REQUIRE=19 +STAGE=20 +DEFINE_STAGE=21 +INCLUDE=22 +RETURN=23 +PATCH=24 +NEW=25 +BEFORE=26 +AFTER=27 +GLOBAL=28 +CREATE_CONFIG=29 +UPDATE_CONFIG=30 +LEFT_BRACE=31 +RIGHT_BRACE=32 +LEFT_PAREN=33 +RIGHT_PAREN=34 +LEFT_BRACKET=35 +RIGHT_BRACKET=36 +SEMICOLON=37 +COLON=38 +PLUS_COLON=39 +MINUS_COLON=40 +DIVIDE_COLON=41 +MULTIPLY_COLON=42 +COMMA=43 +ADD=44 +SUBTRACT=45 +MULTIPLY=46 +DIVIDE=47 +MODULUS=48 +NOT=49 +GREATER_THAN=50 +GREATER_THAN_EQUAL=51 +LESSER_THAN=52 +LESSER_THAN_EQUAL=53 +EQUAL_TO=54 +NOT_EQUAL_TO=55 +AND=56 +OR=57 +IF=58 +ELSE=59 +WITHOUT=60 +NONE=61 +TRUE=62 +FALSE=63 +HEX_NUMBER=64 +NUMBER=65 +STRING=66 +DELETE=67 +NAME=68 +STRING_NAME=69 +CLASS=70 +STRING_CLASS=71 +VARIABLE=72 +LOCALVARIABLE=73 +STRING_LOCALVARIABLE=74 +RULESET=75 +ENSURE=76 +STRING_ENSURE=77 +ELEMENT=78 '@use'=3 '@function'=4 '@if'=5 '@else'=6 '@else-if'=7 '@mixin'=8 -'@while'=9 -'@for'=10 -'from'=11 -'through'=12 -'to'=13 -'@each'=14 -'in'=15 -'@set'=16 -'@merge'=17 -'@require'=18 -'@stage'=19 -'@define-stage'=20 -'@include'=21 -'@return'=22 -'@patch'=23 -'@new'=24 -'@before'=25 -'@after'=26 -'{'=27 -'}'=28 -'('=29 -')'=30 -'['=31 -']'=32 -';'=33 -':'=34 -','=35 -'+'=36 -'-'=37 -'*'=38 -'/'=39 -'%'=40 -'not'=41 -'>'=42 -'>='=43 -'<'=44 -'<='=45 -'=='=46 -'!='=47 -'and'=48 -'or'=49 -'if'=50 -'else'=51 -'~'=52 -'null'=53 -'true'=54 -'false'=55 -'@delete'=59 +'@mixin-slot'=9 +'@while'=10 +'@for'=11 +'from'=12 +'through'=13 +'to'=14 +'@each'=15 +'in'=16 +'@set'=17 +'@merge'=18 +'@require'=19 +'@stage'=20 +'@define-stage'=21 +'@include'=22 +'@return'=23 +'@patch'=24 +'@new'=25 +'@before'=26 +'@after'=27 +'@global'=28 +'@create-config'=29 +'@update-config'=30 +'{'=31 +'}'=32 +'('=33 +')'=34 +'['=35 +']'=36 +';'=37 +':'=38 +'+:'=39 +'-:'=40 +'/:'=41 +'*:'=42 +','=43 +'+'=44 +'-'=45 +'*'=46 +'/'=47 +'%'=48 +'not'=49 +'>'=50 +'>='=51 +'<'=52 +'<='=53 +'=='=54 +'!='=55 +'and'=56 +'or'=57 +'if'=58 +'else'=59 +'~'=60 +'null'=61 +'true'=62 +'false'=63 +'@delete'=67 diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.cs index 9d7bea5..c48ba27 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.cs @@ -1,14 +1,14 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// ANTLR Version: 4.12.0 +// ANTLR Version: 4.13.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -// Generated from C:/Users/arall/PatchManager/src/PatchManager.SassyPatching/SassyPatchGrammar\sassy_lexer.g4 by ANTLR 4.12.0 +// Generated from C:/Users/arall/PatchManager/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 by ANTLR 4.13.1 // Unreachable code detected #pragma warning disable 0162 @@ -28,25 +28,25 @@ namespace SassyPatchGrammar { using Antlr4.Runtime.Misc; using DFA = Antlr4.Runtime.Dfa.DFA; -[System.CodeDom.Compiler.GeneratedCode("ANTLR", "4.12.0")] +[System.CodeDom.Compiler.GeneratedCode("ANTLR", "4.13.1")] [System.CLSCompliant(false)] public partial class sassy_lexer : Lexer { protected static DFA[] decisionToDFA; protected static PredictionContextCache sharedContextCache = new PredictionContextCache(); public const int COMMENT=1, SPACE=2, USE=3, FUNCTION=4, PRE_IF=5, PRE_ELSE=6, PRE_ELSE_IF=7, - MIXIN=8, WHILE=9, FOR=10, FROM=11, THROUGH=12, TO=13, EACH=14, IN=15, - SET=16, MERGE=17, REQUIRE=18, STAGE=19, DEFINE_STAGE=20, INCLUDE=21, RETURN=22, - PATCH=23, NEW=24, BEFORE=25, AFTER=26, GLOBAL=27, CREATE_CONFIG=28, UPDATE_CONFIG=29, - LEFT_BRACE=30, RIGHT_BRACE=31, LEFT_PAREN=32, RIGHT_PAREN=33, LEFT_BRACKET=34, - RIGHT_BRACKET=35, SEMICOLON=36, COLON=37, PLUS_COLON=38, MINUS_COLON=39, - DIVIDE_COLON=40, MULTIPLY_COLON=41, COMMA=42, ADD=43, SUBTRACT=44, MULTIPLY=45, - DIVIDE=46, MODULUS=47, NOT=48, GREATER_THAN=49, GREATER_THAN_EQUAL=50, - LESSER_THAN=51, LESSER_THAN_EQUAL=52, EQUAL_TO=53, NOT_EQUAL_TO=54, AND=55, - OR=56, IF=57, ELSE=58, WITHOUT=59, NONE=60, TRUE=61, FALSE=62, HEX_NUMBER=63, - NUMBER=64, STRING=65, DELETE=66, NAME=67, STRING_NAME=68, CLASS=69, STRING_CLASS=70, - VARIABLE=71, LOCALVARIABLE=72, STRING_LOCALVARIABLE=73, RULESET=74, ENSURE=75, - STRING_ENSURE=76, ELEMENT=77; + MIXIN=8, MIXIN_SLOT=9, WHILE=10, FOR=11, FROM=12, THROUGH=13, TO=14, EACH=15, + IN=16, SET=17, MERGE=18, REQUIRE=19, STAGE=20, DEFINE_STAGE=21, INCLUDE=22, + RETURN=23, PATCH=24, NEW=25, BEFORE=26, AFTER=27, GLOBAL=28, CREATE_CONFIG=29, + UPDATE_CONFIG=30, LEFT_BRACE=31, RIGHT_BRACE=32, LEFT_PAREN=33, RIGHT_PAREN=34, + LEFT_BRACKET=35, RIGHT_BRACKET=36, SEMICOLON=37, COLON=38, PLUS_COLON=39, + MINUS_COLON=40, DIVIDE_COLON=41, MULTIPLY_COLON=42, COMMA=43, ADD=44, + SUBTRACT=45, MULTIPLY=46, DIVIDE=47, MODULUS=48, NOT=49, GREATER_THAN=50, + GREATER_THAN_EQUAL=51, LESSER_THAN=52, LESSER_THAN_EQUAL=53, EQUAL_TO=54, + NOT_EQUAL_TO=55, AND=56, OR=57, IF=58, ELSE=59, WITHOUT=60, NONE=61, TRUE=62, + FALSE=63, HEX_NUMBER=64, NUMBER=65, STRING=66, DELETE=67, NAME=68, STRING_NAME=69, + CLASS=70, STRING_CLASS=71, VARIABLE=72, LOCALVARIABLE=73, STRING_LOCALVARIABLE=74, + RULESET=75, ENSURE=76, STRING_ENSURE=77, ELEMENT=78; public static string[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -57,19 +57,20 @@ public const int public static readonly string[] ruleNames = { "COMMENT", "MULTILINE_COMMENT", "LINE_COMMENT", "SPACE", "USE", "FUNCTION", - "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", "MIXIN", "WHILE", "FOR", "FROM", - "THROUGH", "TO", "EACH", "IN", "SET", "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", - "INCLUDE", "RETURN", "PATCH", "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", - "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", "LEFT_PAREN", "RIGHT_PAREN", - "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "COLON", "PLUS_COLON", "MINUS_COLON", - "DIVIDE_COLON", "MULTIPLY_COLON", "COMMA", "ADD", "SUBTRACT", "MULTIPLY", - "DIVIDE", "MODULUS", "NOT", "GREATER_THAN", "GREATER_THAN_EQUAL", "LESSER_THAN", - "LESSER_THAN_EQUAL", "EQUAL_TO", "NOT_EQUAL_TO", "AND", "OR", "IF", "ELSE", - "WITHOUT", "NONE", "TRUE", "FALSE", "HEX_NUMBER", "NUMBER", "STRING", - "DELETE", "SHORT_NUMBER", "LONG_NUMBER", "DIGIT", "HEX_DIGIT", "ESC_SEQ", - "OCTAL_ESC", "UNICODE_ESC", "IDENTIFIER", "WILDCARDLESS_IDENTIFIER", "NAME", - "STRING_NAME", "CLASS", "STRING_CLASS", "VARIABLE", "LOCALVARIABLE", "STRING_LOCALVARIABLE", - "RULESET", "ENSURE", "STRING_ENSURE", "ELEMENT" + "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", "MIXIN", "MIXIN_SLOT", "WHILE", "FOR", + "FROM", "THROUGH", "TO", "EACH", "IN", "SET", "MERGE", "REQUIRE", "STAGE", + "DEFINE_STAGE", "INCLUDE", "RETURN", "PATCH", "NEW", "BEFORE", "AFTER", + "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", + "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", + "COLON", "PLUS_COLON", "MINUS_COLON", "DIVIDE_COLON", "MULTIPLY_COLON", + "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", "MODULUS", "NOT", "GREATER_THAN", + "GREATER_THAN_EQUAL", "LESSER_THAN", "LESSER_THAN_EQUAL", "EQUAL_TO", + "NOT_EQUAL_TO", "AND", "OR", "IF", "ELSE", "WITHOUT", "NONE", "TRUE", + "FALSE", "HEX_NUMBER", "NUMBER", "STRING", "DELETE", "SHORT_NUMBER", "LONG_NUMBER", + "DIGIT", "HEX_DIGIT", "ESC_SEQ", "OCTAL_ESC", "UNICODE_ESC", "IDENTIFIER", + "WILDCARDLESS_IDENTIFIER", "NAME", "STRING_NAME", "CLASS", "STRING_CLASS", + "VARIABLE", "LOCALVARIABLE", "STRING_LOCALVARIABLE", "RULESET", "ENSURE", + "STRING_ENSURE", "ELEMENT" }; @@ -84,20 +85,20 @@ public sassy_lexer(ICharStream input, TextWriter output, TextWriter errorOutput) private static readonly string[] _LiteralNames = { null, null, null, "'@use'", "'@function'", "'@if'", "'@else'", "'@else-if'", - "'@mixin'", "'@while'", "'@for'", "'from'", "'through'", "'to'", "'@each'", - "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", "'@define-stage'", - "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", "'@after'", - "'@global'", "'@create-config'", "'@update-config'", "'{'", "'}'", "'('", - "')'", "'['", "']'", "';'", "':'", "'+:'", "'-:'", "'/:'", "'*:'", "','", - "'+'", "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", "'<'", "'<='", - "'=='", "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", "'null'", "'true'", - "'false'", null, null, null, "'@delete'" + "'@mixin'", "'@mixin-slot'", "'@while'", "'@for'", "'from'", "'through'", + "'to'", "'@each'", "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", + "'@define-stage'", "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", + "'@after'", "'@global'", "'@create-config'", "'@update-config'", "'{'", + "'}'", "'('", "')'", "'['", "']'", "';'", "':'", "'+:'", "'-:'", "'/:'", + "'*:'", "','", "'+'", "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", + "'<'", "'<='", "'=='", "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", + "'null'", "'true'", "'false'", null, null, null, "'@delete'" }; private static readonly string[] _SymbolicNames = { null, "COMMENT", "SPACE", "USE", "FUNCTION", "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", - "MIXIN", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", "IN", "SET", - "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", "PATCH", - "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", + "MIXIN", "MIXIN_SLOT", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", + "IN", "SET", "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", + "PATCH", "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "COLON", "PLUS_COLON", "MINUS_COLON", "DIVIDE_COLON", "MULTIPLY_COLON", "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", "MODULUS", @@ -135,7 +136,7 @@ static sassy_lexer() { } } private static int[] _serializedATN = { - 4,0,77,669,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, + 4,0,78,683,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, @@ -147,61 +148,62 @@ static sassy_lexer() { 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,1,0,1,0,3,0,180,8,0,1,0,1,0,1,1,1,1, - 1,1,1,1,5,1,188,8,1,10,1,12,1,191,9,1,1,1,4,1,194,8,1,11,1,12,1,195,1, - 1,1,1,5,1,200,8,1,10,1,12,1,203,9,1,1,1,4,1,206,8,1,11,1,12,1,207,5,1, - 210,8,1,10,1,12,1,213,9,1,1,1,1,1,1,2,1,2,1,2,1,2,5,2,221,8,2,10,2,12, - 2,224,9,2,1,3,4,3,227,8,3,11,3,12,3,228,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1, - 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7, - 1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,1, - 9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,11,1,11,1,11,1,11,1,11,1,12,1,12, - 1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14, - 1,15,1,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22, - 1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24, - 1,24,1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26, - 1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28, - 1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29, - 1,29,1,29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,32,1,32,1,33,1,33,1,34, - 1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1,39,1,39,1,40,1,40, - 1,40,1,41,1,41,1,41,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46, - 1,46,1,47,1,47,1,48,1,48,1,49,1,49,1,49,1,49,1,50,1,50,1,51,1,51,1,51, - 1,52,1,52,1,53,1,53,1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,56,1,56,1,56, - 1,56,1,57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,60,1,60, - 1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63, - 1,63,1,63,1,64,1,64,1,64,1,64,4,64,532,8,64,11,64,12,64,533,1,65,4,65, - 537,8,65,11,65,12,65,538,1,65,1,65,3,65,543,8,65,1,66,1,66,1,66,5,66,548, - 8,66,10,66,12,66,551,9,66,1,66,1,66,1,66,1,66,5,66,557,8,66,10,66,12,66, - 560,9,66,1,66,3,66,563,8,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1, - 68,1,68,4,68,575,8,68,11,68,12,68,576,1,69,4,69,580,8,69,11,69,12,69,581, - 1,69,1,69,4,69,586,8,69,11,69,12,69,587,1,70,1,70,1,71,1,71,1,72,1,72, - 1,72,1,72,3,72,598,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3, - 73,609,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,5,75,620,8,75, - 10,75,12,75,623,9,75,1,76,1,76,1,76,1,76,5,76,629,8,76,10,76,12,76,632, - 9,76,1,77,1,77,1,77,1,78,1,78,1,78,1,79,1,79,1,79,1,80,1,80,1,80,1,81, - 1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,84,1,84, - 1,84,1,85,1,85,1,85,1,86,1,86,1,86,1,87,1,87,0,0,88,1,1,3,0,5,0,7,2,9, + 7,84,2,85,7,85,2,86,7,86,2,87,7,87,2,88,7,88,1,0,1,0,3,0,182,8,0,1,0,1, + 0,1,1,1,1,1,1,1,1,5,1,190,8,1,10,1,12,1,193,9,1,1,1,4,1,196,8,1,11,1,12, + 1,197,1,1,1,1,5,1,202,8,1,10,1,12,1,205,9,1,1,1,4,1,208,8,1,11,1,12,1, + 209,5,1,212,8,1,10,1,12,1,215,9,1,1,1,1,1,1,2,1,2,1,2,1,2,5,2,223,8,2, + 10,2,12,2,226,9,2,1,3,4,3,229,8,3,11,3,12,3,230,1,3,1,3,1,4,1,4,1,4,1, + 4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7, + 1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1, + 9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,13,1,13, + 1,13,1,13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15, + 1,16,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18, + 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20, + 1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22, + 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1,23, + 1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25, + 1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27, + 1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29, + 1,29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30, + 1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31, + 1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,33,1,33,1,34,1,34,1,35, + 1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1,39,1,40,1,40,1,40,1,41,1,41, + 1,41,1,42,1,42,1,42,1,43,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,1,47, + 1,47,1,48,1,48,1,49,1,49,1,50,1,50,1,50,1,50,1,51,1,51,1,52,1,52,1,52, + 1,53,1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,56,1,56,1,56,1,57,1,57,1,57, + 1,57,1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61, + 1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64, + 1,64,1,64,1,65,1,65,1,65,1,65,4,65,546,8,65,11,65,12,65,547,1,66,4,66, + 551,8,66,11,66,12,66,552,1,66,1,66,3,66,557,8,66,1,67,1,67,1,67,5,67,562, + 8,67,10,67,12,67,565,9,67,1,67,1,67,1,67,1,67,5,67,571,8,67,10,67,12,67, + 574,9,67,1,67,3,67,577,8,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 69,1,69,4,69,589,8,69,11,69,12,69,590,1,70,4,70,594,8,70,11,70,12,70,595, + 1,70,1,70,4,70,600,8,70,11,70,12,70,601,1,71,1,71,1,72,1,72,1,73,1,73, + 1,73,1,73,3,73,612,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3, + 74,623,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76,5,76,634,8,76, + 10,76,12,76,637,9,76,1,77,1,77,1,77,1,77,5,77,643,8,77,10,77,12,77,646, + 9,77,1,78,1,78,1,78,1,79,1,79,1,79,1,80,1,80,1,80,1,81,1,81,1,81,1,82, + 1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,1,85,1,85, + 1,85,1,86,1,86,1,86,1,87,1,87,1,87,1,88,1,88,0,0,89,1,1,3,0,5,0,7,2,9, 3,11,4,13,5,15,6,17,7,19,8,21,9,23,10,25,11,27,12,29,13,31,14,33,15,35, 16,37,17,39,18,41,19,43,20,45,21,47,22,49,23,51,24,53,25,55,26,57,27,59, 28,61,29,63,30,65,31,67,32,69,33,71,34,73,35,75,36,77,37,79,38,81,39,83, 40,85,41,87,42,89,43,91,44,93,45,95,46,97,47,99,48,101,49,103,50,105,51, 107,52,109,53,111,54,113,55,115,56,117,57,119,58,121,59,123,60,125,61, - 127,62,129,63,131,64,133,65,135,66,137,0,139,0,141,0,143,0,145,0,147,0, - 149,0,151,0,153,0,155,67,157,68,159,69,161,70,163,71,165,72,167,73,169, - 74,171,75,173,76,175,77,1,0,15,1,0,42,42,2,0,42,42,47,47,2,0,10,10,13, - 13,3,0,9,10,12,13,32,32,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,57,3,0, - 48,57,65,70,97,102,8,0,34,34,39,39,92,92,98,98,102,102,110,110,114,114, - 116,116,6,0,42,42,48,57,63,63,65,90,95,95,97,122,7,0,42,42,45,46,48,57, - 63,63,65,90,95,95,97,122,3,0,65,90,95,95,97,122,5,0,46,46,48,57,65,90, - 95,95,97,122,1,0,45,45,2,0,65,90,97,122,684,0,1,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, + 127,62,129,63,131,64,133,65,135,66,137,67,139,0,141,0,143,0,145,0,147, + 0,149,0,151,0,153,0,155,0,157,68,159,69,161,70,163,71,165,72,167,73,169, + 74,171,75,173,76,175,77,177,78,1,0,15,1,0,42,42,2,0,42,42,47,47,2,0,10, + 10,13,13,3,0,9,10,12,13,32,32,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,57, + 3,0,48,57,65,70,97,102,8,0,34,34,39,39,92,92,98,98,102,102,110,110,114, + 114,116,116,6,0,42,42,48,57,63,63,65,90,95,95,97,122,7,0,42,42,45,46,48, + 57,63,63,65,90,95,95,97,122,3,0,65,90,95,95,97,122,5,0,46,46,48,57,65, + 90,95,95,97,122,1,0,45,45,2,0,65,90,97,122,698,0,1,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,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,0,85, 1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0, @@ -209,153 +211,157 @@ static sassy_lexer() { 0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0, 0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0, 0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0, - 0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0, + 0,137,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0, 0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0, - 0,175,1,0,0,0,1,179,1,0,0,0,3,183,1,0,0,0,5,216,1,0,0,0,7,226,1,0,0,0, - 9,232,1,0,0,0,11,237,1,0,0,0,13,247,1,0,0,0,15,251,1,0,0,0,17,257,1,0, - 0,0,19,266,1,0,0,0,21,273,1,0,0,0,23,280,1,0,0,0,25,285,1,0,0,0,27,290, - 1,0,0,0,29,298,1,0,0,0,31,301,1,0,0,0,33,307,1,0,0,0,35,310,1,0,0,0,37, - 315,1,0,0,0,39,322,1,0,0,0,41,331,1,0,0,0,43,338,1,0,0,0,45,352,1,0,0, - 0,47,361,1,0,0,0,49,369,1,0,0,0,51,376,1,0,0,0,53,381,1,0,0,0,55,389,1, - 0,0,0,57,396,1,0,0,0,59,404,1,0,0,0,61,419,1,0,0,0,63,434,1,0,0,0,65,436, - 1,0,0,0,67,438,1,0,0,0,69,440,1,0,0,0,71,442,1,0,0,0,73,444,1,0,0,0,75, - 446,1,0,0,0,77,448,1,0,0,0,79,450,1,0,0,0,81,453,1,0,0,0,83,456,1,0,0, - 0,85,459,1,0,0,0,87,462,1,0,0,0,89,464,1,0,0,0,91,466,1,0,0,0,93,468,1, - 0,0,0,95,470,1,0,0,0,97,472,1,0,0,0,99,474,1,0,0,0,101,478,1,0,0,0,103, - 480,1,0,0,0,105,483,1,0,0,0,107,485,1,0,0,0,109,488,1,0,0,0,111,491,1, - 0,0,0,113,494,1,0,0,0,115,498,1,0,0,0,117,501,1,0,0,0,119,504,1,0,0,0, - 121,509,1,0,0,0,123,511,1,0,0,0,125,516,1,0,0,0,127,521,1,0,0,0,129,527, - 1,0,0,0,131,542,1,0,0,0,133,562,1,0,0,0,135,564,1,0,0,0,137,572,1,0,0, - 0,139,579,1,0,0,0,141,589,1,0,0,0,143,591,1,0,0,0,145,597,1,0,0,0,147, - 608,1,0,0,0,149,610,1,0,0,0,151,617,1,0,0,0,153,624,1,0,0,0,155,633,1, - 0,0,0,157,636,1,0,0,0,159,639,1,0,0,0,161,642,1,0,0,0,163,645,1,0,0,0, - 165,648,1,0,0,0,167,653,1,0,0,0,169,658,1,0,0,0,171,661,1,0,0,0,173,664, - 1,0,0,0,175,667,1,0,0,0,177,180,3,5,2,0,178,180,3,3,1,0,179,177,1,0,0, - 0,179,178,1,0,0,0,180,181,1,0,0,0,181,182,6,0,0,0,182,2,1,0,0,0,183,184, - 5,47,0,0,184,185,5,42,0,0,185,189,1,0,0,0,186,188,8,0,0,0,187,186,1,0, - 0,0,188,191,1,0,0,0,189,187,1,0,0,0,189,190,1,0,0,0,190,193,1,0,0,0,191, - 189,1,0,0,0,192,194,5,42,0,0,193,192,1,0,0,0,194,195,1,0,0,0,195,193,1, - 0,0,0,195,196,1,0,0,0,196,211,1,0,0,0,197,201,8,1,0,0,198,200,8,0,0,0, - 199,198,1,0,0,0,200,203,1,0,0,0,201,199,1,0,0,0,201,202,1,0,0,0,202,205, - 1,0,0,0,203,201,1,0,0,0,204,206,5,42,0,0,205,204,1,0,0,0,206,207,1,0,0, - 0,207,205,1,0,0,0,207,208,1,0,0,0,208,210,1,0,0,0,209,197,1,0,0,0,210, - 213,1,0,0,0,211,209,1,0,0,0,211,212,1,0,0,0,212,214,1,0,0,0,213,211,1, - 0,0,0,214,215,5,47,0,0,215,4,1,0,0,0,216,217,5,47,0,0,217,218,5,47,0,0, - 218,222,1,0,0,0,219,221,8,2,0,0,220,219,1,0,0,0,221,224,1,0,0,0,222,220, - 1,0,0,0,222,223,1,0,0,0,223,6,1,0,0,0,224,222,1,0,0,0,225,227,7,3,0,0, - 226,225,1,0,0,0,227,228,1,0,0,0,228,226,1,0,0,0,228,229,1,0,0,0,229,230, - 1,0,0,0,230,231,6,3,0,0,231,8,1,0,0,0,232,233,5,64,0,0,233,234,5,117,0, - 0,234,235,5,115,0,0,235,236,5,101,0,0,236,10,1,0,0,0,237,238,5,64,0,0, - 238,239,5,102,0,0,239,240,5,117,0,0,240,241,5,110,0,0,241,242,5,99,0,0, - 242,243,5,116,0,0,243,244,5,105,0,0,244,245,5,111,0,0,245,246,5,110,0, - 0,246,12,1,0,0,0,247,248,5,64,0,0,248,249,5,105,0,0,249,250,5,102,0,0, - 250,14,1,0,0,0,251,252,5,64,0,0,252,253,5,101,0,0,253,254,5,108,0,0,254, - 255,5,115,0,0,255,256,5,101,0,0,256,16,1,0,0,0,257,258,5,64,0,0,258,259, - 5,101,0,0,259,260,5,108,0,0,260,261,5,115,0,0,261,262,5,101,0,0,262,263, - 5,45,0,0,263,264,5,105,0,0,264,265,5,102,0,0,265,18,1,0,0,0,266,267,5, - 64,0,0,267,268,5,109,0,0,268,269,5,105,0,0,269,270,5,120,0,0,270,271,5, - 105,0,0,271,272,5,110,0,0,272,20,1,0,0,0,273,274,5,64,0,0,274,275,5,119, - 0,0,275,276,5,104,0,0,276,277,5,105,0,0,277,278,5,108,0,0,278,279,5,101, - 0,0,279,22,1,0,0,0,280,281,5,64,0,0,281,282,5,102,0,0,282,283,5,111,0, - 0,283,284,5,114,0,0,284,24,1,0,0,0,285,286,5,102,0,0,286,287,5,114,0,0, - 287,288,5,111,0,0,288,289,5,109,0,0,289,26,1,0,0,0,290,291,5,116,0,0,291, - 292,5,104,0,0,292,293,5,114,0,0,293,294,5,111,0,0,294,295,5,117,0,0,295, - 296,5,103,0,0,296,297,5,104,0,0,297,28,1,0,0,0,298,299,5,116,0,0,299,300, - 5,111,0,0,300,30,1,0,0,0,301,302,5,64,0,0,302,303,5,101,0,0,303,304,5, - 97,0,0,304,305,5,99,0,0,305,306,5,104,0,0,306,32,1,0,0,0,307,308,5,105, - 0,0,308,309,5,110,0,0,309,34,1,0,0,0,310,311,5,64,0,0,311,312,5,115,0, - 0,312,313,5,101,0,0,313,314,5,116,0,0,314,36,1,0,0,0,315,316,5,64,0,0, - 316,317,5,109,0,0,317,318,5,101,0,0,318,319,5,114,0,0,319,320,5,103,0, - 0,320,321,5,101,0,0,321,38,1,0,0,0,322,323,5,64,0,0,323,324,5,114,0,0, - 324,325,5,101,0,0,325,326,5,113,0,0,326,327,5,117,0,0,327,328,5,105,0, - 0,328,329,5,114,0,0,329,330,5,101,0,0,330,40,1,0,0,0,331,332,5,64,0,0, - 332,333,5,115,0,0,333,334,5,116,0,0,334,335,5,97,0,0,335,336,5,103,0,0, - 336,337,5,101,0,0,337,42,1,0,0,0,338,339,5,64,0,0,339,340,5,100,0,0,340, - 341,5,101,0,0,341,342,5,102,0,0,342,343,5,105,0,0,343,344,5,110,0,0,344, - 345,5,101,0,0,345,346,5,45,0,0,346,347,5,115,0,0,347,348,5,116,0,0,348, - 349,5,97,0,0,349,350,5,103,0,0,350,351,5,101,0,0,351,44,1,0,0,0,352,353, - 5,64,0,0,353,354,5,105,0,0,354,355,5,110,0,0,355,356,5,99,0,0,356,357, - 5,108,0,0,357,358,5,117,0,0,358,359,5,100,0,0,359,360,5,101,0,0,360,46, - 1,0,0,0,361,362,5,64,0,0,362,363,5,114,0,0,363,364,5,101,0,0,364,365,5, - 116,0,0,365,366,5,117,0,0,366,367,5,114,0,0,367,368,5,110,0,0,368,48,1, - 0,0,0,369,370,5,64,0,0,370,371,5,112,0,0,371,372,5,97,0,0,372,373,5,116, - 0,0,373,374,5,99,0,0,374,375,5,104,0,0,375,50,1,0,0,0,376,377,5,64,0,0, - 377,378,5,110,0,0,378,379,5,101,0,0,379,380,5,119,0,0,380,52,1,0,0,0,381, - 382,5,64,0,0,382,383,5,98,0,0,383,384,5,101,0,0,384,385,5,102,0,0,385, - 386,5,111,0,0,386,387,5,114,0,0,387,388,5,101,0,0,388,54,1,0,0,0,389,390, - 5,64,0,0,390,391,5,97,0,0,391,392,5,102,0,0,392,393,5,116,0,0,393,394, - 5,101,0,0,394,395,5,114,0,0,395,56,1,0,0,0,396,397,5,64,0,0,397,398,5, - 103,0,0,398,399,5,108,0,0,399,400,5,111,0,0,400,401,5,98,0,0,401,402,5, - 97,0,0,402,403,5,108,0,0,403,58,1,0,0,0,404,405,5,64,0,0,405,406,5,99, - 0,0,406,407,5,114,0,0,407,408,5,101,0,0,408,409,5,97,0,0,409,410,5,116, - 0,0,410,411,5,101,0,0,411,412,5,45,0,0,412,413,5,99,0,0,413,414,5,111, - 0,0,414,415,5,110,0,0,415,416,5,102,0,0,416,417,5,105,0,0,417,418,5,103, - 0,0,418,60,1,0,0,0,419,420,5,64,0,0,420,421,5,117,0,0,421,422,5,112,0, - 0,422,423,5,100,0,0,423,424,5,97,0,0,424,425,5,116,0,0,425,426,5,101,0, - 0,426,427,5,45,0,0,427,428,5,99,0,0,428,429,5,111,0,0,429,430,5,110,0, - 0,430,431,5,102,0,0,431,432,5,105,0,0,432,433,5,103,0,0,433,62,1,0,0,0, - 434,435,5,123,0,0,435,64,1,0,0,0,436,437,5,125,0,0,437,66,1,0,0,0,438, - 439,5,40,0,0,439,68,1,0,0,0,440,441,5,41,0,0,441,70,1,0,0,0,442,443,5, - 91,0,0,443,72,1,0,0,0,444,445,5,93,0,0,445,74,1,0,0,0,446,447,5,59,0,0, - 447,76,1,0,0,0,448,449,5,58,0,0,449,78,1,0,0,0,450,451,5,43,0,0,451,452, - 5,58,0,0,452,80,1,0,0,0,453,454,5,45,0,0,454,455,5,58,0,0,455,82,1,0,0, - 0,456,457,5,47,0,0,457,458,5,58,0,0,458,84,1,0,0,0,459,460,5,42,0,0,460, - 461,5,58,0,0,461,86,1,0,0,0,462,463,5,44,0,0,463,88,1,0,0,0,464,465,5, - 43,0,0,465,90,1,0,0,0,466,467,5,45,0,0,467,92,1,0,0,0,468,469,5,42,0,0, - 469,94,1,0,0,0,470,471,5,47,0,0,471,96,1,0,0,0,472,473,5,37,0,0,473,98, - 1,0,0,0,474,475,5,110,0,0,475,476,5,111,0,0,476,477,5,116,0,0,477,100, - 1,0,0,0,478,479,5,62,0,0,479,102,1,0,0,0,480,481,5,62,0,0,481,482,5,61, - 0,0,482,104,1,0,0,0,483,484,5,60,0,0,484,106,1,0,0,0,485,486,5,60,0,0, - 486,487,5,61,0,0,487,108,1,0,0,0,488,489,5,61,0,0,489,490,5,61,0,0,490, - 110,1,0,0,0,491,492,5,33,0,0,492,493,5,61,0,0,493,112,1,0,0,0,494,495, - 5,97,0,0,495,496,5,110,0,0,496,497,5,100,0,0,497,114,1,0,0,0,498,499,5, - 111,0,0,499,500,5,114,0,0,500,116,1,0,0,0,501,502,5,105,0,0,502,503,5, - 102,0,0,503,118,1,0,0,0,504,505,5,101,0,0,505,506,5,108,0,0,506,507,5, - 115,0,0,507,508,5,101,0,0,508,120,1,0,0,0,509,510,5,126,0,0,510,122,1, - 0,0,0,511,512,5,110,0,0,512,513,5,117,0,0,513,514,5,108,0,0,514,515,5, - 108,0,0,515,124,1,0,0,0,516,517,5,116,0,0,517,518,5,114,0,0,518,519,5, - 117,0,0,519,520,5,101,0,0,520,126,1,0,0,0,521,522,5,102,0,0,522,523,5, - 97,0,0,523,524,5,108,0,0,524,525,5,115,0,0,525,526,5,101,0,0,526,128,1, - 0,0,0,527,528,5,48,0,0,528,529,5,120,0,0,529,531,1,0,0,0,530,532,3,143, - 71,0,531,530,1,0,0,0,532,533,1,0,0,0,533,531,1,0,0,0,533,534,1,0,0,0,534, - 130,1,0,0,0,535,537,3,141,70,0,536,535,1,0,0,0,537,538,1,0,0,0,538,536, - 1,0,0,0,538,539,1,0,0,0,539,543,1,0,0,0,540,543,3,137,68,0,541,543,3,139, - 69,0,542,536,1,0,0,0,542,540,1,0,0,0,542,541,1,0,0,0,543,132,1,0,0,0,544, - 549,5,34,0,0,545,548,3,145,72,0,546,548,8,4,0,0,547,545,1,0,0,0,547,546, - 1,0,0,0,548,551,1,0,0,0,549,547,1,0,0,0,549,550,1,0,0,0,550,552,1,0,0, - 0,551,549,1,0,0,0,552,563,5,34,0,0,553,558,5,39,0,0,554,557,3,145,72,0, - 555,557,8,5,0,0,556,554,1,0,0,0,556,555,1,0,0,0,557,560,1,0,0,0,558,556, - 1,0,0,0,558,559,1,0,0,0,559,561,1,0,0,0,560,558,1,0,0,0,561,563,5,39,0, - 0,562,544,1,0,0,0,562,553,1,0,0,0,563,134,1,0,0,0,564,565,5,64,0,0,565, - 566,5,100,0,0,566,567,5,101,0,0,567,568,5,108,0,0,568,569,5,101,0,0,569, - 570,5,116,0,0,570,571,5,101,0,0,571,136,1,0,0,0,572,574,5,46,0,0,573,575, - 3,141,70,0,574,573,1,0,0,0,575,576,1,0,0,0,576,574,1,0,0,0,576,577,1,0, - 0,0,577,138,1,0,0,0,578,580,3,141,70,0,579,578,1,0,0,0,580,581,1,0,0,0, - 581,579,1,0,0,0,581,582,1,0,0,0,582,583,1,0,0,0,583,585,5,46,0,0,584,586, - 3,141,70,0,585,584,1,0,0,0,586,587,1,0,0,0,587,585,1,0,0,0,587,588,1,0, - 0,0,588,140,1,0,0,0,589,590,7,6,0,0,590,142,1,0,0,0,591,592,7,7,0,0,592, - 144,1,0,0,0,593,594,5,92,0,0,594,598,7,8,0,0,595,598,3,149,74,0,596,598, - 3,147,73,0,597,593,1,0,0,0,597,595,1,0,0,0,597,596,1,0,0,0,598,146,1,0, - 0,0,599,600,5,92,0,0,600,601,2,48,51,0,601,602,2,48,55,0,602,609,2,48, - 55,0,603,604,5,92,0,0,604,605,2,48,55,0,605,609,2,48,55,0,606,607,5,92, - 0,0,607,609,2,48,55,0,608,599,1,0,0,0,608,603,1,0,0,0,608,606,1,0,0,0, - 609,148,1,0,0,0,610,611,5,92,0,0,611,612,5,117,0,0,612,613,3,143,71,0, - 613,614,3,143,71,0,614,615,3,143,71,0,615,616,3,143,71,0,616,150,1,0,0, - 0,617,621,7,9,0,0,618,620,7,10,0,0,619,618,1,0,0,0,620,623,1,0,0,0,621, - 619,1,0,0,0,621,622,1,0,0,0,622,152,1,0,0,0,623,621,1,0,0,0,624,630,7, - 11,0,0,625,629,7,12,0,0,626,627,7,13,0,0,627,629,7,14,0,0,628,625,1,0, - 0,0,628,626,1,0,0,0,629,632,1,0,0,0,630,628,1,0,0,0,630,631,1,0,0,0,631, - 154,1,0,0,0,632,630,1,0,0,0,633,634,5,35,0,0,634,635,3,151,75,0,635,156, - 1,0,0,0,636,637,5,35,0,0,637,638,3,133,66,0,638,158,1,0,0,0,639,640,5, - 46,0,0,640,641,3,153,76,0,641,160,1,0,0,0,642,643,5,46,0,0,643,644,3,133, - 66,0,644,162,1,0,0,0,645,646,5,36,0,0,646,647,3,153,76,0,647,164,1,0,0, - 0,648,649,5,36,0,0,649,650,5,36,0,0,650,651,1,0,0,0,651,652,3,153,76,0, - 652,166,1,0,0,0,653,654,5,36,0,0,654,655,5,36,0,0,655,656,1,0,0,0,656, - 657,3,133,66,0,657,168,1,0,0,0,658,659,5,58,0,0,659,660,3,153,76,0,660, - 170,1,0,0,0,661,662,5,37,0,0,662,663,3,153,76,0,663,172,1,0,0,0,664,665, - 5,37,0,0,665,666,3,133,66,0,666,174,1,0,0,0,667,668,3,153,76,0,668,176, - 1,0,0,0,25,0,179,189,195,201,207,211,222,228,533,538,542,547,549,556,558, - 562,576,581,587,597,608,621,628,630,1,6,0,0 + 0,175,1,0,0,0,0,177,1,0,0,0,1,181,1,0,0,0,3,185,1,0,0,0,5,218,1,0,0,0, + 7,228,1,0,0,0,9,234,1,0,0,0,11,239,1,0,0,0,13,249,1,0,0,0,15,253,1,0,0, + 0,17,259,1,0,0,0,19,268,1,0,0,0,21,275,1,0,0,0,23,287,1,0,0,0,25,294,1, + 0,0,0,27,299,1,0,0,0,29,304,1,0,0,0,31,312,1,0,0,0,33,315,1,0,0,0,35,321, + 1,0,0,0,37,324,1,0,0,0,39,329,1,0,0,0,41,336,1,0,0,0,43,345,1,0,0,0,45, + 352,1,0,0,0,47,366,1,0,0,0,49,375,1,0,0,0,51,383,1,0,0,0,53,390,1,0,0, + 0,55,395,1,0,0,0,57,403,1,0,0,0,59,410,1,0,0,0,61,418,1,0,0,0,63,433,1, + 0,0,0,65,448,1,0,0,0,67,450,1,0,0,0,69,452,1,0,0,0,71,454,1,0,0,0,73,456, + 1,0,0,0,75,458,1,0,0,0,77,460,1,0,0,0,79,462,1,0,0,0,81,464,1,0,0,0,83, + 467,1,0,0,0,85,470,1,0,0,0,87,473,1,0,0,0,89,476,1,0,0,0,91,478,1,0,0, + 0,93,480,1,0,0,0,95,482,1,0,0,0,97,484,1,0,0,0,99,486,1,0,0,0,101,488, + 1,0,0,0,103,492,1,0,0,0,105,494,1,0,0,0,107,497,1,0,0,0,109,499,1,0,0, + 0,111,502,1,0,0,0,113,505,1,0,0,0,115,508,1,0,0,0,117,512,1,0,0,0,119, + 515,1,0,0,0,121,518,1,0,0,0,123,523,1,0,0,0,125,525,1,0,0,0,127,530,1, + 0,0,0,129,535,1,0,0,0,131,541,1,0,0,0,133,556,1,0,0,0,135,576,1,0,0,0, + 137,578,1,0,0,0,139,586,1,0,0,0,141,593,1,0,0,0,143,603,1,0,0,0,145,605, + 1,0,0,0,147,611,1,0,0,0,149,622,1,0,0,0,151,624,1,0,0,0,153,631,1,0,0, + 0,155,638,1,0,0,0,157,647,1,0,0,0,159,650,1,0,0,0,161,653,1,0,0,0,163, + 656,1,0,0,0,165,659,1,0,0,0,167,662,1,0,0,0,169,667,1,0,0,0,171,672,1, + 0,0,0,173,675,1,0,0,0,175,678,1,0,0,0,177,681,1,0,0,0,179,182,3,5,2,0, + 180,182,3,3,1,0,181,179,1,0,0,0,181,180,1,0,0,0,182,183,1,0,0,0,183,184, + 6,0,0,0,184,2,1,0,0,0,185,186,5,47,0,0,186,187,5,42,0,0,187,191,1,0,0, + 0,188,190,8,0,0,0,189,188,1,0,0,0,190,193,1,0,0,0,191,189,1,0,0,0,191, + 192,1,0,0,0,192,195,1,0,0,0,193,191,1,0,0,0,194,196,5,42,0,0,195,194,1, + 0,0,0,196,197,1,0,0,0,197,195,1,0,0,0,197,198,1,0,0,0,198,213,1,0,0,0, + 199,203,8,1,0,0,200,202,8,0,0,0,201,200,1,0,0,0,202,205,1,0,0,0,203,201, + 1,0,0,0,203,204,1,0,0,0,204,207,1,0,0,0,205,203,1,0,0,0,206,208,5,42,0, + 0,207,206,1,0,0,0,208,209,1,0,0,0,209,207,1,0,0,0,209,210,1,0,0,0,210, + 212,1,0,0,0,211,199,1,0,0,0,212,215,1,0,0,0,213,211,1,0,0,0,213,214,1, + 0,0,0,214,216,1,0,0,0,215,213,1,0,0,0,216,217,5,47,0,0,217,4,1,0,0,0,218, + 219,5,47,0,0,219,220,5,47,0,0,220,224,1,0,0,0,221,223,8,2,0,0,222,221, + 1,0,0,0,223,226,1,0,0,0,224,222,1,0,0,0,224,225,1,0,0,0,225,6,1,0,0,0, + 226,224,1,0,0,0,227,229,7,3,0,0,228,227,1,0,0,0,229,230,1,0,0,0,230,228, + 1,0,0,0,230,231,1,0,0,0,231,232,1,0,0,0,232,233,6,3,0,0,233,8,1,0,0,0, + 234,235,5,64,0,0,235,236,5,117,0,0,236,237,5,115,0,0,237,238,5,101,0,0, + 238,10,1,0,0,0,239,240,5,64,0,0,240,241,5,102,0,0,241,242,5,117,0,0,242, + 243,5,110,0,0,243,244,5,99,0,0,244,245,5,116,0,0,245,246,5,105,0,0,246, + 247,5,111,0,0,247,248,5,110,0,0,248,12,1,0,0,0,249,250,5,64,0,0,250,251, + 5,105,0,0,251,252,5,102,0,0,252,14,1,0,0,0,253,254,5,64,0,0,254,255,5, + 101,0,0,255,256,5,108,0,0,256,257,5,115,0,0,257,258,5,101,0,0,258,16,1, + 0,0,0,259,260,5,64,0,0,260,261,5,101,0,0,261,262,5,108,0,0,262,263,5,115, + 0,0,263,264,5,101,0,0,264,265,5,45,0,0,265,266,5,105,0,0,266,267,5,102, + 0,0,267,18,1,0,0,0,268,269,5,64,0,0,269,270,5,109,0,0,270,271,5,105,0, + 0,271,272,5,120,0,0,272,273,5,105,0,0,273,274,5,110,0,0,274,20,1,0,0,0, + 275,276,5,64,0,0,276,277,5,109,0,0,277,278,5,105,0,0,278,279,5,120,0,0, + 279,280,5,105,0,0,280,281,5,110,0,0,281,282,5,45,0,0,282,283,5,115,0,0, + 283,284,5,108,0,0,284,285,5,111,0,0,285,286,5,116,0,0,286,22,1,0,0,0,287, + 288,5,64,0,0,288,289,5,119,0,0,289,290,5,104,0,0,290,291,5,105,0,0,291, + 292,5,108,0,0,292,293,5,101,0,0,293,24,1,0,0,0,294,295,5,64,0,0,295,296, + 5,102,0,0,296,297,5,111,0,0,297,298,5,114,0,0,298,26,1,0,0,0,299,300,5, + 102,0,0,300,301,5,114,0,0,301,302,5,111,0,0,302,303,5,109,0,0,303,28,1, + 0,0,0,304,305,5,116,0,0,305,306,5,104,0,0,306,307,5,114,0,0,307,308,5, + 111,0,0,308,309,5,117,0,0,309,310,5,103,0,0,310,311,5,104,0,0,311,30,1, + 0,0,0,312,313,5,116,0,0,313,314,5,111,0,0,314,32,1,0,0,0,315,316,5,64, + 0,0,316,317,5,101,0,0,317,318,5,97,0,0,318,319,5,99,0,0,319,320,5,104, + 0,0,320,34,1,0,0,0,321,322,5,105,0,0,322,323,5,110,0,0,323,36,1,0,0,0, + 324,325,5,64,0,0,325,326,5,115,0,0,326,327,5,101,0,0,327,328,5,116,0,0, + 328,38,1,0,0,0,329,330,5,64,0,0,330,331,5,109,0,0,331,332,5,101,0,0,332, + 333,5,114,0,0,333,334,5,103,0,0,334,335,5,101,0,0,335,40,1,0,0,0,336,337, + 5,64,0,0,337,338,5,114,0,0,338,339,5,101,0,0,339,340,5,113,0,0,340,341, + 5,117,0,0,341,342,5,105,0,0,342,343,5,114,0,0,343,344,5,101,0,0,344,42, + 1,0,0,0,345,346,5,64,0,0,346,347,5,115,0,0,347,348,5,116,0,0,348,349,5, + 97,0,0,349,350,5,103,0,0,350,351,5,101,0,0,351,44,1,0,0,0,352,353,5,64, + 0,0,353,354,5,100,0,0,354,355,5,101,0,0,355,356,5,102,0,0,356,357,5,105, + 0,0,357,358,5,110,0,0,358,359,5,101,0,0,359,360,5,45,0,0,360,361,5,115, + 0,0,361,362,5,116,0,0,362,363,5,97,0,0,363,364,5,103,0,0,364,365,5,101, + 0,0,365,46,1,0,0,0,366,367,5,64,0,0,367,368,5,105,0,0,368,369,5,110,0, + 0,369,370,5,99,0,0,370,371,5,108,0,0,371,372,5,117,0,0,372,373,5,100,0, + 0,373,374,5,101,0,0,374,48,1,0,0,0,375,376,5,64,0,0,376,377,5,114,0,0, + 377,378,5,101,0,0,378,379,5,116,0,0,379,380,5,117,0,0,380,381,5,114,0, + 0,381,382,5,110,0,0,382,50,1,0,0,0,383,384,5,64,0,0,384,385,5,112,0,0, + 385,386,5,97,0,0,386,387,5,116,0,0,387,388,5,99,0,0,388,389,5,104,0,0, + 389,52,1,0,0,0,390,391,5,64,0,0,391,392,5,110,0,0,392,393,5,101,0,0,393, + 394,5,119,0,0,394,54,1,0,0,0,395,396,5,64,0,0,396,397,5,98,0,0,397,398, + 5,101,0,0,398,399,5,102,0,0,399,400,5,111,0,0,400,401,5,114,0,0,401,402, + 5,101,0,0,402,56,1,0,0,0,403,404,5,64,0,0,404,405,5,97,0,0,405,406,5,102, + 0,0,406,407,5,116,0,0,407,408,5,101,0,0,408,409,5,114,0,0,409,58,1,0,0, + 0,410,411,5,64,0,0,411,412,5,103,0,0,412,413,5,108,0,0,413,414,5,111,0, + 0,414,415,5,98,0,0,415,416,5,97,0,0,416,417,5,108,0,0,417,60,1,0,0,0,418, + 419,5,64,0,0,419,420,5,99,0,0,420,421,5,114,0,0,421,422,5,101,0,0,422, + 423,5,97,0,0,423,424,5,116,0,0,424,425,5,101,0,0,425,426,5,45,0,0,426, + 427,5,99,0,0,427,428,5,111,0,0,428,429,5,110,0,0,429,430,5,102,0,0,430, + 431,5,105,0,0,431,432,5,103,0,0,432,62,1,0,0,0,433,434,5,64,0,0,434,435, + 5,117,0,0,435,436,5,112,0,0,436,437,5,100,0,0,437,438,5,97,0,0,438,439, + 5,116,0,0,439,440,5,101,0,0,440,441,5,45,0,0,441,442,5,99,0,0,442,443, + 5,111,0,0,443,444,5,110,0,0,444,445,5,102,0,0,445,446,5,105,0,0,446,447, + 5,103,0,0,447,64,1,0,0,0,448,449,5,123,0,0,449,66,1,0,0,0,450,451,5,125, + 0,0,451,68,1,0,0,0,452,453,5,40,0,0,453,70,1,0,0,0,454,455,5,41,0,0,455, + 72,1,0,0,0,456,457,5,91,0,0,457,74,1,0,0,0,458,459,5,93,0,0,459,76,1,0, + 0,0,460,461,5,59,0,0,461,78,1,0,0,0,462,463,5,58,0,0,463,80,1,0,0,0,464, + 465,5,43,0,0,465,466,5,58,0,0,466,82,1,0,0,0,467,468,5,45,0,0,468,469, + 5,58,0,0,469,84,1,0,0,0,470,471,5,47,0,0,471,472,5,58,0,0,472,86,1,0,0, + 0,473,474,5,42,0,0,474,475,5,58,0,0,475,88,1,0,0,0,476,477,5,44,0,0,477, + 90,1,0,0,0,478,479,5,43,0,0,479,92,1,0,0,0,480,481,5,45,0,0,481,94,1,0, + 0,0,482,483,5,42,0,0,483,96,1,0,0,0,484,485,5,47,0,0,485,98,1,0,0,0,486, + 487,5,37,0,0,487,100,1,0,0,0,488,489,5,110,0,0,489,490,5,111,0,0,490,491, + 5,116,0,0,491,102,1,0,0,0,492,493,5,62,0,0,493,104,1,0,0,0,494,495,5,62, + 0,0,495,496,5,61,0,0,496,106,1,0,0,0,497,498,5,60,0,0,498,108,1,0,0,0, + 499,500,5,60,0,0,500,501,5,61,0,0,501,110,1,0,0,0,502,503,5,61,0,0,503, + 504,5,61,0,0,504,112,1,0,0,0,505,506,5,33,0,0,506,507,5,61,0,0,507,114, + 1,0,0,0,508,509,5,97,0,0,509,510,5,110,0,0,510,511,5,100,0,0,511,116,1, + 0,0,0,512,513,5,111,0,0,513,514,5,114,0,0,514,118,1,0,0,0,515,516,5,105, + 0,0,516,517,5,102,0,0,517,120,1,0,0,0,518,519,5,101,0,0,519,520,5,108, + 0,0,520,521,5,115,0,0,521,522,5,101,0,0,522,122,1,0,0,0,523,524,5,126, + 0,0,524,124,1,0,0,0,525,526,5,110,0,0,526,527,5,117,0,0,527,528,5,108, + 0,0,528,529,5,108,0,0,529,126,1,0,0,0,530,531,5,116,0,0,531,532,5,114, + 0,0,532,533,5,117,0,0,533,534,5,101,0,0,534,128,1,0,0,0,535,536,5,102, + 0,0,536,537,5,97,0,0,537,538,5,108,0,0,538,539,5,115,0,0,539,540,5,101, + 0,0,540,130,1,0,0,0,541,542,5,48,0,0,542,543,5,120,0,0,543,545,1,0,0,0, + 544,546,3,145,72,0,545,544,1,0,0,0,546,547,1,0,0,0,547,545,1,0,0,0,547, + 548,1,0,0,0,548,132,1,0,0,0,549,551,3,143,71,0,550,549,1,0,0,0,551,552, + 1,0,0,0,552,550,1,0,0,0,552,553,1,0,0,0,553,557,1,0,0,0,554,557,3,139, + 69,0,555,557,3,141,70,0,556,550,1,0,0,0,556,554,1,0,0,0,556,555,1,0,0, + 0,557,134,1,0,0,0,558,563,5,34,0,0,559,562,3,147,73,0,560,562,8,4,0,0, + 561,559,1,0,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,566,1,0,0,0,565,563,1,0,0,0,566,577,5,34,0,0,567,572,5,39, + 0,0,568,571,3,147,73,0,569,571,8,5,0,0,570,568,1,0,0,0,570,569,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,577,5,39,0,0,576,558,1,0,0,0,576,567,1,0,0,0,577,136,1,0,0, + 0,578,579,5,64,0,0,579,580,5,100,0,0,580,581,5,101,0,0,581,582,5,108,0, + 0,582,583,5,101,0,0,583,584,5,116,0,0,584,585,5,101,0,0,585,138,1,0,0, + 0,586,588,5,46,0,0,587,589,3,143,71,0,588,587,1,0,0,0,589,590,1,0,0,0, + 590,588,1,0,0,0,590,591,1,0,0,0,591,140,1,0,0,0,592,594,3,143,71,0,593, + 592,1,0,0,0,594,595,1,0,0,0,595,593,1,0,0,0,595,596,1,0,0,0,596,597,1, + 0,0,0,597,599,5,46,0,0,598,600,3,143,71,0,599,598,1,0,0,0,600,601,1,0, + 0,0,601,599,1,0,0,0,601,602,1,0,0,0,602,142,1,0,0,0,603,604,7,6,0,0,604, + 144,1,0,0,0,605,606,7,7,0,0,606,146,1,0,0,0,607,608,5,92,0,0,608,612,7, + 8,0,0,609,612,3,151,75,0,610,612,3,149,74,0,611,607,1,0,0,0,611,609,1, + 0,0,0,611,610,1,0,0,0,612,148,1,0,0,0,613,614,5,92,0,0,614,615,2,48,51, + 0,615,616,2,48,55,0,616,623,2,48,55,0,617,618,5,92,0,0,618,619,2,48,55, + 0,619,623,2,48,55,0,620,621,5,92,0,0,621,623,2,48,55,0,622,613,1,0,0,0, + 622,617,1,0,0,0,622,620,1,0,0,0,623,150,1,0,0,0,624,625,5,92,0,0,625,626, + 5,117,0,0,626,627,3,145,72,0,627,628,3,145,72,0,628,629,3,145,72,0,629, + 630,3,145,72,0,630,152,1,0,0,0,631,635,7,9,0,0,632,634,7,10,0,0,633,632, + 1,0,0,0,634,637,1,0,0,0,635,633,1,0,0,0,635,636,1,0,0,0,636,154,1,0,0, + 0,637,635,1,0,0,0,638,644,7,11,0,0,639,643,7,12,0,0,640,641,7,13,0,0,641, + 643,7,14,0,0,642,639,1,0,0,0,642,640,1,0,0,0,643,646,1,0,0,0,644,642,1, + 0,0,0,644,645,1,0,0,0,645,156,1,0,0,0,646,644,1,0,0,0,647,648,5,35,0,0, + 648,649,3,153,76,0,649,158,1,0,0,0,650,651,5,35,0,0,651,652,3,135,67,0, + 652,160,1,0,0,0,653,654,5,46,0,0,654,655,3,155,77,0,655,162,1,0,0,0,656, + 657,5,46,0,0,657,658,3,135,67,0,658,164,1,0,0,0,659,660,5,36,0,0,660,661, + 3,155,77,0,661,166,1,0,0,0,662,663,5,36,0,0,663,664,5,36,0,0,664,665,1, + 0,0,0,665,666,3,155,77,0,666,168,1,0,0,0,667,668,5,36,0,0,668,669,5,36, + 0,0,669,670,1,0,0,0,670,671,3,135,67,0,671,170,1,0,0,0,672,673,5,58,0, + 0,673,674,3,155,77,0,674,172,1,0,0,0,675,676,5,37,0,0,676,677,3,155,77, + 0,677,174,1,0,0,0,678,679,5,37,0,0,679,680,3,135,67,0,680,176,1,0,0,0, + 681,682,3,155,77,0,682,178,1,0,0,0,25,0,181,191,197,203,209,213,224,230, + 547,552,556,561,563,570,572,576,590,595,601,611,622,635,642,644,1,6,0, + 0 }; public static readonly ATN _ATN = diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 index 43a3e3c..cebe75c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.g4 @@ -16,6 +16,7 @@ PRE_IF : '@if'; PRE_ELSE : '@else'; PRE_ELSE_IF : '@else-if'; MIXIN : '@mixin'; +MIXIN_SLOT : '@mixin-slot'; WHILE : '@while'; FOR : '@for'; FROM : 'from'; diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.interp b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.interp index 46b9007..6d8af87 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.interp +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.interp @@ -8,6 +8,7 @@ null '@else' '@else-if' '@mixin' +'@mixin-slot' '@while' '@for' 'from' @@ -88,6 +89,7 @@ PRE_IF PRE_ELSE PRE_ELSE_IF MIXIN +MIXIN_SLOT WHILE FOR FROM @@ -169,6 +171,7 @@ PRE_IF PRE_ELSE PRE_ELSE_IF MIXIN +MIXIN_SLOT WHILE FOR FROM @@ -256,4 +259,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 77, 669, 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, 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, 1, 0, 1, 0, 3, 0, 180, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 188, 8, 1, 10, 1, 12, 1, 191, 9, 1, 1, 1, 4, 1, 194, 8, 1, 11, 1, 12, 1, 195, 1, 1, 1, 1, 5, 1, 200, 8, 1, 10, 1, 12, 1, 203, 9, 1, 1, 1, 4, 1, 206, 8, 1, 11, 1, 12, 1, 207, 5, 1, 210, 8, 1, 10, 1, 12, 1, 213, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 221, 8, 2, 10, 2, 12, 2, 224, 9, 2, 1, 3, 4, 3, 227, 8, 3, 11, 3, 12, 3, 228, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 4, 64, 532, 8, 64, 11, 64, 12, 64, 533, 1, 65, 4, 65, 537, 8, 65, 11, 65, 12, 65, 538, 1, 65, 1, 65, 3, 65, 543, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 548, 8, 66, 10, 66, 12, 66, 551, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 557, 8, 66, 10, 66, 12, 66, 560, 9, 66, 1, 66, 3, 66, 563, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 4, 68, 575, 8, 68, 11, 68, 12, 68, 576, 1, 69, 4, 69, 580, 8, 69, 11, 69, 12, 69, 581, 1, 69, 1, 69, 4, 69, 586, 8, 69, 11, 69, 12, 69, 587, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 598, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 609, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 5, 75, 620, 8, 75, 10, 75, 12, 75, 623, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 629, 8, 76, 10, 76, 12, 76, 632, 9, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 0, 0, 88, 1, 1, 3, 0, 5, 0, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 60, 125, 61, 127, 62, 129, 63, 131, 64, 133, 65, 135, 66, 137, 0, 139, 0, 141, 0, 143, 0, 145, 0, 147, 0, 149, 0, 151, 0, 153, 0, 155, 67, 157, 68, 159, 69, 161, 70, 163, 71, 165, 72, 167, 73, 169, 74, 171, 75, 173, 76, 175, 77, 1, 0, 15, 1, 0, 42, 42, 2, 0, 42, 42, 47, 47, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 6, 0, 42, 42, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 7, 0, 42, 42, 45, 46, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 46, 46, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 45, 45, 2, 0, 65, 90, 97, 122, 684, 0, 1, 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, 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, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 3, 183, 1, 0, 0, 0, 5, 216, 1, 0, 0, 0, 7, 226, 1, 0, 0, 0, 9, 232, 1, 0, 0, 0, 11, 237, 1, 0, 0, 0, 13, 247, 1, 0, 0, 0, 15, 251, 1, 0, 0, 0, 17, 257, 1, 0, 0, 0, 19, 266, 1, 0, 0, 0, 21, 273, 1, 0, 0, 0, 23, 280, 1, 0, 0, 0, 25, 285, 1, 0, 0, 0, 27, 290, 1, 0, 0, 0, 29, 298, 1, 0, 0, 0, 31, 301, 1, 0, 0, 0, 33, 307, 1, 0, 0, 0, 35, 310, 1, 0, 0, 0, 37, 315, 1, 0, 0, 0, 39, 322, 1, 0, 0, 0, 41, 331, 1, 0, 0, 0, 43, 338, 1, 0, 0, 0, 45, 352, 1, 0, 0, 0, 47, 361, 1, 0, 0, 0, 49, 369, 1, 0, 0, 0, 51, 376, 1, 0, 0, 0, 53, 381, 1, 0, 0, 0, 55, 389, 1, 0, 0, 0, 57, 396, 1, 0, 0, 0, 59, 404, 1, 0, 0, 0, 61, 419, 1, 0, 0, 0, 63, 434, 1, 0, 0, 0, 65, 436, 1, 0, 0, 0, 67, 438, 1, 0, 0, 0, 69, 440, 1, 0, 0, 0, 71, 442, 1, 0, 0, 0, 73, 444, 1, 0, 0, 0, 75, 446, 1, 0, 0, 0, 77, 448, 1, 0, 0, 0, 79, 450, 1, 0, 0, 0, 81, 453, 1, 0, 0, 0, 83, 456, 1, 0, 0, 0, 85, 459, 1, 0, 0, 0, 87, 462, 1, 0, 0, 0, 89, 464, 1, 0, 0, 0, 91, 466, 1, 0, 0, 0, 93, 468, 1, 0, 0, 0, 95, 470, 1, 0, 0, 0, 97, 472, 1, 0, 0, 0, 99, 474, 1, 0, 0, 0, 101, 478, 1, 0, 0, 0, 103, 480, 1, 0, 0, 0, 105, 483, 1, 0, 0, 0, 107, 485, 1, 0, 0, 0, 109, 488, 1, 0, 0, 0, 111, 491, 1, 0, 0, 0, 113, 494, 1, 0, 0, 0, 115, 498, 1, 0, 0, 0, 117, 501, 1, 0, 0, 0, 119, 504, 1, 0, 0, 0, 121, 509, 1, 0, 0, 0, 123, 511, 1, 0, 0, 0, 125, 516, 1, 0, 0, 0, 127, 521, 1, 0, 0, 0, 129, 527, 1, 0, 0, 0, 131, 542, 1, 0, 0, 0, 133, 562, 1, 0, 0, 0, 135, 564, 1, 0, 0, 0, 137, 572, 1, 0, 0, 0, 139, 579, 1, 0, 0, 0, 141, 589, 1, 0, 0, 0, 143, 591, 1, 0, 0, 0, 145, 597, 1, 0, 0, 0, 147, 608, 1, 0, 0, 0, 149, 610, 1, 0, 0, 0, 151, 617, 1, 0, 0, 0, 153, 624, 1, 0, 0, 0, 155, 633, 1, 0, 0, 0, 157, 636, 1, 0, 0, 0, 159, 639, 1, 0, 0, 0, 161, 642, 1, 0, 0, 0, 163, 645, 1, 0, 0, 0, 165, 648, 1, 0, 0, 0, 167, 653, 1, 0, 0, 0, 169, 658, 1, 0, 0, 0, 171, 661, 1, 0, 0, 0, 173, 664, 1, 0, 0, 0, 175, 667, 1, 0, 0, 0, 177, 180, 3, 5, 2, 0, 178, 180, 3, 3, 1, 0, 179, 177, 1, 0, 0, 0, 179, 178, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 182, 6, 0, 0, 0, 182, 2, 1, 0, 0, 0, 183, 184, 5, 47, 0, 0, 184, 185, 5, 42, 0, 0, 185, 189, 1, 0, 0, 0, 186, 188, 8, 0, 0, 0, 187, 186, 1, 0, 0, 0, 188, 191, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 192, 194, 5, 42, 0, 0, 193, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 195, 196, 1, 0, 0, 0, 196, 211, 1, 0, 0, 0, 197, 201, 8, 1, 0, 0, 198, 200, 8, 0, 0, 0, 199, 198, 1, 0, 0, 0, 200, 203, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0, 202, 205, 1, 0, 0, 0, 203, 201, 1, 0, 0, 0, 204, 206, 5, 42, 0, 0, 205, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 210, 1, 0, 0, 0, 209, 197, 1, 0, 0, 0, 210, 213, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 214, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 214, 215, 5, 47, 0, 0, 215, 4, 1, 0, 0, 0, 216, 217, 5, 47, 0, 0, 217, 218, 5, 47, 0, 0, 218, 222, 1, 0, 0, 0, 219, 221, 8, 2, 0, 0, 220, 219, 1, 0, 0, 0, 221, 224, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 6, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 225, 227, 7, 3, 0, 0, 226, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 6, 3, 0, 0, 231, 8, 1, 0, 0, 0, 232, 233, 5, 64, 0, 0, 233, 234, 5, 117, 0, 0, 234, 235, 5, 115, 0, 0, 235, 236, 5, 101, 0, 0, 236, 10, 1, 0, 0, 0, 237, 238, 5, 64, 0, 0, 238, 239, 5, 102, 0, 0, 239, 240, 5, 117, 0, 0, 240, 241, 5, 110, 0, 0, 241, 242, 5, 99, 0, 0, 242, 243, 5, 116, 0, 0, 243, 244, 5, 105, 0, 0, 244, 245, 5, 111, 0, 0, 245, 246, 5, 110, 0, 0, 246, 12, 1, 0, 0, 0, 247, 248, 5, 64, 0, 0, 248, 249, 5, 105, 0, 0, 249, 250, 5, 102, 0, 0, 250, 14, 1, 0, 0, 0, 251, 252, 5, 64, 0, 0, 252, 253, 5, 101, 0, 0, 253, 254, 5, 108, 0, 0, 254, 255, 5, 115, 0, 0, 255, 256, 5, 101, 0, 0, 256, 16, 1, 0, 0, 0, 257, 258, 5, 64, 0, 0, 258, 259, 5, 101, 0, 0, 259, 260, 5, 108, 0, 0, 260, 261, 5, 115, 0, 0, 261, 262, 5, 101, 0, 0, 262, 263, 5, 45, 0, 0, 263, 264, 5, 105, 0, 0, 264, 265, 5, 102, 0, 0, 265, 18, 1, 0, 0, 0, 266, 267, 5, 64, 0, 0, 267, 268, 5, 109, 0, 0, 268, 269, 5, 105, 0, 0, 269, 270, 5, 120, 0, 0, 270, 271, 5, 105, 0, 0, 271, 272, 5, 110, 0, 0, 272, 20, 1, 0, 0, 0, 273, 274, 5, 64, 0, 0, 274, 275, 5, 119, 0, 0, 275, 276, 5, 104, 0, 0, 276, 277, 5, 105, 0, 0, 277, 278, 5, 108, 0, 0, 278, 279, 5, 101, 0, 0, 279, 22, 1, 0, 0, 0, 280, 281, 5, 64, 0, 0, 281, 282, 5, 102, 0, 0, 282, 283, 5, 111, 0, 0, 283, 284, 5, 114, 0, 0, 284, 24, 1, 0, 0, 0, 285, 286, 5, 102, 0, 0, 286, 287, 5, 114, 0, 0, 287, 288, 5, 111, 0, 0, 288, 289, 5, 109, 0, 0, 289, 26, 1, 0, 0, 0, 290, 291, 5, 116, 0, 0, 291, 292, 5, 104, 0, 0, 292, 293, 5, 114, 0, 0, 293, 294, 5, 111, 0, 0, 294, 295, 5, 117, 0, 0, 295, 296, 5, 103, 0, 0, 296, 297, 5, 104, 0, 0, 297, 28, 1, 0, 0, 0, 298, 299, 5, 116, 0, 0, 299, 300, 5, 111, 0, 0, 300, 30, 1, 0, 0, 0, 301, 302, 5, 64, 0, 0, 302, 303, 5, 101, 0, 0, 303, 304, 5, 97, 0, 0, 304, 305, 5, 99, 0, 0, 305, 306, 5, 104, 0, 0, 306, 32, 1, 0, 0, 0, 307, 308, 5, 105, 0, 0, 308, 309, 5, 110, 0, 0, 309, 34, 1, 0, 0, 0, 310, 311, 5, 64, 0, 0, 311, 312, 5, 115, 0, 0, 312, 313, 5, 101, 0, 0, 313, 314, 5, 116, 0, 0, 314, 36, 1, 0, 0, 0, 315, 316, 5, 64, 0, 0, 316, 317, 5, 109, 0, 0, 317, 318, 5, 101, 0, 0, 318, 319, 5, 114, 0, 0, 319, 320, 5, 103, 0, 0, 320, 321, 5, 101, 0, 0, 321, 38, 1, 0, 0, 0, 322, 323, 5, 64, 0, 0, 323, 324, 5, 114, 0, 0, 324, 325, 5, 101, 0, 0, 325, 326, 5, 113, 0, 0, 326, 327, 5, 117, 0, 0, 327, 328, 5, 105, 0, 0, 328, 329, 5, 114, 0, 0, 329, 330, 5, 101, 0, 0, 330, 40, 1, 0, 0, 0, 331, 332, 5, 64, 0, 0, 332, 333, 5, 115, 0, 0, 333, 334, 5, 116, 0, 0, 334, 335, 5, 97, 0, 0, 335, 336, 5, 103, 0, 0, 336, 337, 5, 101, 0, 0, 337, 42, 1, 0, 0, 0, 338, 339, 5, 64, 0, 0, 339, 340, 5, 100, 0, 0, 340, 341, 5, 101, 0, 0, 341, 342, 5, 102, 0, 0, 342, 343, 5, 105, 0, 0, 343, 344, 5, 110, 0, 0, 344, 345, 5, 101, 0, 0, 345, 346, 5, 45, 0, 0, 346, 347, 5, 115, 0, 0, 347, 348, 5, 116, 0, 0, 348, 349, 5, 97, 0, 0, 349, 350, 5, 103, 0, 0, 350, 351, 5, 101, 0, 0, 351, 44, 1, 0, 0, 0, 352, 353, 5, 64, 0, 0, 353, 354, 5, 105, 0, 0, 354, 355, 5, 110, 0, 0, 355, 356, 5, 99, 0, 0, 356, 357, 5, 108, 0, 0, 357, 358, 5, 117, 0, 0, 358, 359, 5, 100, 0, 0, 359, 360, 5, 101, 0, 0, 360, 46, 1, 0, 0, 0, 361, 362, 5, 64, 0, 0, 362, 363, 5, 114, 0, 0, 363, 364, 5, 101, 0, 0, 364, 365, 5, 116, 0, 0, 365, 366, 5, 117, 0, 0, 366, 367, 5, 114, 0, 0, 367, 368, 5, 110, 0, 0, 368, 48, 1, 0, 0, 0, 369, 370, 5, 64, 0, 0, 370, 371, 5, 112, 0, 0, 371, 372, 5, 97, 0, 0, 372, 373, 5, 116, 0, 0, 373, 374, 5, 99, 0, 0, 374, 375, 5, 104, 0, 0, 375, 50, 1, 0, 0, 0, 376, 377, 5, 64, 0, 0, 377, 378, 5, 110, 0, 0, 378, 379, 5, 101, 0, 0, 379, 380, 5, 119, 0, 0, 380, 52, 1, 0, 0, 0, 381, 382, 5, 64, 0, 0, 382, 383, 5, 98, 0, 0, 383, 384, 5, 101, 0, 0, 384, 385, 5, 102, 0, 0, 385, 386, 5, 111, 0, 0, 386, 387, 5, 114, 0, 0, 387, 388, 5, 101, 0, 0, 388, 54, 1, 0, 0, 0, 389, 390, 5, 64, 0, 0, 390, 391, 5, 97, 0, 0, 391, 392, 5, 102, 0, 0, 392, 393, 5, 116, 0, 0, 393, 394, 5, 101, 0, 0, 394, 395, 5, 114, 0, 0, 395, 56, 1, 0, 0, 0, 396, 397, 5, 64, 0, 0, 397, 398, 5, 103, 0, 0, 398, 399, 5, 108, 0, 0, 399, 400, 5, 111, 0, 0, 400, 401, 5, 98, 0, 0, 401, 402, 5, 97, 0, 0, 402, 403, 5, 108, 0, 0, 403, 58, 1, 0, 0, 0, 404, 405, 5, 64, 0, 0, 405, 406, 5, 99, 0, 0, 406, 407, 5, 114, 0, 0, 407, 408, 5, 101, 0, 0, 408, 409, 5, 97, 0, 0, 409, 410, 5, 116, 0, 0, 410, 411, 5, 101, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 99, 0, 0, 413, 414, 5, 111, 0, 0, 414, 415, 5, 110, 0, 0, 415, 416, 5, 102, 0, 0, 416, 417, 5, 105, 0, 0, 417, 418, 5, 103, 0, 0, 418, 60, 1, 0, 0, 0, 419, 420, 5, 64, 0, 0, 420, 421, 5, 117, 0, 0, 421, 422, 5, 112, 0, 0, 422, 423, 5, 100, 0, 0, 423, 424, 5, 97, 0, 0, 424, 425, 5, 116, 0, 0, 425, 426, 5, 101, 0, 0, 426, 427, 5, 45, 0, 0, 427, 428, 5, 99, 0, 0, 428, 429, 5, 111, 0, 0, 429, 430, 5, 110, 0, 0, 430, 431, 5, 102, 0, 0, 431, 432, 5, 105, 0, 0, 432, 433, 5, 103, 0, 0, 433, 62, 1, 0, 0, 0, 434, 435, 5, 123, 0, 0, 435, 64, 1, 0, 0, 0, 436, 437, 5, 125, 0, 0, 437, 66, 1, 0, 0, 0, 438, 439, 5, 40, 0, 0, 439, 68, 1, 0, 0, 0, 440, 441, 5, 41, 0, 0, 441, 70, 1, 0, 0, 0, 442, 443, 5, 91, 0, 0, 443, 72, 1, 0, 0, 0, 444, 445, 5, 93, 0, 0, 445, 74, 1, 0, 0, 0, 446, 447, 5, 59, 0, 0, 447, 76, 1, 0, 0, 0, 448, 449, 5, 58, 0, 0, 449, 78, 1, 0, 0, 0, 450, 451, 5, 43, 0, 0, 451, 452, 5, 58, 0, 0, 452, 80, 1, 0, 0, 0, 453, 454, 5, 45, 0, 0, 454, 455, 5, 58, 0, 0, 455, 82, 1, 0, 0, 0, 456, 457, 5, 47, 0, 0, 457, 458, 5, 58, 0, 0, 458, 84, 1, 0, 0, 0, 459, 460, 5, 42, 0, 0, 460, 461, 5, 58, 0, 0, 461, 86, 1, 0, 0, 0, 462, 463, 5, 44, 0, 0, 463, 88, 1, 0, 0, 0, 464, 465, 5, 43, 0, 0, 465, 90, 1, 0, 0, 0, 466, 467, 5, 45, 0, 0, 467, 92, 1, 0, 0, 0, 468, 469, 5, 42, 0, 0, 469, 94, 1, 0, 0, 0, 470, 471, 5, 47, 0, 0, 471, 96, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 98, 1, 0, 0, 0, 474, 475, 5, 110, 0, 0, 475, 476, 5, 111, 0, 0, 476, 477, 5, 116, 0, 0, 477, 100, 1, 0, 0, 0, 478, 479, 5, 62, 0, 0, 479, 102, 1, 0, 0, 0, 480, 481, 5, 62, 0, 0, 481, 482, 5, 61, 0, 0, 482, 104, 1, 0, 0, 0, 483, 484, 5, 60, 0, 0, 484, 106, 1, 0, 0, 0, 485, 486, 5, 60, 0, 0, 486, 487, 5, 61, 0, 0, 487, 108, 1, 0, 0, 0, 488, 489, 5, 61, 0, 0, 489, 490, 5, 61, 0, 0, 490, 110, 1, 0, 0, 0, 491, 492, 5, 33, 0, 0, 492, 493, 5, 61, 0, 0, 493, 112, 1, 0, 0, 0, 494, 495, 5, 97, 0, 0, 495, 496, 5, 110, 0, 0, 496, 497, 5, 100, 0, 0, 497, 114, 1, 0, 0, 0, 498, 499, 5, 111, 0, 0, 499, 500, 5, 114, 0, 0, 500, 116, 1, 0, 0, 0, 501, 502, 5, 105, 0, 0, 502, 503, 5, 102, 0, 0, 503, 118, 1, 0, 0, 0, 504, 505, 5, 101, 0, 0, 505, 506, 5, 108, 0, 0, 506, 507, 5, 115, 0, 0, 507, 508, 5, 101, 0, 0, 508, 120, 1, 0, 0, 0, 509, 510, 5, 126, 0, 0, 510, 122, 1, 0, 0, 0, 511, 512, 5, 110, 0, 0, 512, 513, 5, 117, 0, 0, 513, 514, 5, 108, 0, 0, 514, 515, 5, 108, 0, 0, 515, 124, 1, 0, 0, 0, 516, 517, 5, 116, 0, 0, 517, 518, 5, 114, 0, 0, 518, 519, 5, 117, 0, 0, 519, 520, 5, 101, 0, 0, 520, 126, 1, 0, 0, 0, 521, 522, 5, 102, 0, 0, 522, 523, 5, 97, 0, 0, 523, 524, 5, 108, 0, 0, 524, 525, 5, 115, 0, 0, 525, 526, 5, 101, 0, 0, 526, 128, 1, 0, 0, 0, 527, 528, 5, 48, 0, 0, 528, 529, 5, 120, 0, 0, 529, 531, 1, 0, 0, 0, 530, 532, 3, 143, 71, 0, 531, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 130, 1, 0, 0, 0, 535, 537, 3, 141, 70, 0, 536, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 543, 1, 0, 0, 0, 540, 543, 3, 137, 68, 0, 541, 543, 3, 139, 69, 0, 542, 536, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 541, 1, 0, 0, 0, 543, 132, 1, 0, 0, 0, 544, 549, 5, 34, 0, 0, 545, 548, 3, 145, 72, 0, 546, 548, 8, 4, 0, 0, 547, 545, 1, 0, 0, 0, 547, 546, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 563, 5, 34, 0, 0, 553, 558, 5, 39, 0, 0, 554, 557, 3, 145, 72, 0, 555, 557, 8, 5, 0, 0, 556, 554, 1, 0, 0, 0, 556, 555, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 561, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 5, 39, 0, 0, 562, 544, 1, 0, 0, 0, 562, 553, 1, 0, 0, 0, 563, 134, 1, 0, 0, 0, 564, 565, 5, 64, 0, 0, 565, 566, 5, 100, 0, 0, 566, 567, 5, 101, 0, 0, 567, 568, 5, 108, 0, 0, 568, 569, 5, 101, 0, 0, 569, 570, 5, 116, 0, 0, 570, 571, 5, 101, 0, 0, 571, 136, 1, 0, 0, 0, 572, 574, 5, 46, 0, 0, 573, 575, 3, 141, 70, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 138, 1, 0, 0, 0, 578, 580, 3, 141, 70, 0, 579, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 585, 5, 46, 0, 0, 584, 586, 3, 141, 70, 0, 585, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 140, 1, 0, 0, 0, 589, 590, 7, 6, 0, 0, 590, 142, 1, 0, 0, 0, 591, 592, 7, 7, 0, 0, 592, 144, 1, 0, 0, 0, 593, 594, 5, 92, 0, 0, 594, 598, 7, 8, 0, 0, 595, 598, 3, 149, 74, 0, 596, 598, 3, 147, 73, 0, 597, 593, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 597, 596, 1, 0, 0, 0, 598, 146, 1, 0, 0, 0, 599, 600, 5, 92, 0, 0, 600, 601, 2, 48, 51, 0, 601, 602, 2, 48, 55, 0, 602, 609, 2, 48, 55, 0, 603, 604, 5, 92, 0, 0, 604, 605, 2, 48, 55, 0, 605, 609, 2, 48, 55, 0, 606, 607, 5, 92, 0, 0, 607, 609, 2, 48, 55, 0, 608, 599, 1, 0, 0, 0, 608, 603, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 148, 1, 0, 0, 0, 610, 611, 5, 92, 0, 0, 611, 612, 5, 117, 0, 0, 612, 613, 3, 143, 71, 0, 613, 614, 3, 143, 71, 0, 614, 615, 3, 143, 71, 0, 615, 616, 3, 143, 71, 0, 616, 150, 1, 0, 0, 0, 617, 621, 7, 9, 0, 0, 618, 620, 7, 10, 0, 0, 619, 618, 1, 0, 0, 0, 620, 623, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 152, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 630, 7, 11, 0, 0, 625, 629, 7, 12, 0, 0, 626, 627, 7, 13, 0, 0, 627, 629, 7, 14, 0, 0, 628, 625, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 154, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 35, 0, 0, 634, 635, 3, 151, 75, 0, 635, 156, 1, 0, 0, 0, 636, 637, 5, 35, 0, 0, 637, 638, 3, 133, 66, 0, 638, 158, 1, 0, 0, 0, 639, 640, 5, 46, 0, 0, 640, 641, 3, 153, 76, 0, 641, 160, 1, 0, 0, 0, 642, 643, 5, 46, 0, 0, 643, 644, 3, 133, 66, 0, 644, 162, 1, 0, 0, 0, 645, 646, 5, 36, 0, 0, 646, 647, 3, 153, 76, 0, 647, 164, 1, 0, 0, 0, 648, 649, 5, 36, 0, 0, 649, 650, 5, 36, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 3, 153, 76, 0, 652, 166, 1, 0, 0, 0, 653, 654, 5, 36, 0, 0, 654, 655, 5, 36, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 3, 133, 66, 0, 657, 168, 1, 0, 0, 0, 658, 659, 5, 58, 0, 0, 659, 660, 3, 153, 76, 0, 660, 170, 1, 0, 0, 0, 661, 662, 5, 37, 0, 0, 662, 663, 3, 153, 76, 0, 663, 172, 1, 0, 0, 0, 664, 665, 5, 37, 0, 0, 665, 666, 3, 133, 66, 0, 666, 174, 1, 0, 0, 0, 667, 668, 3, 153, 76, 0, 668, 176, 1, 0, 0, 0, 25, 0, 179, 189, 195, 201, 207, 211, 222, 228, 533, 538, 542, 547, 549, 556, 558, 562, 576, 581, 587, 597, 608, 621, 628, 630, 1, 6, 0, 0] \ No newline at end of file +[4, 0, 78, 683, 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, 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, 1, 0, 1, 0, 3, 0, 182, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 190, 8, 1, 10, 1, 12, 1, 193, 9, 1, 1, 1, 4, 1, 196, 8, 1, 11, 1, 12, 1, 197, 1, 1, 1, 1, 5, 1, 202, 8, 1, 10, 1, 12, 1, 205, 9, 1, 1, 1, 4, 1, 208, 8, 1, 11, 1, 12, 1, 209, 5, 1, 212, 8, 1, 10, 1, 12, 1, 215, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 223, 8, 2, 10, 2, 12, 2, 226, 9, 2, 1, 3, 4, 3, 229, 8, 3, 11, 3, 12, 3, 230, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 546, 8, 65, 11, 65, 12, 65, 547, 1, 66, 4, 66, 551, 8, 66, 11, 66, 12, 66, 552, 1, 66, 1, 66, 3, 66, 557, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 562, 8, 67, 10, 67, 12, 67, 565, 9, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 571, 8, 67, 10, 67, 12, 67, 574, 9, 67, 1, 67, 3, 67, 577, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 4, 69, 589, 8, 69, 11, 69, 12, 69, 590, 1, 70, 4, 70, 594, 8, 70, 11, 70, 12, 70, 595, 1, 70, 1, 70, 4, 70, 600, 8, 70, 11, 70, 12, 70, 601, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 612, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 623, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 5, 76, 634, 8, 76, 10, 76, 12, 76, 637, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 643, 8, 77, 10, 77, 12, 77, 646, 9, 77, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 0, 0, 89, 1, 1, 3, 0, 5, 0, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 30, 65, 31, 67, 32, 69, 33, 71, 34, 73, 35, 75, 36, 77, 37, 79, 38, 81, 39, 83, 40, 85, 41, 87, 42, 89, 43, 91, 44, 93, 45, 95, 46, 97, 47, 99, 48, 101, 49, 103, 50, 105, 51, 107, 52, 109, 53, 111, 54, 113, 55, 115, 56, 117, 57, 119, 58, 121, 59, 123, 60, 125, 61, 127, 62, 129, 63, 131, 64, 133, 65, 135, 66, 137, 67, 139, 0, 141, 0, 143, 0, 145, 0, 147, 0, 149, 0, 151, 0, 153, 0, 155, 0, 157, 68, 159, 69, 161, 70, 163, 71, 165, 72, 167, 73, 169, 74, 171, 75, 173, 76, 175, 77, 177, 78, 1, 0, 15, 1, 0, 42, 42, 2, 0, 42, 42, 47, 47, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 6, 0, 42, 42, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 7, 0, 42, 42, 45, 46, 48, 57, 63, 63, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 46, 46, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 45, 45, 2, 0, 65, 90, 97, 122, 698, 0, 1, 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, 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, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 3, 185, 1, 0, 0, 0, 5, 218, 1, 0, 0, 0, 7, 228, 1, 0, 0, 0, 9, 234, 1, 0, 0, 0, 11, 239, 1, 0, 0, 0, 13, 249, 1, 0, 0, 0, 15, 253, 1, 0, 0, 0, 17, 259, 1, 0, 0, 0, 19, 268, 1, 0, 0, 0, 21, 275, 1, 0, 0, 0, 23, 287, 1, 0, 0, 0, 25, 294, 1, 0, 0, 0, 27, 299, 1, 0, 0, 0, 29, 304, 1, 0, 0, 0, 31, 312, 1, 0, 0, 0, 33, 315, 1, 0, 0, 0, 35, 321, 1, 0, 0, 0, 37, 324, 1, 0, 0, 0, 39, 329, 1, 0, 0, 0, 41, 336, 1, 0, 0, 0, 43, 345, 1, 0, 0, 0, 45, 352, 1, 0, 0, 0, 47, 366, 1, 0, 0, 0, 49, 375, 1, 0, 0, 0, 51, 383, 1, 0, 0, 0, 53, 390, 1, 0, 0, 0, 55, 395, 1, 0, 0, 0, 57, 403, 1, 0, 0, 0, 59, 410, 1, 0, 0, 0, 61, 418, 1, 0, 0, 0, 63, 433, 1, 0, 0, 0, 65, 448, 1, 0, 0, 0, 67, 450, 1, 0, 0, 0, 69, 452, 1, 0, 0, 0, 71, 454, 1, 0, 0, 0, 73, 456, 1, 0, 0, 0, 75, 458, 1, 0, 0, 0, 77, 460, 1, 0, 0, 0, 79, 462, 1, 0, 0, 0, 81, 464, 1, 0, 0, 0, 83, 467, 1, 0, 0, 0, 85, 470, 1, 0, 0, 0, 87, 473, 1, 0, 0, 0, 89, 476, 1, 0, 0, 0, 91, 478, 1, 0, 0, 0, 93, 480, 1, 0, 0, 0, 95, 482, 1, 0, 0, 0, 97, 484, 1, 0, 0, 0, 99, 486, 1, 0, 0, 0, 101, 488, 1, 0, 0, 0, 103, 492, 1, 0, 0, 0, 105, 494, 1, 0, 0, 0, 107, 497, 1, 0, 0, 0, 109, 499, 1, 0, 0, 0, 111, 502, 1, 0, 0, 0, 113, 505, 1, 0, 0, 0, 115, 508, 1, 0, 0, 0, 117, 512, 1, 0, 0, 0, 119, 515, 1, 0, 0, 0, 121, 518, 1, 0, 0, 0, 123, 523, 1, 0, 0, 0, 125, 525, 1, 0, 0, 0, 127, 530, 1, 0, 0, 0, 129, 535, 1, 0, 0, 0, 131, 541, 1, 0, 0, 0, 133, 556, 1, 0, 0, 0, 135, 576, 1, 0, 0, 0, 137, 578, 1, 0, 0, 0, 139, 586, 1, 0, 0, 0, 141, 593, 1, 0, 0, 0, 143, 603, 1, 0, 0, 0, 145, 605, 1, 0, 0, 0, 147, 611, 1, 0, 0, 0, 149, 622, 1, 0, 0, 0, 151, 624, 1, 0, 0, 0, 153, 631, 1, 0, 0, 0, 155, 638, 1, 0, 0, 0, 157, 647, 1, 0, 0, 0, 159, 650, 1, 0, 0, 0, 161, 653, 1, 0, 0, 0, 163, 656, 1, 0, 0, 0, 165, 659, 1, 0, 0, 0, 167, 662, 1, 0, 0, 0, 169, 667, 1, 0, 0, 0, 171, 672, 1, 0, 0, 0, 173, 675, 1, 0, 0, 0, 175, 678, 1, 0, 0, 0, 177, 681, 1, 0, 0, 0, 179, 182, 3, 5, 2, 0, 180, 182, 3, 3, 1, 0, 181, 179, 1, 0, 0, 0, 181, 180, 1, 0, 0, 0, 182, 183, 1, 0, 0, 0, 183, 184, 6, 0, 0, 0, 184, 2, 1, 0, 0, 0, 185, 186, 5, 47, 0, 0, 186, 187, 5, 42, 0, 0, 187, 191, 1, 0, 0, 0, 188, 190, 8, 0, 0, 0, 189, 188, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 195, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 196, 5, 42, 0, 0, 195, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 213, 1, 0, 0, 0, 199, 203, 8, 1, 0, 0, 200, 202, 8, 0, 0, 0, 201, 200, 1, 0, 0, 0, 202, 205, 1, 0, 0, 0, 203, 201, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 207, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 206, 208, 5, 42, 0, 0, 207, 206, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 212, 1, 0, 0, 0, 211, 199, 1, 0, 0, 0, 212, 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 216, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 217, 5, 47, 0, 0, 217, 4, 1, 0, 0, 0, 218, 219, 5, 47, 0, 0, 219, 220, 5, 47, 0, 0, 220, 224, 1, 0, 0, 0, 221, 223, 8, 2, 0, 0, 222, 221, 1, 0, 0, 0, 223, 226, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 6, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 227, 229, 7, 3, 0, 0, 228, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 233, 6, 3, 0, 0, 233, 8, 1, 0, 0, 0, 234, 235, 5, 64, 0, 0, 235, 236, 5, 117, 0, 0, 236, 237, 5, 115, 0, 0, 237, 238, 5, 101, 0, 0, 238, 10, 1, 0, 0, 0, 239, 240, 5, 64, 0, 0, 240, 241, 5, 102, 0, 0, 241, 242, 5, 117, 0, 0, 242, 243, 5, 110, 0, 0, 243, 244, 5, 99, 0, 0, 244, 245, 5, 116, 0, 0, 245, 246, 5, 105, 0, 0, 246, 247, 5, 111, 0, 0, 247, 248, 5, 110, 0, 0, 248, 12, 1, 0, 0, 0, 249, 250, 5, 64, 0, 0, 250, 251, 5, 105, 0, 0, 251, 252, 5, 102, 0, 0, 252, 14, 1, 0, 0, 0, 253, 254, 5, 64, 0, 0, 254, 255, 5, 101, 0, 0, 255, 256, 5, 108, 0, 0, 256, 257, 5, 115, 0, 0, 257, 258, 5, 101, 0, 0, 258, 16, 1, 0, 0, 0, 259, 260, 5, 64, 0, 0, 260, 261, 5, 101, 0, 0, 261, 262, 5, 108, 0, 0, 262, 263, 5, 115, 0, 0, 263, 264, 5, 101, 0, 0, 264, 265, 5, 45, 0, 0, 265, 266, 5, 105, 0, 0, 266, 267, 5, 102, 0, 0, 267, 18, 1, 0, 0, 0, 268, 269, 5, 64, 0, 0, 269, 270, 5, 109, 0, 0, 270, 271, 5, 105, 0, 0, 271, 272, 5, 120, 0, 0, 272, 273, 5, 105, 0, 0, 273, 274, 5, 110, 0, 0, 274, 20, 1, 0, 0, 0, 275, 276, 5, 64, 0, 0, 276, 277, 5, 109, 0, 0, 277, 278, 5, 105, 0, 0, 278, 279, 5, 120, 0, 0, 279, 280, 5, 105, 0, 0, 280, 281, 5, 110, 0, 0, 281, 282, 5, 45, 0, 0, 282, 283, 5, 115, 0, 0, 283, 284, 5, 108, 0, 0, 284, 285, 5, 111, 0, 0, 285, 286, 5, 116, 0, 0, 286, 22, 1, 0, 0, 0, 287, 288, 5, 64, 0, 0, 288, 289, 5, 119, 0, 0, 289, 290, 5, 104, 0, 0, 290, 291, 5, 105, 0, 0, 291, 292, 5, 108, 0, 0, 292, 293, 5, 101, 0, 0, 293, 24, 1, 0, 0, 0, 294, 295, 5, 64, 0, 0, 295, 296, 5, 102, 0, 0, 296, 297, 5, 111, 0, 0, 297, 298, 5, 114, 0, 0, 298, 26, 1, 0, 0, 0, 299, 300, 5, 102, 0, 0, 300, 301, 5, 114, 0, 0, 301, 302, 5, 111, 0, 0, 302, 303, 5, 109, 0, 0, 303, 28, 1, 0, 0, 0, 304, 305, 5, 116, 0, 0, 305, 306, 5, 104, 0, 0, 306, 307, 5, 114, 0, 0, 307, 308, 5, 111, 0, 0, 308, 309, 5, 117, 0, 0, 309, 310, 5, 103, 0, 0, 310, 311, 5, 104, 0, 0, 311, 30, 1, 0, 0, 0, 312, 313, 5, 116, 0, 0, 313, 314, 5, 111, 0, 0, 314, 32, 1, 0, 0, 0, 315, 316, 5, 64, 0, 0, 316, 317, 5, 101, 0, 0, 317, 318, 5, 97, 0, 0, 318, 319, 5, 99, 0, 0, 319, 320, 5, 104, 0, 0, 320, 34, 1, 0, 0, 0, 321, 322, 5, 105, 0, 0, 322, 323, 5, 110, 0, 0, 323, 36, 1, 0, 0, 0, 324, 325, 5, 64, 0, 0, 325, 326, 5, 115, 0, 0, 326, 327, 5, 101, 0, 0, 327, 328, 5, 116, 0, 0, 328, 38, 1, 0, 0, 0, 329, 330, 5, 64, 0, 0, 330, 331, 5, 109, 0, 0, 331, 332, 5, 101, 0, 0, 332, 333, 5, 114, 0, 0, 333, 334, 5, 103, 0, 0, 334, 335, 5, 101, 0, 0, 335, 40, 1, 0, 0, 0, 336, 337, 5, 64, 0, 0, 337, 338, 5, 114, 0, 0, 338, 339, 5, 101, 0, 0, 339, 340, 5, 113, 0, 0, 340, 341, 5, 117, 0, 0, 341, 342, 5, 105, 0, 0, 342, 343, 5, 114, 0, 0, 343, 344, 5, 101, 0, 0, 344, 42, 1, 0, 0, 0, 345, 346, 5, 64, 0, 0, 346, 347, 5, 115, 0, 0, 347, 348, 5, 116, 0, 0, 348, 349, 5, 97, 0, 0, 349, 350, 5, 103, 0, 0, 350, 351, 5, 101, 0, 0, 351, 44, 1, 0, 0, 0, 352, 353, 5, 64, 0, 0, 353, 354, 5, 100, 0, 0, 354, 355, 5, 101, 0, 0, 355, 356, 5, 102, 0, 0, 356, 357, 5, 105, 0, 0, 357, 358, 5, 110, 0, 0, 358, 359, 5, 101, 0, 0, 359, 360, 5, 45, 0, 0, 360, 361, 5, 115, 0, 0, 361, 362, 5, 116, 0, 0, 362, 363, 5, 97, 0, 0, 363, 364, 5, 103, 0, 0, 364, 365, 5, 101, 0, 0, 365, 46, 1, 0, 0, 0, 366, 367, 5, 64, 0, 0, 367, 368, 5, 105, 0, 0, 368, 369, 5, 110, 0, 0, 369, 370, 5, 99, 0, 0, 370, 371, 5, 108, 0, 0, 371, 372, 5, 117, 0, 0, 372, 373, 5, 100, 0, 0, 373, 374, 5, 101, 0, 0, 374, 48, 1, 0, 0, 0, 375, 376, 5, 64, 0, 0, 376, 377, 5, 114, 0, 0, 377, 378, 5, 101, 0, 0, 378, 379, 5, 116, 0, 0, 379, 380, 5, 117, 0, 0, 380, 381, 5, 114, 0, 0, 381, 382, 5, 110, 0, 0, 382, 50, 1, 0, 0, 0, 383, 384, 5, 64, 0, 0, 384, 385, 5, 112, 0, 0, 385, 386, 5, 97, 0, 0, 386, 387, 5, 116, 0, 0, 387, 388, 5, 99, 0, 0, 388, 389, 5, 104, 0, 0, 389, 52, 1, 0, 0, 0, 390, 391, 5, 64, 0, 0, 391, 392, 5, 110, 0, 0, 392, 393, 5, 101, 0, 0, 393, 394, 5, 119, 0, 0, 394, 54, 1, 0, 0, 0, 395, 396, 5, 64, 0, 0, 396, 397, 5, 98, 0, 0, 397, 398, 5, 101, 0, 0, 398, 399, 5, 102, 0, 0, 399, 400, 5, 111, 0, 0, 400, 401, 5, 114, 0, 0, 401, 402, 5, 101, 0, 0, 402, 56, 1, 0, 0, 0, 403, 404, 5, 64, 0, 0, 404, 405, 5, 97, 0, 0, 405, 406, 5, 102, 0, 0, 406, 407, 5, 116, 0, 0, 407, 408, 5, 101, 0, 0, 408, 409, 5, 114, 0, 0, 409, 58, 1, 0, 0, 0, 410, 411, 5, 64, 0, 0, 411, 412, 5, 103, 0, 0, 412, 413, 5, 108, 0, 0, 413, 414, 5, 111, 0, 0, 414, 415, 5, 98, 0, 0, 415, 416, 5, 97, 0, 0, 416, 417, 5, 108, 0, 0, 417, 60, 1, 0, 0, 0, 418, 419, 5, 64, 0, 0, 419, 420, 5, 99, 0, 0, 420, 421, 5, 114, 0, 0, 421, 422, 5, 101, 0, 0, 422, 423, 5, 97, 0, 0, 423, 424, 5, 116, 0, 0, 424, 425, 5, 101, 0, 0, 425, 426, 5, 45, 0, 0, 426, 427, 5, 99, 0, 0, 427, 428, 5, 111, 0, 0, 428, 429, 5, 110, 0, 0, 429, 430, 5, 102, 0, 0, 430, 431, 5, 105, 0, 0, 431, 432, 5, 103, 0, 0, 432, 62, 1, 0, 0, 0, 433, 434, 5, 64, 0, 0, 434, 435, 5, 117, 0, 0, 435, 436, 5, 112, 0, 0, 436, 437, 5, 100, 0, 0, 437, 438, 5, 97, 0, 0, 438, 439, 5, 116, 0, 0, 439, 440, 5, 101, 0, 0, 440, 441, 5, 45, 0, 0, 441, 442, 5, 99, 0, 0, 442, 443, 5, 111, 0, 0, 443, 444, 5, 110, 0, 0, 444, 445, 5, 102, 0, 0, 445, 446, 5, 105, 0, 0, 446, 447, 5, 103, 0, 0, 447, 64, 1, 0, 0, 0, 448, 449, 5, 123, 0, 0, 449, 66, 1, 0, 0, 0, 450, 451, 5, 125, 0, 0, 451, 68, 1, 0, 0, 0, 452, 453, 5, 40, 0, 0, 453, 70, 1, 0, 0, 0, 454, 455, 5, 41, 0, 0, 455, 72, 1, 0, 0, 0, 456, 457, 5, 91, 0, 0, 457, 74, 1, 0, 0, 0, 458, 459, 5, 93, 0, 0, 459, 76, 1, 0, 0, 0, 460, 461, 5, 59, 0, 0, 461, 78, 1, 0, 0, 0, 462, 463, 5, 58, 0, 0, 463, 80, 1, 0, 0, 0, 464, 465, 5, 43, 0, 0, 465, 466, 5, 58, 0, 0, 466, 82, 1, 0, 0, 0, 467, 468, 5, 45, 0, 0, 468, 469, 5, 58, 0, 0, 469, 84, 1, 0, 0, 0, 470, 471, 5, 47, 0, 0, 471, 472, 5, 58, 0, 0, 472, 86, 1, 0, 0, 0, 473, 474, 5, 42, 0, 0, 474, 475, 5, 58, 0, 0, 475, 88, 1, 0, 0, 0, 476, 477, 5, 44, 0, 0, 477, 90, 1, 0, 0, 0, 478, 479, 5, 43, 0, 0, 479, 92, 1, 0, 0, 0, 480, 481, 5, 45, 0, 0, 481, 94, 1, 0, 0, 0, 482, 483, 5, 42, 0, 0, 483, 96, 1, 0, 0, 0, 484, 485, 5, 47, 0, 0, 485, 98, 1, 0, 0, 0, 486, 487, 5, 37, 0, 0, 487, 100, 1, 0, 0, 0, 488, 489, 5, 110, 0, 0, 489, 490, 5, 111, 0, 0, 490, 491, 5, 116, 0, 0, 491, 102, 1, 0, 0, 0, 492, 493, 5, 62, 0, 0, 493, 104, 1, 0, 0, 0, 494, 495, 5, 62, 0, 0, 495, 496, 5, 61, 0, 0, 496, 106, 1, 0, 0, 0, 497, 498, 5, 60, 0, 0, 498, 108, 1, 0, 0, 0, 499, 500, 5, 60, 0, 0, 500, 501, 5, 61, 0, 0, 501, 110, 1, 0, 0, 0, 502, 503, 5, 61, 0, 0, 503, 504, 5, 61, 0, 0, 504, 112, 1, 0, 0, 0, 505, 506, 5, 33, 0, 0, 506, 507, 5, 61, 0, 0, 507, 114, 1, 0, 0, 0, 508, 509, 5, 97, 0, 0, 509, 510, 5, 110, 0, 0, 510, 511, 5, 100, 0, 0, 511, 116, 1, 0, 0, 0, 512, 513, 5, 111, 0, 0, 513, 514, 5, 114, 0, 0, 514, 118, 1, 0, 0, 0, 515, 516, 5, 105, 0, 0, 516, 517, 5, 102, 0, 0, 517, 120, 1, 0, 0, 0, 518, 519, 5, 101, 0, 0, 519, 520, 5, 108, 0, 0, 520, 521, 5, 115, 0, 0, 521, 522, 5, 101, 0, 0, 522, 122, 1, 0, 0, 0, 523, 524, 5, 126, 0, 0, 524, 124, 1, 0, 0, 0, 525, 526, 5, 110, 0, 0, 526, 527, 5, 117, 0, 0, 527, 528, 5, 108, 0, 0, 528, 529, 5, 108, 0, 0, 529, 126, 1, 0, 0, 0, 530, 531, 5, 116, 0, 0, 531, 532, 5, 114, 0, 0, 532, 533, 5, 117, 0, 0, 533, 534, 5, 101, 0, 0, 534, 128, 1, 0, 0, 0, 535, 536, 5, 102, 0, 0, 536, 537, 5, 97, 0, 0, 537, 538, 5, 108, 0, 0, 538, 539, 5, 115, 0, 0, 539, 540, 5, 101, 0, 0, 540, 130, 1, 0, 0, 0, 541, 542, 5, 48, 0, 0, 542, 543, 5, 120, 0, 0, 543, 545, 1, 0, 0, 0, 544, 546, 3, 145, 72, 0, 545, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 132, 1, 0, 0, 0, 549, 551, 3, 143, 71, 0, 550, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 557, 1, 0, 0, 0, 554, 557, 3, 139, 69, 0, 555, 557, 3, 141, 70, 0, 556, 550, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 555, 1, 0, 0, 0, 557, 134, 1, 0, 0, 0, 558, 563, 5, 34, 0, 0, 559, 562, 3, 147, 73, 0, 560, 562, 8, 4, 0, 0, 561, 559, 1, 0, 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, 566, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 577, 5, 34, 0, 0, 567, 572, 5, 39, 0, 0, 568, 571, 3, 147, 73, 0, 569, 571, 8, 5, 0, 0, 570, 568, 1, 0, 0, 0, 570, 569, 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, 577, 5, 39, 0, 0, 576, 558, 1, 0, 0, 0, 576, 567, 1, 0, 0, 0, 577, 136, 1, 0, 0, 0, 578, 579, 5, 64, 0, 0, 579, 580, 5, 100, 0, 0, 580, 581, 5, 101, 0, 0, 581, 582, 5, 108, 0, 0, 582, 583, 5, 101, 0, 0, 583, 584, 5, 116, 0, 0, 584, 585, 5, 101, 0, 0, 585, 138, 1, 0, 0, 0, 586, 588, 5, 46, 0, 0, 587, 589, 3, 143, 71, 0, 588, 587, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 140, 1, 0, 0, 0, 592, 594, 3, 143, 71, 0, 593, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 599, 5, 46, 0, 0, 598, 600, 3, 143, 71, 0, 599, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 142, 1, 0, 0, 0, 603, 604, 7, 6, 0, 0, 604, 144, 1, 0, 0, 0, 605, 606, 7, 7, 0, 0, 606, 146, 1, 0, 0, 0, 607, 608, 5, 92, 0, 0, 608, 612, 7, 8, 0, 0, 609, 612, 3, 151, 75, 0, 610, 612, 3, 149, 74, 0, 611, 607, 1, 0, 0, 0, 611, 609, 1, 0, 0, 0, 611, 610, 1, 0, 0, 0, 612, 148, 1, 0, 0, 0, 613, 614, 5, 92, 0, 0, 614, 615, 2, 48, 51, 0, 615, 616, 2, 48, 55, 0, 616, 623, 2, 48, 55, 0, 617, 618, 5, 92, 0, 0, 618, 619, 2, 48, 55, 0, 619, 623, 2, 48, 55, 0, 620, 621, 5, 92, 0, 0, 621, 623, 2, 48, 55, 0, 622, 613, 1, 0, 0, 0, 622, 617, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 150, 1, 0, 0, 0, 624, 625, 5, 92, 0, 0, 625, 626, 5, 117, 0, 0, 626, 627, 3, 145, 72, 0, 627, 628, 3, 145, 72, 0, 628, 629, 3, 145, 72, 0, 629, 630, 3, 145, 72, 0, 630, 152, 1, 0, 0, 0, 631, 635, 7, 9, 0, 0, 632, 634, 7, 10, 0, 0, 633, 632, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 154, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 644, 7, 11, 0, 0, 639, 643, 7, 12, 0, 0, 640, 641, 7, 13, 0, 0, 641, 643, 7, 14, 0, 0, 642, 639, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 156, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 648, 5, 35, 0, 0, 648, 649, 3, 153, 76, 0, 649, 158, 1, 0, 0, 0, 650, 651, 5, 35, 0, 0, 651, 652, 3, 135, 67, 0, 652, 160, 1, 0, 0, 0, 653, 654, 5, 46, 0, 0, 654, 655, 3, 155, 77, 0, 655, 162, 1, 0, 0, 0, 656, 657, 5, 46, 0, 0, 657, 658, 3, 135, 67, 0, 658, 164, 1, 0, 0, 0, 659, 660, 5, 36, 0, 0, 660, 661, 3, 155, 77, 0, 661, 166, 1, 0, 0, 0, 662, 663, 5, 36, 0, 0, 663, 664, 5, 36, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 3, 155, 77, 0, 666, 168, 1, 0, 0, 0, 667, 668, 5, 36, 0, 0, 668, 669, 5, 36, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 3, 135, 67, 0, 671, 170, 1, 0, 0, 0, 672, 673, 5, 58, 0, 0, 673, 674, 3, 155, 77, 0, 674, 172, 1, 0, 0, 0, 675, 676, 5, 37, 0, 0, 676, 677, 3, 155, 77, 0, 677, 174, 1, 0, 0, 0, 678, 679, 5, 37, 0, 0, 679, 680, 3, 135, 67, 0, 680, 176, 1, 0, 0, 0, 681, 682, 3, 155, 77, 0, 682, 178, 1, 0, 0, 0, 25, 0, 181, 191, 197, 203, 209, 213, 224, 230, 547, 552, 556, 561, 563, 570, 572, 576, 590, 595, 601, 611, 622, 635, 642, 644, 1, 6, 0, 0] \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.tokens b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.tokens index d586317..29a2d4c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.tokens +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_lexer.tokens @@ -6,133 +6,135 @@ PRE_IF=5 PRE_ELSE=6 PRE_ELSE_IF=7 MIXIN=8 -WHILE=9 -FOR=10 -FROM=11 -THROUGH=12 -TO=13 -EACH=14 -IN=15 -SET=16 -MERGE=17 -REQUIRE=18 -STAGE=19 -DEFINE_STAGE=20 -INCLUDE=21 -RETURN=22 -PATCH=23 -NEW=24 -BEFORE=25 -AFTER=26 -GLOBAL=27 -CREATE_CONFIG=28 -UPDATE_CONFIG=29 -LEFT_BRACE=30 -RIGHT_BRACE=31 -LEFT_PAREN=32 -RIGHT_PAREN=33 -LEFT_BRACKET=34 -RIGHT_BRACKET=35 -SEMICOLON=36 -COLON=37 -PLUS_COLON=38 -MINUS_COLON=39 -DIVIDE_COLON=40 -MULTIPLY_COLON=41 -COMMA=42 -ADD=43 -SUBTRACT=44 -MULTIPLY=45 -DIVIDE=46 -MODULUS=47 -NOT=48 -GREATER_THAN=49 -GREATER_THAN_EQUAL=50 -LESSER_THAN=51 -LESSER_THAN_EQUAL=52 -EQUAL_TO=53 -NOT_EQUAL_TO=54 -AND=55 -OR=56 -IF=57 -ELSE=58 -WITHOUT=59 -NONE=60 -TRUE=61 -FALSE=62 -HEX_NUMBER=63 -NUMBER=64 -STRING=65 -DELETE=66 -NAME=67 -STRING_NAME=68 -CLASS=69 -STRING_CLASS=70 -VARIABLE=71 -LOCALVARIABLE=72 -STRING_LOCALVARIABLE=73 -RULESET=74 -ENSURE=75 -STRING_ENSURE=76 -ELEMENT=77 +MIXIN_SLOT=9 +WHILE=10 +FOR=11 +FROM=12 +THROUGH=13 +TO=14 +EACH=15 +IN=16 +SET=17 +MERGE=18 +REQUIRE=19 +STAGE=20 +DEFINE_STAGE=21 +INCLUDE=22 +RETURN=23 +PATCH=24 +NEW=25 +BEFORE=26 +AFTER=27 +GLOBAL=28 +CREATE_CONFIG=29 +UPDATE_CONFIG=30 +LEFT_BRACE=31 +RIGHT_BRACE=32 +LEFT_PAREN=33 +RIGHT_PAREN=34 +LEFT_BRACKET=35 +RIGHT_BRACKET=36 +SEMICOLON=37 +COLON=38 +PLUS_COLON=39 +MINUS_COLON=40 +DIVIDE_COLON=41 +MULTIPLY_COLON=42 +COMMA=43 +ADD=44 +SUBTRACT=45 +MULTIPLY=46 +DIVIDE=47 +MODULUS=48 +NOT=49 +GREATER_THAN=50 +GREATER_THAN_EQUAL=51 +LESSER_THAN=52 +LESSER_THAN_EQUAL=53 +EQUAL_TO=54 +NOT_EQUAL_TO=55 +AND=56 +OR=57 +IF=58 +ELSE=59 +WITHOUT=60 +NONE=61 +TRUE=62 +FALSE=63 +HEX_NUMBER=64 +NUMBER=65 +STRING=66 +DELETE=67 +NAME=68 +STRING_NAME=69 +CLASS=70 +STRING_CLASS=71 +VARIABLE=72 +LOCALVARIABLE=73 +STRING_LOCALVARIABLE=74 +RULESET=75 +ENSURE=76 +STRING_ENSURE=77 +ELEMENT=78 '@use'=3 '@function'=4 '@if'=5 '@else'=6 '@else-if'=7 '@mixin'=8 -'@while'=9 -'@for'=10 -'from'=11 -'through'=12 -'to'=13 -'@each'=14 -'in'=15 -'@set'=16 -'@merge'=17 -'@require'=18 -'@stage'=19 -'@define-stage'=20 -'@include'=21 -'@return'=22 -'@patch'=23 -'@new'=24 -'@before'=25 -'@after'=26 -'@global'=27 -'@create-config'=28 -'@update-config'=29 -'{'=30 -'}'=31 -'('=32 -')'=33 -'['=34 -']'=35 -';'=36 -':'=37 -'+:'=38 -'-:'=39 -'/:'=40 -'*:'=41 -','=42 -'+'=43 -'-'=44 -'*'=45 -'/'=46 -'%'=47 -'not'=48 -'>'=49 -'>='=50 -'<'=51 -'<='=52 -'=='=53 -'!='=54 -'and'=55 -'or'=56 -'if'=57 -'else'=58 -'~'=59 -'null'=60 -'true'=61 -'false'=62 -'@delete'=66 +'@mixin-slot'=9 +'@while'=10 +'@for'=11 +'from'=12 +'through'=13 +'to'=14 +'@each'=15 +'in'=16 +'@set'=17 +'@merge'=18 +'@require'=19 +'@stage'=20 +'@define-stage'=21 +'@include'=22 +'@return'=23 +'@patch'=24 +'@new'=25 +'@before'=26 +'@after'=27 +'@global'=28 +'@create-config'=29 +'@update-config'=30 +'{'=31 +'}'=32 +'('=33 +')'=34 +'['=35 +']'=36 +';'=37 +':'=38 +'+:'=39 +'-:'=40 +'/:'=41 +'*:'=42 +','=43 +'+'=44 +'-'=45 +'*'=46 +'/'=47 +'%'=48 +'not'=49 +'>'=50 +'>='=51 +'<'=52 +'<='=53 +'=='=54 +'!='=55 +'and'=56 +'or'=57 +'if'=58 +'else'=59 +'~'=60 +'null'=61 +'true'=62 +'false'=63 +'@delete'=67 diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.cs index 2dbd170..adb7837 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.cs @@ -38,18 +38,18 @@ public partial class sassy_parser : Parser { protected static PredictionContextCache sharedContextCache = new PredictionContextCache(); public const int COMMENT=1, SPACE=2, USE=3, FUNCTION=4, PRE_IF=5, PRE_ELSE=6, PRE_ELSE_IF=7, - MIXIN=8, WHILE=9, FOR=10, FROM=11, THROUGH=12, TO=13, EACH=14, IN=15, - SET=16, MERGE=17, REQUIRE=18, STAGE=19, DEFINE_STAGE=20, INCLUDE=21, RETURN=22, - PATCH=23, NEW=24, BEFORE=25, AFTER=26, GLOBAL=27, CREATE_CONFIG=28, UPDATE_CONFIG=29, - LEFT_BRACE=30, RIGHT_BRACE=31, LEFT_PAREN=32, RIGHT_PAREN=33, LEFT_BRACKET=34, - RIGHT_BRACKET=35, SEMICOLON=36, COLON=37, PLUS_COLON=38, MINUS_COLON=39, - DIVIDE_COLON=40, MULTIPLY_COLON=41, COMMA=42, ADD=43, SUBTRACT=44, MULTIPLY=45, - DIVIDE=46, MODULUS=47, NOT=48, GREATER_THAN=49, GREATER_THAN_EQUAL=50, - LESSER_THAN=51, LESSER_THAN_EQUAL=52, EQUAL_TO=53, NOT_EQUAL_TO=54, AND=55, - OR=56, IF=57, ELSE=58, WITHOUT=59, NONE=60, TRUE=61, FALSE=62, HEX_NUMBER=63, - NUMBER=64, STRING=65, DELETE=66, NAME=67, STRING_NAME=68, CLASS=69, STRING_CLASS=70, - VARIABLE=71, LOCALVARIABLE=72, STRING_LOCALVARIABLE=73, RULESET=74, ENSURE=75, - STRING_ENSURE=76, ELEMENT=77; + MIXIN=8, MIXIN_SLOT=9, WHILE=10, FOR=11, FROM=12, THROUGH=13, TO=14, EACH=15, + IN=16, SET=17, MERGE=18, REQUIRE=19, STAGE=20, DEFINE_STAGE=21, INCLUDE=22, + RETURN=23, PATCH=24, NEW=25, BEFORE=26, AFTER=27, GLOBAL=28, CREATE_CONFIG=29, + UPDATE_CONFIG=30, LEFT_BRACE=31, RIGHT_BRACE=32, LEFT_PAREN=33, RIGHT_PAREN=34, + LEFT_BRACKET=35, RIGHT_BRACKET=36, SEMICOLON=37, COLON=38, PLUS_COLON=39, + MINUS_COLON=40, DIVIDE_COLON=41, MULTIPLY_COLON=42, COMMA=43, ADD=44, + SUBTRACT=45, MULTIPLY=46, DIVIDE=47, MODULUS=48, NOT=49, GREATER_THAN=50, + GREATER_THAN_EQUAL=51, LESSER_THAN=52, LESSER_THAN_EQUAL=53, EQUAL_TO=54, + NOT_EQUAL_TO=55, AND=56, OR=57, IF=58, ELSE=59, WITHOUT=60, NONE=61, TRUE=62, + FALSE=63, HEX_NUMBER=64, NUMBER=65, STRING=66, DELETE=67, NAME=68, STRING_NAME=69, + CLASS=70, STRING_CLASS=71, VARIABLE=72, LOCALVARIABLE=73, STRING_LOCALVARIABLE=74, + RULESET=75, ENSURE=76, STRING_ENSURE=77, ELEMENT=78; public const int RULE_patch = 0, RULE_top_level_statement = 1, RULE_patch_declaration = 2, RULE_patch_list = 3, RULE_sassy_string = 4, RULE_import_declaration = 5, @@ -67,10 +67,10 @@ public const int RULE_argument = 43, RULE_arg_decl_list = 44, RULE_arg_decl = 45, RULE_function_body = 46, RULE_function_statement = 47, RULE_fn_level_conditional = 48, RULE_fn_level_else = 49, RULE_fn_level_else_else = 50, RULE_fn_level_else_if = 51, RULE_fn_return = 52, - RULE_mixin_include = 53, RULE_for_loop = 54, RULE_top_level_for_loop = 55, - RULE_sel_level_for_loop = 56, RULE_each_loop = 57, RULE_top_level_each_loop = 58, - RULE_sel_level_each_loop = 59, RULE_while_loop = 60, RULE_top_level_while_loop = 61, - RULE_sel_level_while_loop = 62; + RULE_mixin_include = 53, RULE_mixin_block_include = 54, RULE_mixin_slot = 55, + RULE_for_loop = 56, RULE_top_level_for_loop = 57, RULE_sel_level_for_loop = 58, + RULE_each_loop = 59, RULE_top_level_each_loop = 60, RULE_sel_level_each_loop = 61, + RULE_while_loop = 62, RULE_top_level_while_loop = 63, RULE_sel_level_while_loop = 64; public static readonly string[] ruleNames = { "patch", "top_level_statement", "patch_declaration", "patch_list", "sassy_string", "import_declaration", "var_decl", "stage_def", "config_creation", "config_mutation", @@ -83,27 +83,28 @@ public const int "require_expression", "list", "list_values", "obj", "obj_values", "key_value", "argument_list", "argument", "arg_decl_list", "arg_decl", "function_body", "function_statement", "fn_level_conditional", "fn_level_else", "fn_level_else_else", - "fn_level_else_if", "fn_return", "mixin_include", "for_loop", "top_level_for_loop", - "sel_level_for_loop", "each_loop", "top_level_each_loop", "sel_level_each_loop", - "while_loop", "top_level_while_loop", "sel_level_while_loop" + "fn_level_else_if", "fn_return", "mixin_include", "mixin_block_include", + "mixin_slot", "for_loop", "top_level_for_loop", "sel_level_for_loop", + "each_loop", "top_level_each_loop", "sel_level_each_loop", "while_loop", + "top_level_while_loop", "sel_level_while_loop" }; private static readonly string[] _LiteralNames = { null, null, null, "'@use'", "'@function'", "'@if'", "'@else'", "'@else-if'", - "'@mixin'", "'@while'", "'@for'", "'from'", "'through'", "'to'", "'@each'", - "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", "'@define-stage'", - "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", "'@after'", - "'@global'", "'@create-config'", "'@update-config'", "'{'", "'}'", "'('", - "')'", "'['", "']'", "';'", "':'", "'+:'", "'-:'", "'/:'", "'*:'", "','", - "'+'", "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", "'<'", "'<='", - "'=='", "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", "'null'", "'true'", - "'false'", null, null, null, "'@delete'" + "'@mixin'", "'@mixin-slot'", "'@while'", "'@for'", "'from'", "'through'", + "'to'", "'@each'", "'in'", "'@set'", "'@merge'", "'@require'", "'@stage'", + "'@define-stage'", "'@include'", "'@return'", "'@patch'", "'@new'", "'@before'", + "'@after'", "'@global'", "'@create-config'", "'@update-config'", "'{'", + "'}'", "'('", "')'", "'['", "']'", "';'", "':'", "'+:'", "'-:'", "'/:'", + "'*:'", "','", "'+'", "'-'", "'*'", "'/'", "'%'", "'not'", "'>'", "'>='", + "'<'", "'<='", "'=='", "'!='", "'and'", "'or'", "'if'", "'else'", "'~'", + "'null'", "'true'", "'false'", null, null, null, "'@delete'" }; private static readonly string[] _SymbolicNames = { null, "COMMENT", "SPACE", "USE", "FUNCTION", "PRE_IF", "PRE_ELSE", "PRE_ELSE_IF", - "MIXIN", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", "IN", "SET", - "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", "PATCH", - "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", + "MIXIN", "MIXIN_SLOT", "WHILE", "FOR", "FROM", "THROUGH", "TO", "EACH", + "IN", "SET", "MERGE", "REQUIRE", "STAGE", "DEFINE_STAGE", "INCLUDE", "RETURN", + "PATCH", "NEW", "BEFORE", "AFTER", "GLOBAL", "CREATE_CONFIG", "UPDATE_CONFIG", "LEFT_BRACE", "RIGHT_BRACE", "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "COLON", "PLUS_COLON", "MINUS_COLON", "DIVIDE_COLON", "MULTIPLY_COLON", "COMMA", "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", "MODULUS", @@ -184,21 +185,21 @@ public PatchContext patch() { try { EnterOuterAlt(_localctx, 1); { - State = 127; + State = 131; ErrorHandler.Sync(this); _la = TokenStream.LA(1); do { { { - State = 126; + State = 130; top_level_statement(); } } - State = 129; + State = 133; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0) ); - State = 131; + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0) ); + State = 135; Match(Eof); } } @@ -281,48 +282,48 @@ public Top_level_statementContext top_level_statement() { Top_level_statementContext _localctx = new Top_level_statementContext(Context, State); EnterRule(_localctx, 2, RULE_top_level_statement); try { - State = 146; + State = 150; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case USE: EnterOuterAlt(_localctx, 1); { - State = 133; + State = 137; import_declaration(); } break; case VARIABLE: EnterOuterAlt(_localctx, 2); { - State = 134; + State = 138; var_decl(); } break; case DEFINE_STAGE: EnterOuterAlt(_localctx, 3); { - State = 135; + State = 139; stage_def(); } break; case FUNCTION: EnterOuterAlt(_localctx, 4); { - State = 136; + State = 140; function_def(); } break; case MIXIN: EnterOuterAlt(_localctx, 5); { - State = 137; + State = 141; mixin_def(); } break; case PRE_IF: EnterOuterAlt(_localctx, 6); { - State = 138; + State = 142; top_level_conditional(); } break; @@ -344,49 +345,49 @@ public Top_level_statementContext top_level_statement() { case ELEMENT: EnterOuterAlt(_localctx, 7); { - State = 139; + State = 143; selection_block(); } break; case PATCH: EnterOuterAlt(_localctx, 8); { - State = 140; + State = 144; patch_declaration(); } break; case CREATE_CONFIG: EnterOuterAlt(_localctx, 9); { - State = 141; + State = 145; config_creation(); } break; case UPDATE_CONFIG: EnterOuterAlt(_localctx, 10); { - State = 142; + State = 146; config_mutation(); } break; case FOR: EnterOuterAlt(_localctx, 11); { - State = 143; + State = 147; top_level_for_loop(); } break; case EACH: EnterOuterAlt(_localctx, 12); { - State = 144; + State = 148; top_level_each_loop(); } break; case WHILE: EnterOuterAlt(_localctx, 13); { - State = 145; + State = 149; top_level_while_loop(); } break; @@ -441,11 +442,11 @@ public Patch_declarationContext patch_declaration() { try { EnterOuterAlt(_localctx, 1); { - State = 148; + State = 152; Match(PATCH); - State = 149; + State = 153; patch_list(); - State = 150; + State = 154; Match(SEMICOLON); } } @@ -502,21 +503,21 @@ public Patch_listContext patch_list() { try { EnterOuterAlt(_localctx, 1); { - State = 152; + State = 156; sassy_string(); - State = 157; + State = 161; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==COMMA) { { { - State = 153; + State = 157; Match(COMMA); - State = 154; + State = 158; sassy_string(); } } - State = 159; + State = 163; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } @@ -591,14 +592,14 @@ public Sassy_stringContext sassy_string() { Sassy_stringContext _localctx = new Sassy_stringContext(Context, State); EnterRule(_localctx, 8, RULE_sassy_string); try { - State = 162; + State = 166; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case STRING: _localctx = new Quoted_stringContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 160; + State = 164; Match(STRING); } break; @@ -606,7 +607,7 @@ public Sassy_stringContext sassy_string() { _localctx = new Unquoted_stringContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 161; + State = 165; Match(ELEMENT); } break; @@ -662,11 +663,11 @@ public Import_declarationContext import_declaration() { try { EnterOuterAlt(_localctx, 1); { - State = 164; + State = 168; Match(USE); - State = 165; + State = 169; _localctx.imp = sassy_string(); - State = 166; + State = 170; Match(SEMICOLON); } } @@ -870,34 +871,34 @@ public Var_declContext var_decl() { EnterRule(_localctx, 12, RULE_var_decl); int _la; try { - State = 223; + State = 227; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,9,Context) ) { case 1: _localctx = new Normal_var_declContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 168; - ((Normal_var_declContext)_localctx).variable = Match(VARIABLE); State = 172; + ((Normal_var_declContext)_localctx).variable = Match(VARIABLE); + State = 176; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 169; + State = 173; ((Normal_var_declContext)_localctx).indexor = index(); } } - State = 174; + State = 178; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 175; + State = 179; Match(COLON); - State = 176; + State = 180; ((Normal_var_declContext)_localctx).val = expression(0); - State = 177; + State = 181; Match(SEMICOLON); } break; @@ -905,27 +906,27 @@ public Var_declContext var_decl() { _localctx = new Add_var_declContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 179; - ((Add_var_declContext)_localctx).variable = Match(VARIABLE); State = 183; + ((Add_var_declContext)_localctx).variable = Match(VARIABLE); + State = 187; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 180; + State = 184; ((Add_var_declContext)_localctx).indexor = index(); } } - State = 185; + State = 189; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 186; + State = 190; Match(PLUS_COLON); - State = 187; + State = 191; ((Add_var_declContext)_localctx).val = expression(0); - State = 188; + State = 192; Match(SEMICOLON); } break; @@ -933,27 +934,27 @@ public Var_declContext var_decl() { _localctx = new Subtract_var_declContext(_localctx); EnterOuterAlt(_localctx, 3); { - State = 190; - ((Subtract_var_declContext)_localctx).variable = Match(VARIABLE); State = 194; + ((Subtract_var_declContext)_localctx).variable = Match(VARIABLE); + State = 198; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 191; + State = 195; ((Subtract_var_declContext)_localctx).indexor = index(); } } - State = 196; + State = 200; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 197; + State = 201; Match(MINUS_COLON); - State = 198; + State = 202; ((Subtract_var_declContext)_localctx).val = expression(0); - State = 199; + State = 203; Match(SEMICOLON); } break; @@ -961,27 +962,27 @@ public Var_declContext var_decl() { _localctx = new Divide_var_declContext(_localctx); EnterOuterAlt(_localctx, 4); { - State = 201; - ((Divide_var_declContext)_localctx).variable = Match(VARIABLE); State = 205; + ((Divide_var_declContext)_localctx).variable = Match(VARIABLE); + State = 209; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 202; + State = 206; ((Divide_var_declContext)_localctx).indexor = index(); } } - State = 207; + State = 211; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 208; + State = 212; Match(DIVIDE_COLON); - State = 209; + State = 213; ((Divide_var_declContext)_localctx).val = expression(0); - State = 210; + State = 214; Match(SEMICOLON); } break; @@ -989,27 +990,27 @@ public Var_declContext var_decl() { _localctx = new Multiply_var_declContext(_localctx); EnterOuterAlt(_localctx, 5); { - State = 212; - ((Multiply_var_declContext)_localctx).variable = Match(VARIABLE); State = 216; + ((Multiply_var_declContext)_localctx).variable = Match(VARIABLE); + State = 220; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 213; + State = 217; ((Multiply_var_declContext)_localctx).indexor = index(); } } - State = 218; + State = 222; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 219; + State = 223; Match(MULTIPLY_COLON); - State = 220; + State = 224; ((Multiply_var_declContext)_localctx).val = expression(0); - State = 221; + State = 225; Match(SEMICOLON); } break; @@ -1132,18 +1133,18 @@ public Stage_defContext stage_def() { EnterRule(_localctx, 14, RULE_stage_def); int _la; try { - State = 248; + State = 252; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,11,Context) ) { case 1: _localctx = new Implicit_stage_defContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 225; + State = 229; Match(DEFINE_STAGE); - State = 226; + State = 230; ((Implicit_stage_defContext)_localctx).stage = sassy_string(); - State = 227; + State = 231; Match(SEMICOLON); } break; @@ -1151,15 +1152,15 @@ public Stage_defContext stage_def() { _localctx = new Global_stage_defContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 229; + State = 233; Match(DEFINE_STAGE); - State = 230; + State = 234; ((Global_stage_defContext)_localctx).stage = sassy_string(); - State = 231; + State = 235; Match(COLON); - State = 232; + State = 236; Match(GLOBAL); - State = 233; + State = 237; Match(SEMICOLON); } break; @@ -1167,31 +1168,31 @@ public Stage_defContext stage_def() { _localctx = new Relative_stage_defContext(_localctx); EnterOuterAlt(_localctx, 3); { - State = 235; + State = 239; Match(DEFINE_STAGE); - State = 236; + State = 240; ((Relative_stage_defContext)_localctx).stage = sassy_string(); - State = 237; + State = 241; Match(COLON); - State = 238; - Match(LEFT_BRACE); State = 242; + Match(LEFT_BRACE); + State = 246; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==BEFORE || _la==AFTER) { { { - State = 239; + State = 243; ((Relative_stage_defContext)_localctx).attributes = stage_attribute(); } } - State = 244; + State = 248; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 245; + State = 249; Match(RIGHT_BRACE); - State = 246; + State = 250; Match(SEMICOLON); } break; @@ -1255,19 +1256,19 @@ public Config_creationContext config_creation() { try { EnterOuterAlt(_localctx, 1); { - State = 250; + State = 254; Match(CREATE_CONFIG); - State = 251; + State = 255; _localctx.label = sassy_string(); - State = 252; + State = 256; Match(COMMA); - State = 253; + State = 257; _localctx.config_name = sassy_string(); - State = 254; + State = 258; Match(COLON); - State = 255; + State = 259; _localctx.config_value = expression(0); - State = 256; + State = 260; Match(SEMICOLON); } } @@ -1377,30 +1378,30 @@ public Config_mutationContext config_mutation() { Config_mutationContext _localctx = new Config_mutationContext(Context, State); EnterRule(_localctx, 18, RULE_config_mutation); try { - State = 276; + State = 280; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,12,Context) ) { case 1: _localctx = new Update_config_fullContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 258; + State = 262; Match(UPDATE_CONFIG); - State = 259; + State = 263; ((Update_config_fullContext)_localctx).priority = expression(0); - State = 260; + State = 264; Match(COMMA); - State = 261; + State = 265; ((Update_config_fullContext)_localctx).label = sassy_string(); - State = 262; + State = 266; Match(COMMA); - State = 263; + State = 267; ((Update_config_fullContext)_localctx).config_name = sassy_string(); - State = 264; + State = 268; Match(COLON); - State = 265; + State = 269; ((Update_config_fullContext)_localctx).config_update = expression(0); - State = 266; + State = 270; Match(SEMICOLON); } break; @@ -1408,19 +1409,19 @@ public Config_mutationContext config_mutation() { _localctx = new Update_config_labelContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 268; + State = 272; Match(UPDATE_CONFIG); - State = 269; + State = 273; ((Update_config_labelContext)_localctx).priority = expression(0); - State = 270; + State = 274; Match(COMMA); - State = 271; + State = 275; ((Update_config_labelContext)_localctx).label = sassy_string(); - State = 272; + State = 276; Match(COLON); - State = 273; + State = 277; ((Update_config_labelContext)_localctx).config_update = expression(0); - State = 274; + State = 278; Match(SEMICOLON); } break; @@ -1505,18 +1506,18 @@ public Stage_attributeContext stage_attribute() { Stage_attributeContext _localctx = new Stage_attributeContext(Context, State); EnterRule(_localctx, 20, RULE_stage_attribute); try { - State = 286; + State = 290; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case BEFORE: _localctx = new Stage_value_beforeContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 278; + State = 282; Match(BEFORE); - State = 279; + State = 283; ((Stage_value_beforeContext)_localctx).stage = sassy_string(); - State = 280; + State = 284; Match(SEMICOLON); } break; @@ -1524,11 +1525,11 @@ public Stage_attributeContext stage_attribute() { _localctx = new Stage_value_afterContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 282; + State = 286; Match(AFTER); - State = 283; + State = 287; ((Stage_value_afterContext)_localctx).stage = sassy_string(); - State = 284; + State = 288; Match(SEMICOLON); } break; @@ -1593,21 +1594,21 @@ public Function_defContext function_def() { try { EnterOuterAlt(_localctx, 1); { - State = 288; + State = 292; Match(FUNCTION); - State = 289; + State = 293; _localctx.name = Match(ELEMENT); - State = 290; + State = 294; Match(LEFT_PAREN); - State = 291; + State = 295; _localctx.args = arg_decl_list(); - State = 292; + State = 296; Match(RIGHT_PAREN); - State = 293; + State = 297; Match(LEFT_BRACE); - State = 294; + State = 298; _localctx.body = function_body(); - State = 295; + State = 299; Match(RIGHT_BRACE); } } @@ -1668,21 +1669,21 @@ public Mixin_defContext mixin_def() { try { EnterOuterAlt(_localctx, 1); { - State = 297; + State = 301; Match(MIXIN); - State = 298; + State = 302; _localctx.name = Match(ELEMENT); - State = 299; + State = 303; Match(LEFT_PAREN); - State = 300; + State = 304; _localctx.args = arg_decl_list(); - State = 301; + State = 305; Match(RIGHT_PAREN); - State = 302; + State = 306; Match(LEFT_BRACE); - State = 303; + State = 307; _localctx.body = selector_body(); - State = 304; + State = 308; Match(RIGHT_BRACE); } } @@ -1747,34 +1748,34 @@ public Top_level_conditionalContext top_level_conditional() { try { EnterOuterAlt(_localctx, 1); { - State = 306; + State = 310; Match(PRE_IF); - State = 307; + State = 311; _localctx.cond = expression(0); - State = 308; - Match(LEFT_BRACE); State = 312; + Match(LEFT_BRACE); + State = 316; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 309; + State = 313; _localctx.body = top_level_statement(); } } - State = 314; + State = 318; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 315; + State = 319; Match(RIGHT_BRACE); - State = 317; + State = 321; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 316; + State = 320; _localctx.els = top_level_else(); } } @@ -1827,20 +1828,20 @@ public Top_level_elseContext top_level_else() { Top_level_elseContext _localctx = new Top_level_elseContext(Context, State); EnterRule(_localctx, 28, RULE_top_level_else); try { - State = 321; + State = 325; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case PRE_ELSE: EnterOuterAlt(_localctx, 1); { - State = 319; + State = 323; top_level_else_else(); } break; case PRE_ELSE_IF: EnterOuterAlt(_localctx, 2); { - State = 320; + State = 324; top_level_else_if(); } break; @@ -1901,25 +1902,25 @@ public Top_level_else_elseContext top_level_else_else() { try { EnterOuterAlt(_localctx, 1); { - State = 323; + State = 327; Match(PRE_ELSE); - State = 324; - Match(LEFT_BRACE); State = 328; + Match(LEFT_BRACE); + State = 332; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 325; + State = 329; _localctx.body = top_level_statement(); } } - State = 330; + State = 334; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 331; + State = 335; Match(RIGHT_BRACE); } } @@ -1984,34 +1985,34 @@ public Top_level_else_ifContext top_level_else_if() { try { EnterOuterAlt(_localctx, 1); { - State = 333; + State = 337; Match(PRE_ELSE_IF); - State = 334; + State = 338; _localctx.cond = expression(0); - State = 335; - Match(LEFT_BRACE); State = 339; + Match(LEFT_BRACE); + State = 343; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 336; + State = 340; _localctx.body = top_level_statement(); } } - State = 341; + State = 345; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 342; + State = 346; Match(RIGHT_BRACE); - State = 344; + State = 348; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 343; + State = 347; _localctx.els = top_level_else(); } } @@ -2068,13 +2069,13 @@ public Selection_blockContext selection_block() { try { EnterOuterAlt(_localctx, 1); { - State = 346; + State = 350; attributed_selector(); - State = 347; + State = 351; Match(LEFT_BRACE); - State = 348; + State = 352; selector_body(); - State = 349; + State = 353; Match(RIGHT_BRACE); } } @@ -2131,21 +2132,21 @@ public Attributed_selectorContext attributed_selector() { try { EnterOuterAlt(_localctx, 1); { - State = 354; + State = 358; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 17563648L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 35127296L) != 0)) { { { - State = 351; + State = 355; _localctx.attributes = attribute(); } } - State = 356; + State = 360; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 357; + State = 361; selector(0); } } @@ -2249,16 +2250,16 @@ public AttributeContext attribute() { AttributeContext _localctx = new AttributeContext(Context, State); EnterRule(_localctx, 38, RULE_attribute); try { - State = 365; + State = 369; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case REQUIRE: _localctx = new Require_modContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 359; + State = 363; Match(REQUIRE); - State = 360; + State = 364; ((Require_modContext)_localctx).expr = require_expression(0); } break; @@ -2266,9 +2267,9 @@ public AttributeContext attribute() { _localctx = new Run_at_stageContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 361; + State = 365; Match(STAGE); - State = 362; + State = 366; ((Run_at_stageContext)_localctx).stage = sassy_string(); } break; @@ -2276,9 +2277,9 @@ public AttributeContext attribute() { _localctx = new New_assetContext(_localctx); EnterOuterAlt(_localctx, 3); { - State = 363; + State = 367; Match(NEW); - State = 364; + State = 368; constructor_arguments(); } break; @@ -2341,35 +2342,35 @@ public Constructor_argumentsContext constructor_arguments() { try { EnterOuterAlt(_localctx, 1); { - State = 367; + State = 371; Match(LEFT_PAREN); - State = 376; + State = 380; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8070758418052284432L) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & 9095L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & -2305227237604982768L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9095L) != 0)) { { - State = 368; + State = 372; expression(0); - State = 373; + State = 377; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==COMMA) { { { - State = 369; + State = 373; Match(COMMA); - State = 370; + State = 374; expression(0); } } - State = 375; + State = 379; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } } } - State = 378; + State = 382; Match(RIGHT_PAREN); } } @@ -2914,7 +2915,7 @@ private SelectorContext selector(int _p) { int _alt; EnterOuterAlt(_localctx, 1); { - State = 427; + State = 431; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,26,Context) ) { case 1: @@ -2923,7 +2924,7 @@ private SelectorContext selector(int _p) { Context = _localctx; _prevctx = _localctx; - State = 381; + State = 385; Match(ELEMENT); } break; @@ -2932,7 +2933,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_element_stringContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 382; + State = 386; Match(STRING); } break; @@ -2941,7 +2942,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 383; + State = 387; Match(CLASS); } break; @@ -2950,7 +2951,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_string_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 384; + State = 388; Match(STRING_CLASS); } break; @@ -2959,27 +2960,27 @@ private SelectorContext selector(int _p) { _localctx = new Sel_class_captureContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 385; + State = 389; Match(CLASS); - State = 386; + State = 390; Match(COLON); - State = 387; - Match(LEFT_BRACKET); State = 391; + Match(LEFT_BRACKET); + State = 395; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 388; + State = 392; ((Sel_class_captureContext)_localctx).body = function_statement(); } } - State = 393; + State = 397; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 394; + State = 398; Match(RIGHT_BRACKET); } break; @@ -2988,27 +2989,27 @@ private SelectorContext selector(int _p) { _localctx = new Sel_string_class_captureContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 395; + State = 399; Match(STRING_CLASS); - State = 396; + State = 400; Match(COLON); - State = 397; - Match(LEFT_BRACKET); State = 401; + Match(LEFT_BRACKET); + State = 405; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 398; + State = 402; ((Sel_string_class_captureContext)_localctx).body = function_statement(); } } - State = 403; + State = 407; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 404; + State = 408; Match(RIGHT_BRACKET); } break; @@ -3017,7 +3018,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 405; + State = 409; Match(NAME); } break; @@ -3026,7 +3027,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_string_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 406; + State = 410; Match(STRING_NAME); } break; @@ -3035,7 +3036,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_rulesetContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 407; + State = 411; Match(RULESET); } break; @@ -3044,7 +3045,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_ensureContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 408; + State = 412; Match(ENSURE); } break; @@ -3053,7 +3054,7 @@ private SelectorContext selector(int _p) { _localctx = new Sel_string_ensureContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 409; + State = 413; Match(STRING_ENSURE); } break; @@ -3062,11 +3063,11 @@ private SelectorContext selector(int _p) { _localctx = new Sel_subContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 410; + State = 414; Match(LEFT_PAREN); - State = 411; + State = 415; ((Sel_subContext)_localctx).internal_selector = selector(0); - State = 412; + State = 416; Match(RIGHT_PAREN); } break; @@ -3075,9 +3076,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_add_elementContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 414; + State = 418; Match(ADD); - State = 415; + State = 419; ((Sel_add_elementContext)_localctx).element = Match(ELEMENT); } break; @@ -3086,9 +3087,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_add_string_elementContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 416; + State = 420; Match(ADD); - State = 417; + State = 421; ((Sel_add_string_elementContext)_localctx).str_element = Match(STRING); } break; @@ -3097,9 +3098,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_without_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 418; + State = 422; Match(WITHOUT); - State = 419; + State = 423; ((Sel_without_classContext)_localctx).field = Match(CLASS); } break; @@ -3108,9 +3109,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_without_string_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 420; + State = 424; Match(WITHOUT); - State = 421; + State = 425; ((Sel_without_string_classContext)_localctx).str_field = Match(STRING_CLASS); } break; @@ -3119,9 +3120,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_without_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 422; + State = 426; Match(WITHOUT); - State = 423; + State = 427; ((Sel_without_nameContext)_localctx).name = Match(NAME); } break; @@ -3130,9 +3131,9 @@ private SelectorContext selector(int _p) { _localctx = new Sel_without_string_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 424; + State = 428; Match(WITHOUT); - State = 425; + State = 429; ((Sel_without_string_nameContext)_localctx).str_name = Match(STRING_NAME); } break; @@ -3141,13 +3142,13 @@ private SelectorContext selector(int _p) { _localctx = new Sel_everythingContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 426; + State = 430; Match(MULTIPLY); } break; } Context.Stop = TokenStream.LT(-1); - State = 439; + State = 443; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,28,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { @@ -3156,7 +3157,7 @@ private SelectorContext selector(int _p) { TriggerExitRuleEvent(); _prevctx = _localctx; { - State = 437; + State = 441; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,27,Context) ) { case 1: @@ -3164,11 +3165,11 @@ private SelectorContext selector(int _p) { _localctx = new Sel_combinationContext(new SelectorContext(_parentctx, _parentState)); ((Sel_combinationContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_selector); - State = 429; + State = 433; if (!(Precpred(Context, 10))) throw new FailedPredicateException(this, "Precpred(Context, 10)"); - State = 430; + State = 434; Match(COMMA); - State = 431; + State = 435; ((Sel_combinationContext)_localctx).rhs = selector_no_children(0); } break; @@ -3177,11 +3178,11 @@ private SelectorContext selector(int _p) { _localctx = new Sel_childContext(new SelectorContext(_parentctx, _parentState)); ((Sel_childContext)_localctx).parent = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_selector); - State = 432; + State = 436; if (!(Precpred(Context, 9))) throw new FailedPredicateException(this, "Precpred(Context, 9)"); - State = 433; + State = 437; Match(GREATER_THAN); - State = 434; + State = 438; ((Sel_childContext)_localctx).child = selector_no_children(0); } break; @@ -3190,16 +3191,16 @@ private SelectorContext selector(int _p) { _localctx = new Sel_intersectionContext(new SelectorContext(_parentctx, _parentState)); ((Sel_intersectionContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_selector); - State = 435; + State = 439; if (!(Precpred(Context, 8))) throw new FailedPredicateException(this, "Precpred(Context, 8)"); - State = 436; + State = 440; ((Sel_intersectionContext)_localctx).rhs = selector_no_children(0); } break; } } } - State = 441; + State = 445; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,28,Context); } @@ -3678,7 +3679,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { int _alt; EnterOuterAlt(_localctx, 1); { - State = 487; + State = 491; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,31,Context) ) { case 1: @@ -3687,7 +3688,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { Context = _localctx; _prevctx = _localctx; - State = 443; + State = 447; Match(ELEMENT); } break; @@ -3696,7 +3697,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new String_elementContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 444; + State = 448; Match(STRING); } break; @@ -3705,7 +3706,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Class_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 445; + State = 449; Match(CLASS); } break; @@ -3714,7 +3715,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new String_class_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 446; + State = 450; Match(STRING_CLASS); } break; @@ -3723,27 +3724,27 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Class_capture_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 447; + State = 451; Match(CLASS); - State = 448; + State = 452; Match(COLON); - State = 449; - Match(LEFT_BRACKET); State = 453; + Match(LEFT_BRACKET); + State = 457; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 450; + State = 454; ((Class_capture_selectorContext)_localctx).body = function_statement(); } } - State = 455; + State = 459; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 456; + State = 460; Match(RIGHT_BRACKET); } break; @@ -3752,27 +3753,27 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new String_class_capture_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 457; + State = 461; Match(STRING_CLASS); - State = 458; + State = 462; Match(COLON); - State = 459; - Match(LEFT_BRACKET); State = 463; + Match(LEFT_BRACKET); + State = 467; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 460; + State = 464; ((String_class_capture_selectorContext)_localctx).body = function_statement(); } } - State = 465; + State = 469; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 466; + State = 470; Match(RIGHT_BRACKET); } break; @@ -3781,7 +3782,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new NameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 467; + State = 471; Match(NAME); } break; @@ -3790,7 +3791,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new String_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 468; + State = 472; Match(STRING_NAME); } break; @@ -3799,7 +3800,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Ruleset_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 469; + State = 473; Match(RULESET); } break; @@ -3808,11 +3809,11 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Sub_selectorContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 470; + State = 474; Match(LEFT_PAREN); - State = 471; + State = 475; ((Sub_selectorContext)_localctx).internal_selector = selector_no_children(0); - State = 472; + State = 476; Match(RIGHT_PAREN); } break; @@ -3821,9 +3822,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Add_elementContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 474; + State = 478; Match(ADD); - State = 475; + State = 479; ((Add_elementContext)_localctx).element = Match(ELEMENT); } break; @@ -3832,9 +3833,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Add_string_elementContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 476; + State = 480; Match(ADD); - State = 477; + State = 481; ((Add_string_elementContext)_localctx).str_element = Match(STRING); } break; @@ -3843,9 +3844,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Without_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 478; + State = 482; Match(WITHOUT); - State = 479; + State = 483; ((Without_classContext)_localctx).field = Match(CLASS); } break; @@ -3854,9 +3855,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Without_string_classContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 480; + State = 484; Match(WITHOUT); - State = 481; + State = 485; ((Without_string_classContext)_localctx).str_field = Match(STRING_CLASS); } break; @@ -3865,9 +3866,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Without_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 482; + State = 486; Match(WITHOUT); - State = 483; + State = 487; ((Without_nameContext)_localctx).name = Match(NAME); } break; @@ -3876,9 +3877,9 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Without_string_nameContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 484; + State = 488; Match(WITHOUT); - State = 485; + State = 489; ((Without_string_nameContext)_localctx).str_name = Match(STRING_NAME); } break; @@ -3887,13 +3888,13 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new EverythingContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 486; + State = 490; Match(MULTIPLY); } break; } Context.Stop = TokenStream.LT(-1); - State = 496; + State = 500; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,33,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { @@ -3902,7 +3903,7 @@ private Selector_no_childrenContext selector_no_children(int _p) { TriggerExitRuleEvent(); _prevctx = _localctx; { - State = 494; + State = 498; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,32,Context) ) { case 1: @@ -3910,11 +3911,11 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Combination_selectorContext(new Selector_no_childrenContext(_parentctx, _parentState)); ((Combination_selectorContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_selector_no_children); - State = 489; + State = 493; if (!(Precpred(Context, 9))) throw new FailedPredicateException(this, "Precpred(Context, 9)"); - State = 490; + State = 494; Match(COMMA); - State = 491; + State = 495; ((Combination_selectorContext)_localctx).rhs = selector_no_children(10); } break; @@ -3923,16 +3924,16 @@ private Selector_no_childrenContext selector_no_children(int _p) { _localctx = new Intersection_selectorContext(new Selector_no_childrenContext(_parentctx, _parentState)); ((Intersection_selectorContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_selector_no_children); - State = 492; + State = 496; if (!(Precpred(Context, 8))) throw new FailedPredicateException(this, "Precpred(Context, 8)"); - State = 493; + State = 497; ((Intersection_selectorContext)_localctx).rhs = selector_no_children(9); } break; } } } - State = 498; + State = 502; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,33,Context); } @@ -3987,17 +3988,17 @@ public Selector_bodyContext selector_body() { try { EnterOuterAlt(_localctx, 1); { - State = 502; + State = 506; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 499; + State = 503; selector_statement(); } } - State = 504; + State = 508; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } @@ -4048,6 +4049,12 @@ [System.Diagnostics.DebuggerNonUserCode] public Selection_blockContext selection [System.Diagnostics.DebuggerNonUserCode] public Mixin_includeContext mixin_include() { return GetRuleContext(0); } + [System.Diagnostics.DebuggerNonUserCode] public Mixin_block_includeContext mixin_block_include() { + return GetRuleContext(0); + } + [System.Diagnostics.DebuggerNonUserCode] public Mixin_slotContext mixin_slot() { + return GetRuleContext(0); + } public Selector_statementContext(ParserRuleContext parent, int invokingState) : base(parent, invokingState) { @@ -4076,86 +4083,100 @@ public Selector_statementContext selector_statement() { Selector_statementContext _localctx = new Selector_statementContext(Context, State); EnterRule(_localctx, 48, RULE_selector_statement); try { - State = 516; + State = 522; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,35,Context) ) { case 1: EnterOuterAlt(_localctx, 1); { - State = 505; + State = 509; var_decl(); } break; case 2: EnterOuterAlt(_localctx, 2); { - State = 506; + State = 510; sel_level_conditional(); } break; case 3: EnterOuterAlt(_localctx, 3); { - State = 507; + State = 511; sel_level_each_loop(); } break; case 4: EnterOuterAlt(_localctx, 4); { - State = 508; + State = 512; sel_level_while_loop(); } break; case 5: EnterOuterAlt(_localctx, 5); { - State = 509; + State = 513; sel_level_for_loop(); } break; case 6: EnterOuterAlt(_localctx, 6); { - State = 510; + State = 514; set_value(); } break; case 7: EnterOuterAlt(_localctx, 7); { - State = 511; + State = 515; delete_value(); } break; case 8: EnterOuterAlt(_localctx, 8); { - State = 512; + State = 516; merge_value(); } break; case 9: EnterOuterAlt(_localctx, 9); { - State = 513; + State = 517; field_set(); } break; case 10: EnterOuterAlt(_localctx, 10); { - State = 514; + State = 518; selection_block(); } break; case 11: EnterOuterAlt(_localctx, 11); { - State = 515; + State = 519; mixin_include(); } break; + case 12: + EnterOuterAlt(_localctx, 12); + { + State = 520; + mixin_block_include(); + } + break; + case 13: + EnterOuterAlt(_localctx, 13); + { + State = 521; + mixin_slot(); + } + break; } } catch (RecognitionException re) { @@ -4219,34 +4240,34 @@ public Sel_level_conditionalContext sel_level_conditional() { try { EnterOuterAlt(_localctx, 1); { - State = 518; + State = 524; Match(PRE_IF); - State = 519; + State = 525; _localctx.cond = expression(0); - State = 520; + State = 526; Match(LEFT_BRACE); - State = 524; + State = 530; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 521; + State = 527; _localctx.body = selector_statement(); } } - State = 526; + State = 532; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 527; + State = 533; Match(RIGHT_BRACE); - State = 529; + State = 535; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 528; + State = 534; _localctx.els = sel_level_else(); } } @@ -4299,20 +4320,20 @@ public Sel_level_elseContext sel_level_else() { Sel_level_elseContext _localctx = new Sel_level_elseContext(Context, State); EnterRule(_localctx, 52, RULE_sel_level_else); try { - State = 533; + State = 539; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case PRE_ELSE: EnterOuterAlt(_localctx, 1); { - State = 531; + State = 537; sel_level_else_else(); } break; case PRE_ELSE_IF: EnterOuterAlt(_localctx, 2); { - State = 532; + State = 538; sel_level_else_if(); } break; @@ -4373,25 +4394,25 @@ public Sel_level_else_elseContext sel_level_else_else() { try { EnterOuterAlt(_localctx, 1); { - State = 535; + State = 541; Match(PRE_ELSE); - State = 536; + State = 542; Match(LEFT_BRACE); - State = 540; + State = 546; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 537; + State = 543; _localctx.body = selector_statement(); } } - State = 542; + State = 548; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 543; + State = 549; Match(RIGHT_BRACE); } } @@ -4456,34 +4477,34 @@ public Sel_level_else_ifContext sel_level_else_if() { try { EnterOuterAlt(_localctx, 1); { - State = 545; + State = 551; Match(PRE_ELSE_IF); - State = 546; + State = 552; _localctx.cond = expression(0); - State = 547; + State = 553; Match(LEFT_BRACE); - State = 551; + State = 557; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 548; + State = 554; _localctx.body = selector_statement(); } } - State = 553; + State = 559; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 554; + State = 560; Match(RIGHT_BRACE); - State = 556; + State = 562; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 555; + State = 561; _localctx.els = sel_level_else(); } } @@ -4538,11 +4559,11 @@ public Set_valueContext set_value() { try { EnterOuterAlt(_localctx, 1); { - State = 558; + State = 564; Match(SET); - State = 559; + State = 565; _localctx.expr = expression(0); - State = 560; + State = 566; Match(SEMICOLON); } } @@ -4590,9 +4611,9 @@ public Delete_valueContext delete_value() { try { EnterOuterAlt(_localctx, 1); { - State = 562; + State = 568; Match(DELETE); - State = 563; + State = 569; Match(SEMICOLON); } } @@ -4644,11 +4665,11 @@ public Merge_valueContext merge_value() { try { EnterOuterAlt(_localctx, 1); { - State = 565; + State = 571; Match(MERGE); - State = 566; + State = 572; _localctx.expr = expression(0); - State = 567; + State = 573; Match(SEMICOLON); } } @@ -4857,34 +4878,34 @@ public Field_setContext field_set() { EnterRule(_localctx, 64, RULE_field_set); int _la; try { - State = 624; + State = 630; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,47,Context) ) { case 1: _localctx = new Normal_field_setContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 569; + State = 575; sassy_string(); - State = 573; + State = 579; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 570; + State = 576; ((Normal_field_setContext)_localctx).indexor = index(); } } - State = 575; + State = 581; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 576; + State = 582; Match(COLON); - State = 577; + State = 583; ((Normal_field_setContext)_localctx).expr = expression(0); - State = 578; + State = 584; Match(SEMICOLON); } break; @@ -4892,27 +4913,27 @@ public Field_setContext field_set() { _localctx = new Add_field_setContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 580; + State = 586; sassy_string(); - State = 584; + State = 590; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 581; + State = 587; ((Add_field_setContext)_localctx).indexor = index(); } } - State = 586; + State = 592; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 587; + State = 593; Match(PLUS_COLON); - State = 588; + State = 594; ((Add_field_setContext)_localctx).expr = expression(0); - State = 589; + State = 595; Match(SEMICOLON); } break; @@ -4920,27 +4941,27 @@ public Field_setContext field_set() { _localctx = new Subtract_field_setContext(_localctx); EnterOuterAlt(_localctx, 3); { - State = 591; + State = 597; sassy_string(); - State = 595; + State = 601; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 592; + State = 598; ((Subtract_field_setContext)_localctx).indexor = index(); } } - State = 597; + State = 603; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 598; + State = 604; Match(MINUS_COLON); - State = 599; + State = 605; ((Subtract_field_setContext)_localctx).expr = expression(0); - State = 600; + State = 606; Match(SEMICOLON); } break; @@ -4948,27 +4969,27 @@ public Field_setContext field_set() { _localctx = new Multiply_field_setContext(_localctx); EnterOuterAlt(_localctx, 4); { - State = 602; + State = 608; sassy_string(); - State = 606; + State = 612; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 603; + State = 609; ((Multiply_field_setContext)_localctx).indexor = index(); } } - State = 608; + State = 614; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 609; + State = 615; Match(MULTIPLY_COLON); - State = 610; + State = 616; ((Multiply_field_setContext)_localctx).expr = expression(0); - State = 611; + State = 617; Match(SEMICOLON); } break; @@ -4976,27 +4997,27 @@ public Field_setContext field_set() { _localctx = new Divide_field_setContext(_localctx); EnterOuterAlt(_localctx, 5); { - State = 613; + State = 619; sassy_string(); - State = 617; + State = 623; ErrorHandler.Sync(this); _la = TokenStream.LA(1); while (_la==LEFT_BRACKET) { { { - State = 614; + State = 620; ((Divide_field_setContext)_localctx).indexor = index(); } } - State = 619; + State = 625; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 620; + State = 626; Match(DIVIDE_COLON); - State = 621; + State = 627; ((Divide_field_setContext)_localctx).expr = expression(0); - State = 622; + State = 628; Match(SEMICOLON); } break; @@ -5079,18 +5100,18 @@ public IndexContext index() { IndexContext _localctx = new IndexContext(Context, State); EnterRule(_localctx, 66, RULE_index); try { - State = 633; + State = 639; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,48,Context) ) { case 1: _localctx = new Expression_indexerContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 626; + State = 632; Match(LEFT_BRACKET); - State = 627; + State = 633; ((Expression_indexerContext)_localctx).elem = expression(0); - State = 628; + State = 634; Match(RIGHT_BRACKET); } break; @@ -5098,11 +5119,11 @@ public IndexContext index() { _localctx = new Map_indexerContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 630; + State = 636; Match(LEFT_BRACKET); - State = 631; + State = 637; ((Map_indexerContext)_localctx).elem = Match(MULTIPLY); - State = 632; + State = 638; Match(RIGHT_BRACKET); } break; @@ -5839,7 +5860,7 @@ private ExpressionContext expression(int _p) { int _alt; EnterOuterAlt(_localctx, 1); { - State = 655; + State = 661; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,49,Context) ) { case 1: @@ -5848,13 +5869,13 @@ private ExpressionContext expression(int _p) { Context = _localctx; _prevctx = _localctx; - State = 636; + State = 642; ((Simple_callContext)_localctx).lhs = Match(ELEMENT); - State = 637; + State = 643; Match(LEFT_PAREN); - State = 638; + State = 644; ((Simple_callContext)_localctx).args = argument_list(); - State = 639; + State = 645; Match(RIGHT_PAREN); } break; @@ -5863,7 +5884,7 @@ private ExpressionContext expression(int _p) { _localctx = new Value_referenceContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 641; + State = 647; value(); } break; @@ -5872,7 +5893,7 @@ private ExpressionContext expression(int _p) { _localctx = new Variable_referenceContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 642; + State = 648; Match(VARIABLE); } break; @@ -5881,7 +5902,7 @@ private ExpressionContext expression(int _p) { _localctx = new Local_variable_referenceContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 643; + State = 649; Match(LOCALVARIABLE); } break; @@ -5890,7 +5911,7 @@ private ExpressionContext expression(int _p) { _localctx = new String_local_variable_referenceContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 644; + State = 650; Match(STRING_LOCALVARIABLE); } break; @@ -5899,11 +5920,11 @@ private ExpressionContext expression(int _p) { _localctx = new Sub_sub_expressionContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 645; + State = 651; Match(LEFT_PAREN); - State = 646; + State = 652; ((Sub_sub_expressionContext)_localctx).internal_expr = expression(0); - State = 647; + State = 653; Match(RIGHT_PAREN); } break; @@ -5912,9 +5933,9 @@ private ExpressionContext expression(int _p) { _localctx = new NegativeContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 649; + State = 655; Match(SUBTRACT); - State = 650; + State = 656; ((NegativeContext)_localctx).child = expression(20); } break; @@ -5923,9 +5944,9 @@ private ExpressionContext expression(int _p) { _localctx = new PositiveContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 651; + State = 657; Match(ADD); - State = 652; + State = 658; ((PositiveContext)_localctx).child = expression(19); } break; @@ -5934,15 +5955,15 @@ private ExpressionContext expression(int _p) { _localctx = new NotContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 653; + State = 659; Match(NOT); - State = 654; + State = 660; ((NotContext)_localctx).child = expression(18); } break; } Context.Stop = TokenStream.LT(-1); - State = 722; + State = 728; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,51,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { @@ -5951,7 +5972,7 @@ private ExpressionContext expression(int _p) { TriggerExitRuleEvent(); _prevctx = _localctx; { - State = 720; + State = 726; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,50,Context) ) { case 1: @@ -5959,11 +5980,11 @@ private ExpressionContext expression(int _p) { _localctx = new MultiplicationContext(new ExpressionContext(_parentctx, _parentState)); ((MultiplicationContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 657; + State = 663; if (!(Precpred(Context, 14))) throw new FailedPredicateException(this, "Precpred(Context, 14)"); - State = 658; + State = 664; Match(MULTIPLY); - State = 659; + State = 665; ((MultiplicationContext)_localctx).rhs = expression(15); } break; @@ -5972,11 +5993,11 @@ private ExpressionContext expression(int _p) { _localctx = new DivisionContext(new ExpressionContext(_parentctx, _parentState)); ((DivisionContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 660; + State = 666; if (!(Precpred(Context, 13))) throw new FailedPredicateException(this, "Precpred(Context, 13)"); - State = 661; + State = 667; Match(DIVIDE); - State = 662; + State = 668; ((DivisionContext)_localctx).rhs = expression(14); } break; @@ -5985,11 +6006,11 @@ private ExpressionContext expression(int _p) { _localctx = new RemainderContext(new ExpressionContext(_parentctx, _parentState)); ((RemainderContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 663; + State = 669; if (!(Precpred(Context, 12))) throw new FailedPredicateException(this, "Precpred(Context, 12)"); - State = 664; + State = 670; Match(MODULUS); - State = 665; + State = 671; ((RemainderContext)_localctx).rhs = expression(13); } break; @@ -5998,11 +6019,11 @@ private ExpressionContext expression(int _p) { _localctx = new AdditionContext(new ExpressionContext(_parentctx, _parentState)); ((AdditionContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 666; + State = 672; if (!(Precpred(Context, 11))) throw new FailedPredicateException(this, "Precpred(Context, 11)"); - State = 667; + State = 673; Match(ADD); - State = 668; + State = 674; ((AdditionContext)_localctx).rhs = expression(12); } break; @@ -6011,11 +6032,11 @@ private ExpressionContext expression(int _p) { _localctx = new SubtractionContext(new ExpressionContext(_parentctx, _parentState)); ((SubtractionContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 669; + State = 675; if (!(Precpred(Context, 10))) throw new FailedPredicateException(this, "Precpred(Context, 10)"); - State = 670; + State = 676; Match(SUBTRACT); - State = 671; + State = 677; ((SubtractionContext)_localctx).rhs = expression(11); } break; @@ -6024,11 +6045,11 @@ private ExpressionContext expression(int _p) { _localctx = new Greater_thanContext(new ExpressionContext(_parentctx, _parentState)); ((Greater_thanContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 672; + State = 678; if (!(Precpred(Context, 9))) throw new FailedPredicateException(this, "Precpred(Context, 9)"); - State = 673; + State = 679; Match(GREATER_THAN); - State = 674; + State = 680; ((Greater_thanContext)_localctx).rhs = expression(10); } break; @@ -6037,11 +6058,11 @@ private ExpressionContext expression(int _p) { _localctx = new Lesser_thanContext(new ExpressionContext(_parentctx, _parentState)); ((Lesser_thanContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 675; + State = 681; if (!(Precpred(Context, 8))) throw new FailedPredicateException(this, "Precpred(Context, 8)"); - State = 676; + State = 682; Match(LESSER_THAN); - State = 677; + State = 683; ((Lesser_thanContext)_localctx).rhs = expression(9); } break; @@ -6050,11 +6071,11 @@ private ExpressionContext expression(int _p) { _localctx = new Greater_than_equalContext(new ExpressionContext(_parentctx, _parentState)); ((Greater_than_equalContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 678; + State = 684; if (!(Precpred(Context, 7))) throw new FailedPredicateException(this, "Precpred(Context, 7)"); - State = 679; + State = 685; Match(GREATER_THAN_EQUAL); - State = 680; + State = 686; ((Greater_than_equalContext)_localctx).rhs = expression(8); } break; @@ -6063,11 +6084,11 @@ private ExpressionContext expression(int _p) { _localctx = new Lesser_than_equalContext(new ExpressionContext(_parentctx, _parentState)); ((Lesser_than_equalContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 681; + State = 687; if (!(Precpred(Context, 6))) throw new FailedPredicateException(this, "Precpred(Context, 6)"); - State = 682; + State = 688; Match(LESSER_THAN_EQUAL); - State = 683; + State = 689; ((Lesser_than_equalContext)_localctx).rhs = expression(7); } break; @@ -6076,11 +6097,11 @@ private ExpressionContext expression(int _p) { _localctx = new Equal_toContext(new ExpressionContext(_parentctx, _parentState)); ((Equal_toContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 684; + State = 690; if (!(Precpred(Context, 5))) throw new FailedPredicateException(this, "Precpred(Context, 5)"); - State = 685; + State = 691; Match(EQUAL_TO); - State = 686; + State = 692; ((Equal_toContext)_localctx).rhs = expression(6); } break; @@ -6089,11 +6110,11 @@ private ExpressionContext expression(int _p) { _localctx = new Not_equal_toContext(new ExpressionContext(_parentctx, _parentState)); ((Not_equal_toContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 687; + State = 693; if (!(Precpred(Context, 4))) throw new FailedPredicateException(this, "Precpred(Context, 4)"); - State = 688; + State = 694; Match(NOT_EQUAL_TO); - State = 689; + State = 695; ((Not_equal_toContext)_localctx).rhs = expression(5); } break; @@ -6102,11 +6123,11 @@ private ExpressionContext expression(int _p) { _localctx = new AndContext(new ExpressionContext(_parentctx, _parentState)); ((AndContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 690; + State = 696; if (!(Precpred(Context, 3))) throw new FailedPredicateException(this, "Precpred(Context, 3)"); - State = 691; + State = 697; Match(AND); - State = 692; + State = 698; ((AndContext)_localctx).rhs = expression(4); } break; @@ -6115,11 +6136,11 @@ private ExpressionContext expression(int _p) { _localctx = new OrContext(new ExpressionContext(_parentctx, _parentState)); ((OrContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 693; + State = 699; if (!(Precpred(Context, 2))) throw new FailedPredicateException(this, "Precpred(Context, 2)"); - State = 694; + State = 700; Match(OR); - State = 695; + State = 701; ((OrContext)_localctx).rhs = expression(3); } break; @@ -6128,15 +6149,15 @@ private ExpressionContext expression(int _p) { _localctx = new TernaryContext(new ExpressionContext(_parentctx, _parentState)); ((TernaryContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 696; + State = 702; if (!(Precpred(Context, 1))) throw new FailedPredicateException(this, "Precpred(Context, 1)"); - State = 697; + State = 703; Match(IF); - State = 698; + State = 704; ((TernaryContext)_localctx).cond = expression(0); - State = 699; + State = 705; Match(ELSE); - State = 700; + State = 706; ((TernaryContext)_localctx).rhs = expression(2); } break; @@ -6145,17 +6166,17 @@ private ExpressionContext expression(int _p) { _localctx = new Member_callContext(new ExpressionContext(_parentctx, _parentState)); ((Member_callContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 702; + State = 708; if (!(Precpred(Context, 17))) throw new FailedPredicateException(this, "Precpred(Context, 17)"); - State = 703; + State = 709; Match(COLON); - State = 704; + State = 710; ((Member_callContext)_localctx).name = Match(ELEMENT); - State = 705; + State = 711; Match(LEFT_PAREN); - State = 706; + State = 712; ((Member_callContext)_localctx).args = argument_list(); - State = 707; + State = 713; Match(RIGHT_PAREN); } break; @@ -6164,15 +6185,15 @@ private ExpressionContext expression(int _p) { _localctx = new Member_call_rulesetContext(new ExpressionContext(_parentctx, _parentState)); ((Member_call_rulesetContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 709; + State = 715; if (!(Precpred(Context, 16))) throw new FailedPredicateException(this, "Precpred(Context, 16)"); - State = 710; + State = 716; Match(RULESET); - State = 711; + State = 717; Match(LEFT_PAREN); - State = 712; + State = 718; ((Member_call_rulesetContext)_localctx).args = argument_list(); - State = 713; + State = 719; Match(RIGHT_PAREN); } break; @@ -6181,20 +6202,20 @@ private ExpressionContext expression(int _p) { _localctx = new IndexorContext(new ExpressionContext(_parentctx, _parentState)); ((IndexorContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_expression); - State = 715; + State = 721; if (!(Precpred(Context, 15))) throw new FailedPredicateException(this, "Precpred(Context, 15)"); - State = 716; + State = 722; Match(LEFT_BRACKET); - State = 717; + State = 723; ((IndexorContext)_localctx).rhs = expression(0); - State = 718; + State = 724; Match(RIGHT_BRACKET); } break; } } } - State = 724; + State = 730; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,51,Context); } @@ -6445,14 +6466,14 @@ public ValueContext value() { ValueContext _localctx = new ValueContext(Context, State); EnterRule(_localctx, 70, RULE_value); try { - State = 742; + State = 748; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case DELETE: _localctx = new Value_deletionContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 725; + State = 731; Match(DELETE); } break; @@ -6460,7 +6481,7 @@ public ValueContext value() { _localctx = new Boolean_trueContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 726; + State = 732; Match(TRUE); } break; @@ -6468,7 +6489,7 @@ public ValueContext value() { _localctx = new Boolean_falseContext(_localctx); EnterOuterAlt(_localctx, 3); { - State = 727; + State = 733; Match(FALSE); } break; @@ -6476,7 +6497,7 @@ public ValueContext value() { _localctx = new Number_valueContext(_localctx); EnterOuterAlt(_localctx, 4); { - State = 728; + State = 734; Match(NUMBER); } break; @@ -6484,7 +6505,7 @@ public ValueContext value() { _localctx = new String_valueContext(_localctx); EnterOuterAlt(_localctx, 5); { - State = 729; + State = 735; Match(STRING); } break; @@ -6492,7 +6513,7 @@ public ValueContext value() { _localctx = new Element_stringContext(_localctx); EnterOuterAlt(_localctx, 6); { - State = 730; + State = 736; Match(ELEMENT); } break; @@ -6500,7 +6521,7 @@ public ValueContext value() { _localctx = new NoneContext(_localctx); EnterOuterAlt(_localctx, 7); { - State = 731; + State = 737; Match(NONE); } break; @@ -6508,19 +6529,19 @@ public ValueContext value() { _localctx = new ClosureContext(_localctx); EnterOuterAlt(_localctx, 8); { - State = 732; + State = 738; Match(FUNCTION); - State = 733; + State = 739; Match(LEFT_PAREN); - State = 734; + State = 740; ((ClosureContext)_localctx).args = arg_decl_list(); - State = 735; + State = 741; Match(RIGHT_PAREN); - State = 736; + State = 742; Match(LEFT_BRACE); - State = 737; + State = 743; ((ClosureContext)_localctx).body = function_body(); - State = 738; + State = 744; Match(RIGHT_BRACE); } break; @@ -6528,7 +6549,7 @@ public ValueContext value() { _localctx = new List_valueContext(_localctx); EnterOuterAlt(_localctx, 9); { - State = 740; + State = 746; list(); } break; @@ -6536,7 +6557,7 @@ public ValueContext value() { _localctx = new Object_valueContext(_localctx); EnterOuterAlt(_localctx, 10); { - State = 741; + State = 747; obj(); } break; @@ -6712,7 +6733,7 @@ private Require_expressionContext require_expression(int _p) { int _alt; EnterOuterAlt(_localctx, 1); { - State = 752; + State = 758; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case LEFT_PAREN: @@ -6721,11 +6742,11 @@ private Require_expressionContext require_expression(int _p) { Context = _localctx; _prevctx = _localctx; - State = 745; + State = 751; Match(LEFT_PAREN); - State = 746; + State = 752; ((Require_subContext)_localctx).internal_expr = require_expression(0); - State = 747; + State = 753; Match(RIGHT_PAREN); } break; @@ -6734,9 +6755,9 @@ private Require_expressionContext require_expression(int _p) { _localctx = new Require_notContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 749; + State = 755; Match(NOT); - State = 750; + State = 756; ((Require_notContext)_localctx).internal_expr = require_expression(2); } break; @@ -6746,7 +6767,7 @@ private Require_expressionContext require_expression(int _p) { _localctx = new Require_guidContext(_localctx); Context = _localctx; _prevctx = _localctx; - State = 751; + State = 757; ((Require_guidContext)_localctx).modid = sassy_string(); } break; @@ -6754,7 +6775,7 @@ private Require_expressionContext require_expression(int _p) { throw new NoViableAltException(this); } Context.Stop = TokenStream.LT(-1); - State = 762; + State = 768; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,55,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { @@ -6763,7 +6784,7 @@ private Require_expressionContext require_expression(int _p) { TriggerExitRuleEvent(); _prevctx = _localctx; { - State = 760; + State = 766; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,54,Context) ) { case 1: @@ -6771,11 +6792,11 @@ private Require_expressionContext require_expression(int _p) { _localctx = new Require_andContext(new Require_expressionContext(_parentctx, _parentState)); ((Require_andContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_require_expression); - State = 754; + State = 760; if (!(Precpred(Context, 4))) throw new FailedPredicateException(this, "Precpred(Context, 4)"); - State = 755; + State = 761; Match(AND); - State = 756; + State = 762; ((Require_andContext)_localctx).rhs = require_expression(5); } break; @@ -6784,18 +6805,18 @@ private Require_expressionContext require_expression(int _p) { _localctx = new Require_orContext(new Require_expressionContext(_parentctx, _parentState)); ((Require_orContext)_localctx).lhs = _prevctx; PushNewRecursionContext(_localctx, _startState, RULE_require_expression); - State = 757; + State = 763; if (!(Precpred(Context, 3))) throw new FailedPredicateException(this, "Precpred(Context, 3)"); - State = 758; + State = 764; Match(OR); - State = 759; + State = 765; ((Require_orContext)_localctx).rhs = require_expression(4); } break; } } } - State = 764; + State = 770; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,55,Context); } @@ -6851,21 +6872,21 @@ public ListContext list() { try { EnterOuterAlt(_localctx, 1); { - State = 765; + State = 771; Match(LEFT_BRACKET); - State = 766; + State = 772; _localctx.@values = list_values(); - State = 768; + State = 774; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==COMMA) { { - State = 767; + State = 773; Match(COMMA); } } - State = 770; + State = 776; Match(RIGHT_BRACKET); } } @@ -6923,36 +6944,36 @@ public List_valuesContext list_values() { int _alt; EnterOuterAlt(_localctx, 1); { - State = 782; + State = 788; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,59,Context) ) { case 1: { - State = 773; + State = 779; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8070758418052284432L) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & 9095L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & -2305227237604982768L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9095L) != 0)) { { - State = 772; + State = 778; expression(0); } } - State = 779; + State = 785; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,58,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - State = 775; + State = 781; Match(COMMA); - State = 776; + State = 782; expression(0); } } } - State = 781; + State = 787; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,58,Context); } @@ -7011,21 +7032,21 @@ public ObjContext obj() { try { EnterOuterAlt(_localctx, 1); { - State = 784; + State = 790; Match(LEFT_BRACE); - State = 785; + State = 791; _localctx.@values = obj_values(); - State = 787; + State = 793; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==COMMA) { { - State = 786; + State = 792; Match(COMMA); } } - State = 789; + State = 795; Match(RIGHT_BRACE); } } @@ -7083,36 +7104,36 @@ public Obj_valuesContext obj_values() { int _alt; EnterOuterAlt(_localctx, 1); { - State = 801; + State = 807; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,63,Context) ) { case 1: { - State = 792; + State = 798; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==STRING || _la==ELEMENT) { { - State = 791; + State = 797; key_value(); } } - State = 798; + State = 804; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,62,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - State = 794; + State = 800; Match(COMMA); - State = 795; + State = 801; key_value(); } } } - State = 800; + State = 806; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,62,Context); } @@ -7202,18 +7223,18 @@ public Key_valueContext key_value() { Key_valueContext _localctx = new Key_valueContext(Context, State); EnterRule(_localctx, 82, RULE_key_value); try { - State = 809; + State = 815; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case ELEMENT: _localctx = new Literal_keyContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 803; + State = 809; ((Literal_keyContext)_localctx).key = Match(ELEMENT); - State = 804; + State = 810; Match(COLON); - State = 805; + State = 811; ((Literal_keyContext)_localctx).val = expression(0); } break; @@ -7221,11 +7242,11 @@ public Key_valueContext key_value() { _localctx = new String_keyContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 806; + State = 812; ((String_keyContext)_localctx).key = Match(STRING); - State = 807; + State = 813; Match(COLON); - State = 808; + State = 814; ((String_keyContext)_localctx).val = expression(0); } break; @@ -7287,48 +7308,48 @@ public Argument_listContext argument_list() { int _alt; EnterOuterAlt(_localctx, 1); { - State = 821; + State = 827; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,67,Context) ) { case 1: { - State = 812; + State = 818; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8070758418052284432L) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & 9095L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & -2305227237604982768L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9095L) != 0)) { { - State = 811; + State = 817; argument(); } } - State = 818; + State = 824; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,66,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - State = 814; + State = 820; Match(COMMA); - State = 815; + State = 821; argument(); } } } - State = 820; + State = 826; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,66,Context); } } break; } - State = 824; + State = 830; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==COMMA) { { - State = 823; + State = 829; Match(COMMA); } } @@ -7413,18 +7434,18 @@ public ArgumentContext argument() { ArgumentContext _localctx = new ArgumentContext(Context, State); EnterRule(_localctx, 86, RULE_argument); try { - State = 830; + State = 836; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,69,Context) ) { case 1: _localctx = new Named_argumentContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 826; + State = 832; ((Named_argumentContext)_localctx).key = Match(VARIABLE); - State = 827; + State = 833; Match(COLON); - State = 828; + State = 834; ((Named_argumentContext)_localctx).val = expression(0); } break; @@ -7432,7 +7453,7 @@ public ArgumentContext argument() { _localctx = new Unnamed_argumentContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 829; + State = 835; ((Unnamed_argumentContext)_localctx).val = expression(0); } break; @@ -7492,48 +7513,48 @@ public Arg_decl_listContext arg_decl_list() { int _alt; EnterOuterAlt(_localctx, 1); { - State = 842; + State = 848; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,72,Context) ) { case 1: { - State = 833; + State = 839; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==VARIABLE) { { - State = 832; + State = 838; arg_decl(); } } - State = 839; + State = 845; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,71,Context); while ( _alt!=2 && _alt!=global::Antlr4.Runtime.Atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - State = 835; + State = 841; Match(COMMA); - State = 836; + State = 842; arg_decl(); } } } - State = 841; + State = 847; ErrorHandler.Sync(this); _alt = Interpreter.AdaptivePredict(TokenStream,71,Context); } } break; } - State = 845; + State = 851; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==COMMA) { { - State = 844; + State = 850; Match(COMMA); } } @@ -7616,14 +7637,14 @@ public Arg_declContext arg_decl() { Arg_declContext _localctx = new Arg_declContext(Context, State); EnterRule(_localctx, 90, RULE_arg_decl); try { - State = 851; + State = 857; ErrorHandler.Sync(this); switch ( Interpreter.AdaptivePredict(TokenStream,74,Context) ) { case 1: _localctx = new Argument_without_defaultContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 847; + State = 853; ((Argument_without_defaultContext)_localctx).name = Match(VARIABLE); } break; @@ -7631,11 +7652,11 @@ public Arg_declContext arg_decl() { _localctx = new Argument_with_defaultContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 848; + State = 854; ((Argument_with_defaultContext)_localctx).name = Match(VARIABLE); - State = 849; + State = 855; Match(COLON); - State = 850; + State = 856; ((Argument_with_defaultContext)_localctx).val = expression(0); } break; @@ -7690,17 +7711,17 @@ public Function_bodyContext function_body() { try { EnterOuterAlt(_localctx, 1); { - State = 856; + State = 862; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 853; + State = 859; function_statement(); } } - State = 858; + State = 864; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } @@ -7764,48 +7785,48 @@ public Function_statementContext function_statement() { Function_statementContext _localctx = new Function_statementContext(Context, State); EnterRule(_localctx, 94, RULE_function_statement); try { - State = 865; + State = 871; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case VARIABLE: EnterOuterAlt(_localctx, 1); { - State = 859; + State = 865; var_decl(); } break; case PRE_IF: EnterOuterAlt(_localctx, 2); { - State = 860; + State = 866; fn_level_conditional(); } break; case RETURN: EnterOuterAlt(_localctx, 3); { - State = 861; + State = 867; fn_return(); } break; case FOR: EnterOuterAlt(_localctx, 4); { - State = 862; + State = 868; for_loop(); } break; case EACH: EnterOuterAlt(_localctx, 5); { - State = 863; + State = 869; each_loop(); } break; case WHILE: EnterOuterAlt(_localctx, 6); { - State = 864; + State = 870; while_loop(); } break; @@ -7874,34 +7895,34 @@ public Fn_level_conditionalContext fn_level_conditional() { try { EnterOuterAlt(_localctx, 1); { - State = 867; + State = 873; Match(PRE_IF); - State = 868; + State = 874; _localctx.cond = expression(0); - State = 869; + State = 875; Match(LEFT_BRACE); - State = 873; + State = 879; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 870; + State = 876; _localctx.body = function_statement(); } } - State = 875; + State = 881; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 876; + State = 882; Match(RIGHT_BRACE); - State = 878; + State = 884; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 877; + State = 883; _localctx.els = fn_level_else(); } } @@ -7954,20 +7975,20 @@ public Fn_level_elseContext fn_level_else() { Fn_level_elseContext _localctx = new Fn_level_elseContext(Context, State); EnterRule(_localctx, 98, RULE_fn_level_else); try { - State = 882; + State = 888; ErrorHandler.Sync(this); switch (TokenStream.LA(1)) { case PRE_ELSE: EnterOuterAlt(_localctx, 1); { - State = 880; + State = 886; fn_level_else_else(); } break; case PRE_ELSE_IF: EnterOuterAlt(_localctx, 2); { - State = 881; + State = 887; fn_level_else_if(); } break; @@ -8028,25 +8049,25 @@ public Fn_level_else_elseContext fn_level_else_else() { try { EnterOuterAlt(_localctx, 1); { - State = 884; + State = 890; Match(PRE_ELSE); - State = 885; + State = 891; Match(LEFT_BRACE); - State = 889; + State = 895; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 886; + State = 892; _localctx.body = function_statement(); } } - State = 891; + State = 897; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 892; + State = 898; Match(RIGHT_BRACE); } } @@ -8111,34 +8132,34 @@ public Fn_level_else_ifContext fn_level_else_if() { try { EnterOuterAlt(_localctx, 1); { - State = 894; + State = 900; Match(PRE_ELSE_IF); - State = 895; + State = 901; _localctx.cond = expression(0); - State = 896; + State = 902; Match(LEFT_BRACE); - State = 900; + State = 906; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 897; + State = 903; _localctx.body = function_statement(); } } - State = 902; + State = 908; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 903; + State = 909; Match(RIGHT_BRACE); - State = 905; + State = 911; ErrorHandler.Sync(this); _la = TokenStream.LA(1); if (_la==PRE_ELSE || _la==PRE_ELSE_IF) { { - State = 904; + State = 910; _localctx.els = fn_level_else(); } } @@ -8192,11 +8213,11 @@ public Fn_returnContext fn_return() { try { EnterOuterAlt(_localctx, 1); { - State = 907; + State = 913; Match(RETURN); - State = 908; + State = 914; expression(0); - State = 909; + State = 915; Match(SEMICOLON); } } @@ -8251,16 +8272,154 @@ public Mixin_includeContext mixin_include() { try { EnterOuterAlt(_localctx, 1); { - State = 911; + State = 917; Match(INCLUDE); - State = 912; + State = 918; _localctx.mixin = Match(ELEMENT); - State = 913; + State = 919; Match(LEFT_PAREN); - State = 914; + State = 920; _localctx.args = argument_list(); - State = 915; + State = 921; + Match(RIGHT_PAREN); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + ErrorHandler.ReportError(this, re); + ErrorHandler.Recover(this, re); + } + finally { + ExitRule(); + } + return _localctx; + } + + public partial class Mixin_block_includeContext : ParserRuleContext { + public IToken mixin; + public Argument_listContext args; + public Selector_statementContext body; + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode INCLUDE() { return GetToken(sassy_parser.INCLUDE, 0); } + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode LEFT_PAREN() { return GetToken(sassy_parser.LEFT_PAREN, 0); } + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode RIGHT_PAREN() { return GetToken(sassy_parser.RIGHT_PAREN, 0); } + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode LEFT_BRACE() { return GetToken(sassy_parser.LEFT_BRACE, 0); } + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode RIGHT_BRACE() { return GetToken(sassy_parser.RIGHT_BRACE, 0); } + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode ELEMENT() { return GetToken(sassy_parser.ELEMENT, 0); } + [System.Diagnostics.DebuggerNonUserCode] public Argument_listContext argument_list() { + return GetRuleContext(0); + } + [System.Diagnostics.DebuggerNonUserCode] public Selector_statementContext[] selector_statement() { + return GetRuleContexts(); + } + [System.Diagnostics.DebuggerNonUserCode] public Selector_statementContext selector_statement(int i) { + return GetRuleContext(i); + } + public Mixin_block_includeContext(ParserRuleContext parent, int invokingState) + : base(parent, invokingState) + { + } + public override int RuleIndex { get { return RULE_mixin_block_include; } } + [System.Diagnostics.DebuggerNonUserCode] + public override void EnterRule(IParseTreeListener listener) { + Isassy_parserListener typedListener = listener as Isassy_parserListener; + if (typedListener != null) typedListener.EnterMixin_block_include(this); + } + [System.Diagnostics.DebuggerNonUserCode] + public override void ExitRule(IParseTreeListener listener) { + Isassy_parserListener typedListener = listener as Isassy_parserListener; + if (typedListener != null) typedListener.ExitMixin_block_include(this); + } + [System.Diagnostics.DebuggerNonUserCode] + public override TResult Accept(IParseTreeVisitor visitor) { + Isassy_parserVisitor typedVisitor = visitor as Isassy_parserVisitor; + if (typedVisitor != null) return typedVisitor.VisitMixin_block_include(this); + else return visitor.VisitChildren(this); + } + } + + [RuleVersion(0)] + public Mixin_block_includeContext mixin_block_include() { + Mixin_block_includeContext _localctx = new Mixin_block_includeContext(Context, State); + EnterRule(_localctx, 108, RULE_mixin_block_include); + int _la; + try { + EnterOuterAlt(_localctx, 1); + { + State = 923; + Match(INCLUDE); + State = 924; + _localctx.mixin = Match(ELEMENT); + State = 925; + Match(LEFT_PAREN); + State = 926; + _localctx.args = argument_list(); + State = 927; Match(RIGHT_PAREN); + State = 928; + Match(LEFT_BRACE); + State = 932; + ErrorHandler.Sync(this); + _la = TokenStream.LA(1); + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { + { + { + State = 929; + _localctx.body = selector_statement(); + } + } + State = 934; + ErrorHandler.Sync(this); + _la = TokenStream.LA(1); + } + State = 935; + Match(RIGHT_BRACE); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + ErrorHandler.ReportError(this, re); + ErrorHandler.Recover(this, re); + } + finally { + ExitRule(); + } + return _localctx; + } + + public partial class Mixin_slotContext : ParserRuleContext { + [System.Diagnostics.DebuggerNonUserCode] public ITerminalNode MIXIN_SLOT() { return GetToken(sassy_parser.MIXIN_SLOT, 0); } + public Mixin_slotContext(ParserRuleContext parent, int invokingState) + : base(parent, invokingState) + { + } + public override int RuleIndex { get { return RULE_mixin_slot; } } + [System.Diagnostics.DebuggerNonUserCode] + public override void EnterRule(IParseTreeListener listener) { + Isassy_parserListener typedListener = listener as Isassy_parserListener; + if (typedListener != null) typedListener.EnterMixin_slot(this); + } + [System.Diagnostics.DebuggerNonUserCode] + public override void ExitRule(IParseTreeListener listener) { + Isassy_parserListener typedListener = listener as Isassy_parserListener; + if (typedListener != null) typedListener.ExitMixin_slot(this); + } + [System.Diagnostics.DebuggerNonUserCode] + public override TResult Accept(IParseTreeVisitor visitor) { + Isassy_parserVisitor typedVisitor = visitor as Isassy_parserVisitor; + if (typedVisitor != null) return typedVisitor.VisitMixin_slot(this); + else return visitor.VisitChildren(this); + } + } + + [RuleVersion(0)] + public Mixin_slotContext mixin_slot() { + Mixin_slotContext _localctx = new Mixin_slotContext(Context, State); + EnterRule(_localctx, 110, RULE_mixin_slot); + try { + EnterOuterAlt(_localctx, 1); + { + State = 937; + Match(MIXIN_SLOT); } } catch (RecognitionException re) { @@ -8372,45 +8531,45 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public For_loopContext for_loop() { For_loopContext _localctx = new For_loopContext(Context, State); - EnterRule(_localctx, 108, RULE_for_loop); + EnterRule(_localctx, 112, RULE_for_loop); int _la; try { - State = 947; + State = 969; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,85,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,86,Context) ) { case 1: _localctx = new For_to_loopContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 917; + State = 939; Match(FOR); - State = 918; + State = 940; ((For_to_loopContext)_localctx).idx = Match(VARIABLE); - State = 919; + State = 941; Match(FROM); - State = 920; + State = 942; ((For_to_loopContext)_localctx).for_start = expression(0); - State = 921; + State = 943; Match(TO); - State = 922; + State = 944; ((For_to_loopContext)_localctx).end = expression(0); - State = 923; + State = 945; Match(LEFT_BRACE); - State = 927; + State = 949; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 924; + State = 946; ((For_to_loopContext)_localctx).body = function_statement(); } } - State = 929; + State = 951; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 930; + State = 952; Match(RIGHT_BRACE); } break; @@ -8418,35 +8577,35 @@ public For_loopContext for_loop() { _localctx = new For_through_loopContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 932; + State = 954; Match(FOR); - State = 933; + State = 955; ((For_through_loopContext)_localctx).idx = Match(VARIABLE); - State = 934; + State = 956; Match(FROM); - State = 935; + State = 957; ((For_through_loopContext)_localctx).for_start = expression(0); - State = 936; + State = 958; Match(THROUGH); - State = 937; + State = 959; ((For_through_loopContext)_localctx).end = expression(0); - State = 938; + State = 960; Match(LEFT_BRACE); - State = 942; + State = 964; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 939; + State = 961; ((For_through_loopContext)_localctx).body = function_statement(); } } - State = 944; + State = 966; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 945; + State = 967; Match(RIGHT_BRACE); } break; @@ -8561,45 +8720,45 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Top_level_for_loopContext top_level_for_loop() { Top_level_for_loopContext _localctx = new Top_level_for_loopContext(Context, State); - EnterRule(_localctx, 110, RULE_top_level_for_loop); + EnterRule(_localctx, 114, RULE_top_level_for_loop); int _la; try { - State = 979; + State = 1001; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,88,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,89,Context) ) { case 1: _localctx = new Top_level_for_to_loopContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 949; + State = 971; Match(FOR); - State = 950; + State = 972; ((Top_level_for_to_loopContext)_localctx).idx = Match(VARIABLE); - State = 951; + State = 973; Match(FROM); - State = 952; + State = 974; ((Top_level_for_to_loopContext)_localctx).for_start = expression(0); - State = 953; + State = 975; Match(TO); - State = 954; + State = 976; ((Top_level_for_to_loopContext)_localctx).end = expression(0); - State = 955; + State = 977; Match(LEFT_BRACE); - State = 959; + State = 981; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 956; + State = 978; ((Top_level_for_to_loopContext)_localctx).body = top_level_statement(); } } - State = 961; + State = 983; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 962; + State = 984; Match(RIGHT_BRACE); } break; @@ -8607,35 +8766,35 @@ public Top_level_for_loopContext top_level_for_loop() { _localctx = new Top_level_for_through_loopContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 964; + State = 986; Match(FOR); - State = 965; + State = 987; ((Top_level_for_through_loopContext)_localctx).idx = Match(VARIABLE); - State = 966; + State = 988; Match(FROM); - State = 967; + State = 989; ((Top_level_for_through_loopContext)_localctx).for_start = expression(0); - State = 968; + State = 990; Match(THROUGH); - State = 969; + State = 991; ((Top_level_for_through_loopContext)_localctx).end = expression(0); - State = 970; + State = 992; Match(LEFT_BRACE); - State = 974; + State = 996; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 971; + State = 993; ((Top_level_for_through_loopContext)_localctx).body = top_level_statement(); } } - State = 976; + State = 998; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 977; + State = 999; Match(RIGHT_BRACE); } break; @@ -8750,45 +8909,45 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Sel_level_for_loopContext sel_level_for_loop() { Sel_level_for_loopContext _localctx = new Sel_level_for_loopContext(Context, State); - EnterRule(_localctx, 112, RULE_sel_level_for_loop); + EnterRule(_localctx, 116, RULE_sel_level_for_loop); int _la; try { - State = 1011; + State = 1033; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,91,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,92,Context) ) { case 1: _localctx = new Sel_level_for_to_loopContext(_localctx); EnterOuterAlt(_localctx, 1); { - State = 981; + State = 1003; Match(FOR); - State = 982; + State = 1004; ((Sel_level_for_to_loopContext)_localctx).idx = Match(VARIABLE); - State = 983; + State = 1005; Match(FROM); - State = 984; + State = 1006; ((Sel_level_for_to_loopContext)_localctx).for_start = expression(0); - State = 985; + State = 1007; Match(TO); - State = 986; + State = 1008; ((Sel_level_for_to_loopContext)_localctx).end = expression(0); - State = 987; + State = 1009; Match(LEFT_BRACE); - State = 991; + State = 1013; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 988; + State = 1010; ((Sel_level_for_to_loopContext)_localctx).body = selector_statement(); } } - State = 993; + State = 1015; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 994; + State = 1016; Match(RIGHT_BRACE); } break; @@ -8796,35 +8955,35 @@ public Sel_level_for_loopContext sel_level_for_loop() { _localctx = new Sel_level_for_through_loopContext(_localctx); EnterOuterAlt(_localctx, 2); { - State = 996; + State = 1018; Match(FOR); - State = 997; + State = 1019; ((Sel_level_for_through_loopContext)_localctx).idx = Match(VARIABLE); - State = 998; + State = 1020; Match(FROM); - State = 999; + State = 1021; ((Sel_level_for_through_loopContext)_localctx).for_start = expression(0); - State = 1000; + State = 1022; Match(THROUGH); - State = 1001; + State = 1023; ((Sel_level_for_through_loopContext)_localctx).end = expression(0); - State = 1002; + State = 1024; Match(LEFT_BRACE); - State = 1006; + State = 1028; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 1003; + State = 1025; ((Sel_level_for_through_loopContext)_localctx).body = selector_statement(); } } - State = 1008; + State = 1030; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1009; + State = 1031; Match(RIGHT_BRACE); } break; @@ -8890,48 +9049,48 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Each_loopContext each_loop() { Each_loopContext _localctx = new Each_loopContext(Context, State); - EnterRule(_localctx, 114, RULE_each_loop); + EnterRule(_localctx, 118, RULE_each_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1013; + State = 1035; Match(EACH); - State = 1016; + State = 1038; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,92,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,93,Context) ) { case 1: { - State = 1014; + State = 1036; _localctx.key = Match(VARIABLE); - State = 1015; + State = 1037; Match(COMMA); } break; } - State = 1018; + State = 1040; _localctx.val = Match(VARIABLE); - State = 1019; + State = 1041; Match(IN); - State = 1020; + State = 1042; _localctx.iter = expression(0); - State = 1021; + State = 1043; Match(LEFT_BRACE); - State = 1025; + State = 1047; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 1022; + State = 1044; _localctx.body = function_statement(); } } - State = 1027; + State = 1049; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1028; + State = 1050; Match(RIGHT_BRACE); } } @@ -8995,48 +9154,48 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Top_level_each_loopContext top_level_each_loop() { Top_level_each_loopContext _localctx = new Top_level_each_loopContext(Context, State); - EnterRule(_localctx, 116, RULE_top_level_each_loop); + EnterRule(_localctx, 120, RULE_top_level_each_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1030; + State = 1052; Match(EACH); - State = 1033; + State = 1055; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,94,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,95,Context) ) { case 1: { - State = 1031; + State = 1053; _localctx.key = Match(VARIABLE); - State = 1032; + State = 1054; Match(COMMA); } break; } - State = 1035; + State = 1057; _localctx.val = Match(VARIABLE); - State = 1036; + State = 1058; Match(IN); - State = 1037; + State = 1059; _localctx.iter = expression(0); - State = 1038; + State = 1060; Match(LEFT_BRACE); - State = 1042; + State = 1064; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 1039; + State = 1061; _localctx.body = top_level_statement(); } } - State = 1044; + State = 1066; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1045; + State = 1067; Match(RIGHT_BRACE); } } @@ -9100,48 +9259,48 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Sel_level_each_loopContext sel_level_each_loop() { Sel_level_each_loopContext _localctx = new Sel_level_each_loopContext(Context, State); - EnterRule(_localctx, 118, RULE_sel_level_each_loop); + EnterRule(_localctx, 122, RULE_sel_level_each_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1047; + State = 1069; Match(EACH); - State = 1050; + State = 1072; ErrorHandler.Sync(this); - switch ( Interpreter.AdaptivePredict(TokenStream,96,Context) ) { + switch ( Interpreter.AdaptivePredict(TokenStream,97,Context) ) { case 1: { - State = 1048; + State = 1070; _localctx.key = Match(VARIABLE); - State = 1049; + State = 1071; Match(COMMA); } break; } - State = 1052; + State = 1074; _localctx.val = Match(VARIABLE); - State = 1053; + State = 1075; Match(IN); - State = 1054; + State = 1076; _localctx.iter = expression(0); - State = 1055; + State = 1077; Match(LEFT_BRACE); - State = 1059; + State = 1081; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 1056; + State = 1078; _localctx.body = selector_statement(); } } - State = 1061; + State = 1083; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1062; + State = 1084; Match(RIGHT_BRACE); } } @@ -9197,32 +9356,32 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public While_loopContext while_loop() { While_loopContext _localctx = new While_loopContext(Context, State); - EnterRule(_localctx, 120, RULE_while_loop); + EnterRule(_localctx, 124, RULE_while_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1064; + State = 1086; Match(WHILE); - State = 1065; + State = 1087; _localctx.cond = expression(0); - State = 1066; + State = 1088; Match(LEFT_BRACE); - State = 1070; + State = 1092; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 4212256L) != 0) || _la==VARIABLE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8424480L) != 0) || _la==VARIABLE) { { { - State = 1067; + State = 1089; _localctx.body = function_statement(); } } - State = 1072; + State = 1094; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1073; + State = 1095; Match(RIGHT_BRACE); } } @@ -9278,32 +9437,32 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Top_level_while_loopContext top_level_while_loop() { Top_level_while_loopContext _localctx = new Top_level_while_loopContext(Context, State); - EnterRule(_localctx, 122, RULE_top_level_while_loop); + EnterRule(_localctx, 126, RULE_top_level_while_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1075; + State = 1097; Match(WHILE); - State = 1076; + State = 1098; _localctx.cond = expression(0); - State = 1077; + State = 1099; Match(LEFT_BRACE); - State = 1081; + State = 1103; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737895827256L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7805L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009475791654200L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7805L) != 0)) { { { - State = 1078; + State = 1100; _localctx.body = top_level_statement(); } } - State = 1083; + State = 1105; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1084; + State = 1106; Match(RIGHT_BRACE); } } @@ -9359,32 +9518,32 @@ public override TResult Accept(IParseTreeVisitor visitor) { [RuleVersion(0)] public Sel_level_while_loopContext sel_level_while_loop() { Sel_level_while_loopContext _localctx = new Sel_level_while_loopContext(Context, State); - EnterRule(_localctx, 124, RULE_sel_level_while_loop); + EnterRule(_localctx, 128, RULE_sel_level_while_loop); int _la; try { EnterOuterAlt(_localctx, 1); { - State = 1086; + State = 1108; Match(WHILE); - State = 1087; + State = 1109; _localctx.cond = expression(0); - State = 1088; + State = 1110; Match(LEFT_BRACE); - State = 1092; + State = 1114; ErrorHandler.Sync(this); _la = TokenStream.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 576504737083377184L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 7807L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1153009474166754848L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7807L) != 0)) { { { - State = 1089; + State = 1111; _localctx.body = selector_statement(); } } - State = 1094; + State = 1116; ErrorHandler.Sync(this); _la = TokenStream.LA(1); } - State = 1095; + State = 1117; Match(RIGHT_BRACE); } } @@ -9454,7 +9613,7 @@ private bool require_expression_sempred(Require_expressionContext _localctx, int } private static int[] _serializedATN = { - 4,1,77,1098,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, + 4,1,78,1120,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, @@ -9462,382 +9621,390 @@ private bool require_expression_sempred(Require_expressionContext _localctx, int 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,1,0,4,0,128, - 8,0,11,0,12,0,129,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,3,1,147,8,1,1,2,1,2,1,2,1,2,1,3,1,3,1,3,5,3,156,8,3,10,3,12,3, - 159,9,3,1,4,1,4,3,4,163,8,4,1,5,1,5,1,5,1,5,1,6,1,6,5,6,171,8,6,10,6,12, - 6,174,9,6,1,6,1,6,1,6,1,6,1,6,1,6,5,6,182,8,6,10,6,12,6,185,9,6,1,6,1, - 6,1,6,1,6,1,6,1,6,5,6,193,8,6,10,6,12,6,196,9,6,1,6,1,6,1,6,1,6,1,6,1, - 6,5,6,204,8,6,10,6,12,6,207,9,6,1,6,1,6,1,6,1,6,1,6,1,6,5,6,215,8,6,10, - 6,12,6,218,9,6,1,6,1,6,1,6,1,6,3,6,224,8,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7, - 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,5,7,241,8,7,10,7,12,7,244,9,7,1,7,1,7, - 1,7,3,7,249,8,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1, - 9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,277,8,9,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,3,10,287,8,10,1,11,1,11,1,11,1,11,1,11,1, - 11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1, - 13,1,13,1,13,5,13,311,8,13,10,13,12,13,314,9,13,1,13,1,13,3,13,318,8,13, - 1,14,1,14,3,14,322,8,14,1,15,1,15,1,15,5,15,327,8,15,10,15,12,15,330,9, - 15,1,15,1,15,1,16,1,16,1,16,1,16,5,16,338,8,16,10,16,12,16,341,9,16,1, - 16,1,16,3,16,345,8,16,1,17,1,17,1,17,1,17,1,17,1,18,5,18,353,8,18,10,18, - 12,18,356,9,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,366,8,19,1, - 20,1,20,1,20,1,20,5,20,372,8,20,10,20,12,20,375,9,20,3,20,377,8,20,1,20, - 1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,5,21,390,8,21,10,21, - 12,21,393,9,21,1,21,1,21,1,21,1,21,1,21,5,21,400,8,21,10,21,12,21,403, - 9,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,428,8,21,1,21,1, - 21,1,21,1,21,1,21,1,21,1,21,1,21,5,21,438,8,21,10,21,12,21,441,9,21,1, - 22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,5,22,452,8,22,10,22,12,22,455, - 9,22,1,22,1,22,1,22,1,22,1,22,5,22,462,8,22,10,22,12,22,465,9,22,1,22, - 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,22,1,22,1,22,1,22,1,22,3,22,488,8,22,1,22,1,22,1,22,1,22,1,22,5, - 22,495,8,22,10,22,12,22,498,9,22,1,23,5,23,501,8,23,10,23,12,23,504,9, - 23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,517,8,24, - 1,25,1,25,1,25,1,25,5,25,523,8,25,10,25,12,25,526,9,25,1,25,1,25,3,25, - 530,8,25,1,26,1,26,3,26,534,8,26,1,27,1,27,1,27,5,27,539,8,27,10,27,12, - 27,542,9,27,1,27,1,27,1,28,1,28,1,28,1,28,5,28,550,8,28,10,28,12,28,553, - 9,28,1,28,1,28,3,28,557,8,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1, - 31,1,31,1,31,1,32,1,32,5,32,572,8,32,10,32,12,32,575,9,32,1,32,1,32,1, - 32,1,32,1,32,1,32,5,32,583,8,32,10,32,12,32,586,9,32,1,32,1,32,1,32,1, - 32,1,32,1,32,5,32,594,8,32,10,32,12,32,597,9,32,1,32,1,32,1,32,1,32,1, - 32,1,32,5,32,605,8,32,10,32,12,32,608,9,32,1,32,1,32,1,32,1,32,1,32,1, - 32,5,32,616,8,32,10,32,12,32,619,9,32,1,32,1,32,1,32,1,32,3,32,625,8,32, - 1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,634,8,33,1,34,1,34,1,34,1,34,1, - 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1, - 34,1,34,3,34,656,8,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 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,1,0,4,0,132,8,0,11,0,12,0,133,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,151,8,1,1,2,1,2,1,2,1,2,1,3,1,3,1,3, + 5,3,160,8,3,10,3,12,3,163,9,3,1,4,1,4,3,4,167,8,4,1,5,1,5,1,5,1,5,1,6, + 1,6,5,6,175,8,6,10,6,12,6,178,9,6,1,6,1,6,1,6,1,6,1,6,1,6,5,6,186,8,6, + 10,6,12,6,189,9,6,1,6,1,6,1,6,1,6,1,6,1,6,5,6,197,8,6,10,6,12,6,200,9, + 6,1,6,1,6,1,6,1,6,1,6,1,6,5,6,208,8,6,10,6,12,6,211,9,6,1,6,1,6,1,6,1, + 6,1,6,1,6,5,6,219,8,6,10,6,12,6,222,9,6,1,6,1,6,1,6,1,6,3,6,228,8,6,1, + 7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,5,7,245,8,7, + 10,7,12,7,248,9,7,1,7,1,7,1,7,3,7,253,8,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1, + 9,1,9,3,9,281,8,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,291,8,10, + 1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12, + 1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,5,13,315,8,13,10,13,12,13,318, + 9,13,1,13,1,13,3,13,322,8,13,1,14,1,14,3,14,326,8,14,1,15,1,15,1,15,5, + 15,331,8,15,10,15,12,15,334,9,15,1,15,1,15,1,16,1,16,1,16,1,16,5,16,342, + 8,16,10,16,12,16,345,9,16,1,16,1,16,3,16,349,8,16,1,17,1,17,1,17,1,17, + 1,17,1,18,5,18,357,8,18,10,18,12,18,360,9,18,1,18,1,18,1,19,1,19,1,19, + 1,19,1,19,1,19,3,19,370,8,19,1,20,1,20,1,20,1,20,5,20,376,8,20,10,20,12, + 20,379,9,20,3,20,381,8,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,5,21,394,8,21,10,21,12,21,397,9,21,1,21,1,21,1,21,1,21,1,21, + 5,21,404,8,21,10,21,12,21,407,9,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,3,21,432,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,5,21,442, + 8,21,10,21,12,21,445,9,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, + 5,22,456,8,22,10,22,12,22,459,9,22,1,22,1,22,1,22,1,22,1,22,5,22,466,8, + 22,10,22,12,22,469,9,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1, + 22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,3,22,492,8,22, + 1,22,1,22,1,22,1,22,1,22,5,22,499,8,22,10,22,12,22,502,9,22,1,23,5,23, + 505,8,23,10,23,12,23,508,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,24,1,24,1,24,1,24,1,24,3,24,523,8,24,1,25,1,25,1,25,1,25,5,25,529,8, + 25,10,25,12,25,532,9,25,1,25,1,25,3,25,536,8,25,1,26,1,26,3,26,540,8,26, + 1,27,1,27,1,27,5,27,545,8,27,10,27,12,27,548,9,27,1,27,1,27,1,28,1,28, + 1,28,1,28,5,28,556,8,28,10,28,12,28,559,9,28,1,28,1,28,3,28,563,8,28,1, + 29,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,32,1,32,5,32,578, + 8,32,10,32,12,32,581,9,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,589,8,32, + 10,32,12,32,592,9,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,600,8,32,10,32, + 12,32,603,9,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,611,8,32,10,32,12,32, + 614,9,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,622,8,32,10,32,12,32,625,9, + 32,1,32,1,32,1,32,1,32,3,32,631,8,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33, + 3,33,640,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1, + 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,662,8,34,1,34,1,34,1,34, + 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,721,8,34,10, - 34,12,34,724,9,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,743,8,35,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,1,36,3,36,753,8,36,1,36,1,36,1,36,1,36,1,36,1,36,5,36,761,8, - 36,10,36,12,36,764,9,36,1,37,1,37,1,37,3,37,769,8,37,1,37,1,37,1,38,3, - 38,774,8,38,1,38,1,38,5,38,778,8,38,10,38,12,38,781,9,38,3,38,783,8,38, - 1,39,1,39,1,39,3,39,788,8,39,1,39,1,39,1,40,3,40,793,8,40,1,40,1,40,5, - 40,797,8,40,10,40,12,40,800,9,40,3,40,802,8,40,1,41,1,41,1,41,1,41,1,41, - 1,41,3,41,810,8,41,1,42,3,42,813,8,42,1,42,1,42,5,42,817,8,42,10,42,12, - 42,820,9,42,3,42,822,8,42,1,42,3,42,825,8,42,1,43,1,43,1,43,1,43,3,43, - 831,8,43,1,44,3,44,834,8,44,1,44,1,44,5,44,838,8,44,10,44,12,44,841,9, - 44,3,44,843,8,44,1,44,3,44,846,8,44,1,45,1,45,1,45,1,45,3,45,852,8,45, - 1,46,5,46,855,8,46,10,46,12,46,858,9,46,1,47,1,47,1,47,1,47,1,47,1,47, - 3,47,866,8,47,1,48,1,48,1,48,1,48,5,48,872,8,48,10,48,12,48,875,9,48,1, - 48,1,48,3,48,879,8,48,1,49,1,49,3,49,883,8,49,1,50,1,50,1,50,5,50,888, - 8,50,10,50,12,50,891,9,50,1,50,1,50,1,51,1,51,1,51,1,51,5,51,899,8,51, - 10,51,12,51,902,9,51,1,51,1,51,3,51,906,8,51,1,52,1,52,1,52,1,52,1,53, - 1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54, - 926,8,54,10,54,12,54,929,9,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, - 1,54,1,54,5,54,941,8,54,10,54,12,54,944,9,54,1,54,1,54,3,54,948,8,54,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,958,8,55,10,55,12,55,961,9, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,973,8,55,10, - 55,12,55,976,9,55,1,55,1,55,3,55,980,8,55,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,5,56,990,8,56,10,56,12,56,993,9,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,56,5,56,1005,8,56,10,56,12,56,1008,9,56,1,56,1,56, - 3,56,1012,8,56,1,57,1,57,1,57,3,57,1017,8,57,1,57,1,57,1,57,1,57,1,57, - 5,57,1024,8,57,10,57,12,57,1027,9,57,1,57,1,57,1,58,1,58,1,58,3,58,1034, - 8,58,1,58,1,58,1,58,1,58,1,58,5,58,1041,8,58,10,58,12,58,1044,9,58,1,58, - 1,58,1,59,1,59,1,59,3,59,1051,8,59,1,59,1,59,1,59,1,59,1,59,5,59,1058, - 8,59,10,59,12,59,1061,9,59,1,59,1,59,1,60,1,60,1,60,1,60,5,60,1069,8,60, - 10,60,12,60,1072,9,60,1,60,1,60,1,61,1,61,1,61,1,61,5,61,1080,8,61,10, - 61,12,61,1083,9,61,1,61,1,61,1,62,1,62,1,62,1,62,5,62,1091,8,62,10,62, - 12,62,1094,9,62,1,62,1,62,1,62,0,4,42,44,68,72,63,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,0,0,1231,0,127,1,0,0,0,2,146,1,0,0,0,4, - 148,1,0,0,0,6,152,1,0,0,0,8,162,1,0,0,0,10,164,1,0,0,0,12,223,1,0,0,0, - 14,248,1,0,0,0,16,250,1,0,0,0,18,276,1,0,0,0,20,286,1,0,0,0,22,288,1,0, - 0,0,24,297,1,0,0,0,26,306,1,0,0,0,28,321,1,0,0,0,30,323,1,0,0,0,32,333, - 1,0,0,0,34,346,1,0,0,0,36,354,1,0,0,0,38,365,1,0,0,0,40,367,1,0,0,0,42, - 427,1,0,0,0,44,487,1,0,0,0,46,502,1,0,0,0,48,516,1,0,0,0,50,518,1,0,0, - 0,52,533,1,0,0,0,54,535,1,0,0,0,56,545,1,0,0,0,58,558,1,0,0,0,60,562,1, - 0,0,0,62,565,1,0,0,0,64,624,1,0,0,0,66,633,1,0,0,0,68,655,1,0,0,0,70,742, - 1,0,0,0,72,752,1,0,0,0,74,765,1,0,0,0,76,782,1,0,0,0,78,784,1,0,0,0,80, - 801,1,0,0,0,82,809,1,0,0,0,84,821,1,0,0,0,86,830,1,0,0,0,88,842,1,0,0, - 0,90,851,1,0,0,0,92,856,1,0,0,0,94,865,1,0,0,0,96,867,1,0,0,0,98,882,1, - 0,0,0,100,884,1,0,0,0,102,894,1,0,0,0,104,907,1,0,0,0,106,911,1,0,0,0, - 108,947,1,0,0,0,110,979,1,0,0,0,112,1011,1,0,0,0,114,1013,1,0,0,0,116, - 1030,1,0,0,0,118,1047,1,0,0,0,120,1064,1,0,0,0,122,1075,1,0,0,0,124,1086, - 1,0,0,0,126,128,3,2,1,0,127,126,1,0,0,0,128,129,1,0,0,0,129,127,1,0,0, - 0,129,130,1,0,0,0,130,131,1,0,0,0,131,132,5,0,0,1,132,1,1,0,0,0,133,147, - 3,10,5,0,134,147,3,12,6,0,135,147,3,14,7,0,136,147,3,22,11,0,137,147,3, - 24,12,0,138,147,3,26,13,0,139,147,3,34,17,0,140,147,3,4,2,0,141,147,3, - 16,8,0,142,147,3,18,9,0,143,147,3,110,55,0,144,147,3,116,58,0,145,147, - 3,122,61,0,146,133,1,0,0,0,146,134,1,0,0,0,146,135,1,0,0,0,146,136,1,0, - 0,0,146,137,1,0,0,0,146,138,1,0,0,0,146,139,1,0,0,0,146,140,1,0,0,0,146, - 141,1,0,0,0,146,142,1,0,0,0,146,143,1,0,0,0,146,144,1,0,0,0,146,145,1, - 0,0,0,147,3,1,0,0,0,148,149,5,23,0,0,149,150,3,6,3,0,150,151,5,36,0,0, - 151,5,1,0,0,0,152,157,3,8,4,0,153,154,5,42,0,0,154,156,3,8,4,0,155,153, - 1,0,0,0,156,159,1,0,0,0,157,155,1,0,0,0,157,158,1,0,0,0,158,7,1,0,0,0, - 159,157,1,0,0,0,160,163,5,65,0,0,161,163,5,77,0,0,162,160,1,0,0,0,162, - 161,1,0,0,0,163,9,1,0,0,0,164,165,5,3,0,0,165,166,3,8,4,0,166,167,5,36, - 0,0,167,11,1,0,0,0,168,172,5,71,0,0,169,171,3,66,33,0,170,169,1,0,0,0, - 171,174,1,0,0,0,172,170,1,0,0,0,172,173,1,0,0,0,173,175,1,0,0,0,174,172, - 1,0,0,0,175,176,5,37,0,0,176,177,3,68,34,0,177,178,5,36,0,0,178,224,1, - 0,0,0,179,183,5,71,0,0,180,182,3,66,33,0,181,180,1,0,0,0,182,185,1,0,0, - 0,183,181,1,0,0,0,183,184,1,0,0,0,184,186,1,0,0,0,185,183,1,0,0,0,186, - 187,5,38,0,0,187,188,3,68,34,0,188,189,5,36,0,0,189,224,1,0,0,0,190,194, - 5,71,0,0,191,193,3,66,33,0,192,191,1,0,0,0,193,196,1,0,0,0,194,192,1,0, - 0,0,194,195,1,0,0,0,195,197,1,0,0,0,196,194,1,0,0,0,197,198,5,39,0,0,198, - 199,3,68,34,0,199,200,5,36,0,0,200,224,1,0,0,0,201,205,5,71,0,0,202,204, - 3,66,33,0,203,202,1,0,0,0,204,207,1,0,0,0,205,203,1,0,0,0,205,206,1,0, - 0,0,206,208,1,0,0,0,207,205,1,0,0,0,208,209,5,40,0,0,209,210,3,68,34,0, - 210,211,5,36,0,0,211,224,1,0,0,0,212,216,5,71,0,0,213,215,3,66,33,0,214, - 213,1,0,0,0,215,218,1,0,0,0,216,214,1,0,0,0,216,217,1,0,0,0,217,219,1, - 0,0,0,218,216,1,0,0,0,219,220,5,41,0,0,220,221,3,68,34,0,221,222,5,36, - 0,0,222,224,1,0,0,0,223,168,1,0,0,0,223,179,1,0,0,0,223,190,1,0,0,0,223, - 201,1,0,0,0,223,212,1,0,0,0,224,13,1,0,0,0,225,226,5,20,0,0,226,227,3, - 8,4,0,227,228,5,36,0,0,228,249,1,0,0,0,229,230,5,20,0,0,230,231,3,8,4, - 0,231,232,5,37,0,0,232,233,5,27,0,0,233,234,5,36,0,0,234,249,1,0,0,0,235, - 236,5,20,0,0,236,237,3,8,4,0,237,238,5,37,0,0,238,242,5,30,0,0,239,241, - 3,20,10,0,240,239,1,0,0,0,241,244,1,0,0,0,242,240,1,0,0,0,242,243,1,0, - 0,0,243,245,1,0,0,0,244,242,1,0,0,0,245,246,5,31,0,0,246,247,5,36,0,0, - 247,249,1,0,0,0,248,225,1,0,0,0,248,229,1,0,0,0,248,235,1,0,0,0,249,15, - 1,0,0,0,250,251,5,28,0,0,251,252,3,8,4,0,252,253,5,42,0,0,253,254,3,8, - 4,0,254,255,5,37,0,0,255,256,3,68,34,0,256,257,5,36,0,0,257,17,1,0,0,0, - 258,259,5,29,0,0,259,260,3,68,34,0,260,261,5,42,0,0,261,262,3,8,4,0,262, - 263,5,42,0,0,263,264,3,8,4,0,264,265,5,37,0,0,265,266,3,68,34,0,266,267, - 5,36,0,0,267,277,1,0,0,0,268,269,5,29,0,0,269,270,3,68,34,0,270,271,5, - 42,0,0,271,272,3,8,4,0,272,273,5,37,0,0,273,274,3,68,34,0,274,275,5,36, - 0,0,275,277,1,0,0,0,276,258,1,0,0,0,276,268,1,0,0,0,277,19,1,0,0,0,278, - 279,5,25,0,0,279,280,3,8,4,0,280,281,5,36,0,0,281,287,1,0,0,0,282,283, - 5,26,0,0,283,284,3,8,4,0,284,285,5,36,0,0,285,287,1,0,0,0,286,278,1,0, - 0,0,286,282,1,0,0,0,287,21,1,0,0,0,288,289,5,4,0,0,289,290,5,77,0,0,290, - 291,5,32,0,0,291,292,3,88,44,0,292,293,5,33,0,0,293,294,5,30,0,0,294,295, - 3,92,46,0,295,296,5,31,0,0,296,23,1,0,0,0,297,298,5,8,0,0,298,299,5,77, - 0,0,299,300,5,32,0,0,300,301,3,88,44,0,301,302,5,33,0,0,302,303,5,30,0, - 0,303,304,3,46,23,0,304,305,5,31,0,0,305,25,1,0,0,0,306,307,5,5,0,0,307, - 308,3,68,34,0,308,312,5,30,0,0,309,311,3,2,1,0,310,309,1,0,0,0,311,314, - 1,0,0,0,312,310,1,0,0,0,312,313,1,0,0,0,313,315,1,0,0,0,314,312,1,0,0, - 0,315,317,5,31,0,0,316,318,3,28,14,0,317,316,1,0,0,0,317,318,1,0,0,0,318, - 27,1,0,0,0,319,322,3,30,15,0,320,322,3,32,16,0,321,319,1,0,0,0,321,320, - 1,0,0,0,322,29,1,0,0,0,323,324,5,6,0,0,324,328,5,30,0,0,325,327,3,2,1, - 0,326,325,1,0,0,0,327,330,1,0,0,0,328,326,1,0,0,0,328,329,1,0,0,0,329, - 331,1,0,0,0,330,328,1,0,0,0,331,332,5,31,0,0,332,31,1,0,0,0,333,334,5, - 7,0,0,334,335,3,68,34,0,335,339,5,30,0,0,336,338,3,2,1,0,337,336,1,0,0, - 0,338,341,1,0,0,0,339,337,1,0,0,0,339,340,1,0,0,0,340,342,1,0,0,0,341, - 339,1,0,0,0,342,344,5,31,0,0,343,345,3,28,14,0,344,343,1,0,0,0,344,345, - 1,0,0,0,345,33,1,0,0,0,346,347,3,36,18,0,347,348,5,30,0,0,348,349,3,46, - 23,0,349,350,5,31,0,0,350,35,1,0,0,0,351,353,3,38,19,0,352,351,1,0,0,0, - 353,356,1,0,0,0,354,352,1,0,0,0,354,355,1,0,0,0,355,357,1,0,0,0,356,354, - 1,0,0,0,357,358,3,42,21,0,358,37,1,0,0,0,359,360,5,18,0,0,360,366,3,72, - 36,0,361,362,5,19,0,0,362,366,3,8,4,0,363,364,5,24,0,0,364,366,3,40,20, - 0,365,359,1,0,0,0,365,361,1,0,0,0,365,363,1,0,0,0,366,39,1,0,0,0,367,376, - 5,32,0,0,368,373,3,68,34,0,369,370,5,42,0,0,370,372,3,68,34,0,371,369, - 1,0,0,0,372,375,1,0,0,0,373,371,1,0,0,0,373,374,1,0,0,0,374,377,1,0,0, - 0,375,373,1,0,0,0,376,368,1,0,0,0,376,377,1,0,0,0,377,378,1,0,0,0,378, - 379,5,33,0,0,379,41,1,0,0,0,380,381,6,21,-1,0,381,428,5,77,0,0,382,428, - 5,65,0,0,383,428,5,69,0,0,384,428,5,70,0,0,385,386,5,69,0,0,386,387,5, - 37,0,0,387,391,5,34,0,0,388,390,3,94,47,0,389,388,1,0,0,0,390,393,1,0, - 0,0,391,389,1,0,0,0,391,392,1,0,0,0,392,394,1,0,0,0,393,391,1,0,0,0,394, - 428,5,35,0,0,395,396,5,70,0,0,396,397,5,37,0,0,397,401,5,34,0,0,398,400, - 3,94,47,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402,1,0, - 0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,428,5,35,0,0,405,428,5,67,0,0, - 406,428,5,68,0,0,407,428,5,74,0,0,408,428,5,75,0,0,409,428,5,76,0,0,410, - 411,5,32,0,0,411,412,3,42,21,0,412,413,5,33,0,0,413,428,1,0,0,0,414,415, - 5,43,0,0,415,428,5,77,0,0,416,417,5,43,0,0,417,428,5,65,0,0,418,419,5, - 59,0,0,419,428,5,69,0,0,420,421,5,59,0,0,421,428,5,70,0,0,422,423,5,59, - 0,0,423,428,5,67,0,0,424,425,5,59,0,0,425,428,5,68,0,0,426,428,5,45,0, - 0,427,380,1,0,0,0,427,382,1,0,0,0,427,383,1,0,0,0,427,384,1,0,0,0,427, - 385,1,0,0,0,427,395,1,0,0,0,427,405,1,0,0,0,427,406,1,0,0,0,427,407,1, - 0,0,0,427,408,1,0,0,0,427,409,1,0,0,0,427,410,1,0,0,0,427,414,1,0,0,0, - 427,416,1,0,0,0,427,418,1,0,0,0,427,420,1,0,0,0,427,422,1,0,0,0,427,424, - 1,0,0,0,427,426,1,0,0,0,428,439,1,0,0,0,429,430,10,10,0,0,430,431,5,42, - 0,0,431,438,3,44,22,0,432,433,10,9,0,0,433,434,5,49,0,0,434,438,3,44,22, - 0,435,436,10,8,0,0,436,438,3,44,22,0,437,429,1,0,0,0,437,432,1,0,0,0,437, - 435,1,0,0,0,438,441,1,0,0,0,439,437,1,0,0,0,439,440,1,0,0,0,440,43,1,0, - 0,0,441,439,1,0,0,0,442,443,6,22,-1,0,443,488,5,77,0,0,444,488,5,65,0, - 0,445,488,5,69,0,0,446,488,5,70,0,0,447,448,5,69,0,0,448,449,5,37,0,0, - 449,453,5,34,0,0,450,452,3,94,47,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,488,5, - 35,0,0,457,458,5,70,0,0,458,459,5,37,0,0,459,463,5,34,0,0,460,462,3,94, - 47,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,488,5,35,0,0,467,488,5,67,0,0,468,488, - 5,68,0,0,469,488,5,74,0,0,470,471,5,32,0,0,471,472,3,44,22,0,472,473,5, - 33,0,0,473,488,1,0,0,0,474,475,5,43,0,0,475,488,5,77,0,0,476,477,5,43, - 0,0,477,488,5,65,0,0,478,479,5,59,0,0,479,488,5,69,0,0,480,481,5,59,0, - 0,481,488,5,70,0,0,482,483,5,59,0,0,483,488,5,67,0,0,484,485,5,59,0,0, - 485,488,5,68,0,0,486,488,5,45,0,0,487,442,1,0,0,0,487,444,1,0,0,0,487, - 445,1,0,0,0,487,446,1,0,0,0,487,447,1,0,0,0,487,457,1,0,0,0,487,467,1, - 0,0,0,487,468,1,0,0,0,487,469,1,0,0,0,487,470,1,0,0,0,487,474,1,0,0,0, - 487,476,1,0,0,0,487,478,1,0,0,0,487,480,1,0,0,0,487,482,1,0,0,0,487,484, - 1,0,0,0,487,486,1,0,0,0,488,496,1,0,0,0,489,490,10,9,0,0,490,491,5,42, - 0,0,491,495,3,44,22,10,492,493,10,8,0,0,493,495,3,44,22,9,494,489,1,0, - 0,0,494,492,1,0,0,0,495,498,1,0,0,0,496,494,1,0,0,0,496,497,1,0,0,0,497, - 45,1,0,0,0,498,496,1,0,0,0,499,501,3,48,24,0,500,499,1,0,0,0,501,504,1, - 0,0,0,502,500,1,0,0,0,502,503,1,0,0,0,503,47,1,0,0,0,504,502,1,0,0,0,505, - 517,3,12,6,0,506,517,3,50,25,0,507,517,3,118,59,0,508,517,3,124,62,0,509, - 517,3,112,56,0,510,517,3,58,29,0,511,517,3,60,30,0,512,517,3,62,31,0,513, - 517,3,64,32,0,514,517,3,34,17,0,515,517,3,106,53,0,516,505,1,0,0,0,516, - 506,1,0,0,0,516,507,1,0,0,0,516,508,1,0,0,0,516,509,1,0,0,0,516,510,1, - 0,0,0,516,511,1,0,0,0,516,512,1,0,0,0,516,513,1,0,0,0,516,514,1,0,0,0, - 516,515,1,0,0,0,517,49,1,0,0,0,518,519,5,5,0,0,519,520,3,68,34,0,520,524, - 5,30,0,0,521,523,3,48,24,0,522,521,1,0,0,0,523,526,1,0,0,0,524,522,1,0, - 0,0,524,525,1,0,0,0,525,527,1,0,0,0,526,524,1,0,0,0,527,529,5,31,0,0,528, - 530,3,52,26,0,529,528,1,0,0,0,529,530,1,0,0,0,530,51,1,0,0,0,531,534,3, - 54,27,0,532,534,3,56,28,0,533,531,1,0,0,0,533,532,1,0,0,0,534,53,1,0,0, - 0,535,536,5,6,0,0,536,540,5,30,0,0,537,539,3,48,24,0,538,537,1,0,0,0,539, - 542,1,0,0,0,540,538,1,0,0,0,540,541,1,0,0,0,541,543,1,0,0,0,542,540,1, - 0,0,0,543,544,5,31,0,0,544,55,1,0,0,0,545,546,5,7,0,0,546,547,3,68,34, - 0,547,551,5,30,0,0,548,550,3,48,24,0,549,548,1,0,0,0,550,553,1,0,0,0,551, - 549,1,0,0,0,551,552,1,0,0,0,552,554,1,0,0,0,553,551,1,0,0,0,554,556,5, - 31,0,0,555,557,3,52,26,0,556,555,1,0,0,0,556,557,1,0,0,0,557,57,1,0,0, - 0,558,559,5,16,0,0,559,560,3,68,34,0,560,561,5,36,0,0,561,59,1,0,0,0,562, - 563,5,66,0,0,563,564,5,36,0,0,564,61,1,0,0,0,565,566,5,17,0,0,566,567, - 3,68,34,0,567,568,5,36,0,0,568,63,1,0,0,0,569,573,3,8,4,0,570,572,3,66, - 33,0,571,570,1,0,0,0,572,575,1,0,0,0,573,571,1,0,0,0,573,574,1,0,0,0,574, - 576,1,0,0,0,575,573,1,0,0,0,576,577,5,37,0,0,577,578,3,68,34,0,578,579, - 5,36,0,0,579,625,1,0,0,0,580,584,3,8,4,0,581,583,3,66,33,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,587,1,0,0,0,586, - 584,1,0,0,0,587,588,5,38,0,0,588,589,3,68,34,0,589,590,5,36,0,0,590,625, - 1,0,0,0,591,595,3,8,4,0,592,594,3,66,33,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,598,1,0,0,0,597,595,1,0,0,0,598, - 599,5,39,0,0,599,600,3,68,34,0,600,601,5,36,0,0,601,625,1,0,0,0,602,606, - 3,8,4,0,603,605,3,66,33,0,604,603,1,0,0,0,605,608,1,0,0,0,606,604,1,0, - 0,0,606,607,1,0,0,0,607,609,1,0,0,0,608,606,1,0,0,0,609,610,5,41,0,0,610, - 611,3,68,34,0,611,612,5,36,0,0,612,625,1,0,0,0,613,617,3,8,4,0,614,616, - 3,66,33,0,615,614,1,0,0,0,616,619,1,0,0,0,617,615,1,0,0,0,617,618,1,0, - 0,0,618,620,1,0,0,0,619,617,1,0,0,0,620,621,5,40,0,0,621,622,3,68,34,0, - 622,623,5,36,0,0,623,625,1,0,0,0,624,569,1,0,0,0,624,580,1,0,0,0,624,591, - 1,0,0,0,624,602,1,0,0,0,624,613,1,0,0,0,625,65,1,0,0,0,626,627,5,34,0, - 0,627,628,3,68,34,0,628,629,5,35,0,0,629,634,1,0,0,0,630,631,5,34,0,0, - 631,632,5,45,0,0,632,634,5,35,0,0,633,626,1,0,0,0,633,630,1,0,0,0,634, - 67,1,0,0,0,635,636,6,34,-1,0,636,637,5,77,0,0,637,638,5,32,0,0,638,639, - 3,84,42,0,639,640,5,33,0,0,640,656,1,0,0,0,641,656,3,70,35,0,642,656,5, - 71,0,0,643,656,5,72,0,0,644,656,5,73,0,0,645,646,5,32,0,0,646,647,3,68, - 34,0,647,648,5,33,0,0,648,656,1,0,0,0,649,650,5,44,0,0,650,656,3,68,34, - 20,651,652,5,43,0,0,652,656,3,68,34,19,653,654,5,48,0,0,654,656,3,68,34, - 18,655,635,1,0,0,0,655,641,1,0,0,0,655,642,1,0,0,0,655,643,1,0,0,0,655, - 644,1,0,0,0,655,645,1,0,0,0,655,649,1,0,0,0,655,651,1,0,0,0,655,653,1, - 0,0,0,656,722,1,0,0,0,657,658,10,14,0,0,658,659,5,45,0,0,659,721,3,68, - 34,15,660,661,10,13,0,0,661,662,5,46,0,0,662,721,3,68,34,14,663,664,10, - 12,0,0,664,665,5,47,0,0,665,721,3,68,34,13,666,667,10,11,0,0,667,668,5, - 43,0,0,668,721,3,68,34,12,669,670,10,10,0,0,670,671,5,44,0,0,671,721,3, - 68,34,11,672,673,10,9,0,0,673,674,5,49,0,0,674,721,3,68,34,10,675,676, - 10,8,0,0,676,677,5,51,0,0,677,721,3,68,34,9,678,679,10,7,0,0,679,680,5, - 50,0,0,680,721,3,68,34,8,681,682,10,6,0,0,682,683,5,52,0,0,683,721,3,68, - 34,7,684,685,10,5,0,0,685,686,5,53,0,0,686,721,3,68,34,6,687,688,10,4, - 0,0,688,689,5,54,0,0,689,721,3,68,34,5,690,691,10,3,0,0,691,692,5,55,0, - 0,692,721,3,68,34,4,693,694,10,2,0,0,694,695,5,56,0,0,695,721,3,68,34, - 3,696,697,10,1,0,0,697,698,5,57,0,0,698,699,3,68,34,0,699,700,5,58,0,0, - 700,701,3,68,34,2,701,721,1,0,0,0,702,703,10,17,0,0,703,704,5,37,0,0,704, - 705,5,77,0,0,705,706,5,32,0,0,706,707,3,84,42,0,707,708,5,33,0,0,708,721, - 1,0,0,0,709,710,10,16,0,0,710,711,5,74,0,0,711,712,5,32,0,0,712,713,3, - 84,42,0,713,714,5,33,0,0,714,721,1,0,0,0,715,716,10,15,0,0,716,717,5,34, - 0,0,717,718,3,68,34,0,718,719,5,35,0,0,719,721,1,0,0,0,720,657,1,0,0,0, - 720,660,1,0,0,0,720,663,1,0,0,0,720,666,1,0,0,0,720,669,1,0,0,0,720,672, - 1,0,0,0,720,675,1,0,0,0,720,678,1,0,0,0,720,681,1,0,0,0,720,684,1,0,0, - 0,720,687,1,0,0,0,720,690,1,0,0,0,720,693,1,0,0,0,720,696,1,0,0,0,720, - 702,1,0,0,0,720,709,1,0,0,0,720,715,1,0,0,0,721,724,1,0,0,0,722,720,1, - 0,0,0,722,723,1,0,0,0,723,69,1,0,0,0,724,722,1,0,0,0,725,743,5,66,0,0, - 726,743,5,61,0,0,727,743,5,62,0,0,728,743,5,64,0,0,729,743,5,65,0,0,730, - 743,5,77,0,0,731,743,5,60,0,0,732,733,5,4,0,0,733,734,5,32,0,0,734,735, - 3,88,44,0,735,736,5,33,0,0,736,737,5,30,0,0,737,738,3,92,46,0,738,739, - 5,31,0,0,739,743,1,0,0,0,740,743,3,74,37,0,741,743,3,78,39,0,742,725,1, - 0,0,0,742,726,1,0,0,0,742,727,1,0,0,0,742,728,1,0,0,0,742,729,1,0,0,0, - 742,730,1,0,0,0,742,731,1,0,0,0,742,732,1,0,0,0,742,740,1,0,0,0,742,741, - 1,0,0,0,743,71,1,0,0,0,744,745,6,36,-1,0,745,746,5,32,0,0,746,747,3,72, - 36,0,747,748,5,33,0,0,748,753,1,0,0,0,749,750,5,48,0,0,750,753,3,72,36, - 2,751,753,3,8,4,0,752,744,1,0,0,0,752,749,1,0,0,0,752,751,1,0,0,0,753, - 762,1,0,0,0,754,755,10,4,0,0,755,756,5,55,0,0,756,761,3,72,36,5,757,758, - 10,3,0,0,758,759,5,56,0,0,759,761,3,72,36,4,760,754,1,0,0,0,760,757,1, - 0,0,0,761,764,1,0,0,0,762,760,1,0,0,0,762,763,1,0,0,0,763,73,1,0,0,0,764, - 762,1,0,0,0,765,766,5,34,0,0,766,768,3,76,38,0,767,769,5,42,0,0,768,767, - 1,0,0,0,768,769,1,0,0,0,769,770,1,0,0,0,770,771,5,35,0,0,771,75,1,0,0, - 0,772,774,3,68,34,0,773,772,1,0,0,0,773,774,1,0,0,0,774,779,1,0,0,0,775, - 776,5,42,0,0,776,778,3,68,34,0,777,775,1,0,0,0,778,781,1,0,0,0,779,777, - 1,0,0,0,779,780,1,0,0,0,780,783,1,0,0,0,781,779,1,0,0,0,782,773,1,0,0, - 0,782,783,1,0,0,0,783,77,1,0,0,0,784,785,5,30,0,0,785,787,3,80,40,0,786, - 788,5,42,0,0,787,786,1,0,0,0,787,788,1,0,0,0,788,789,1,0,0,0,789,790,5, - 31,0,0,790,79,1,0,0,0,791,793,3,82,41,0,792,791,1,0,0,0,792,793,1,0,0, - 0,793,798,1,0,0,0,794,795,5,42,0,0,795,797,3,82,41,0,796,794,1,0,0,0,797, - 800,1,0,0,0,798,796,1,0,0,0,798,799,1,0,0,0,799,802,1,0,0,0,800,798,1, - 0,0,0,801,792,1,0,0,0,801,802,1,0,0,0,802,81,1,0,0,0,803,804,5,77,0,0, - 804,805,5,37,0,0,805,810,3,68,34,0,806,807,5,65,0,0,807,808,5,37,0,0,808, - 810,3,68,34,0,809,803,1,0,0,0,809,806,1,0,0,0,810,83,1,0,0,0,811,813,3, - 86,43,0,812,811,1,0,0,0,812,813,1,0,0,0,813,818,1,0,0,0,814,815,5,42,0, - 0,815,817,3,86,43,0,816,814,1,0,0,0,817,820,1,0,0,0,818,816,1,0,0,0,818, - 819,1,0,0,0,819,822,1,0,0,0,820,818,1,0,0,0,821,812,1,0,0,0,821,822,1, - 0,0,0,822,824,1,0,0,0,823,825,5,42,0,0,824,823,1,0,0,0,824,825,1,0,0,0, - 825,85,1,0,0,0,826,827,5,71,0,0,827,828,5,37,0,0,828,831,3,68,34,0,829, - 831,3,68,34,0,830,826,1,0,0,0,830,829,1,0,0,0,831,87,1,0,0,0,832,834,3, - 90,45,0,833,832,1,0,0,0,833,834,1,0,0,0,834,839,1,0,0,0,835,836,5,42,0, - 0,836,838,3,90,45,0,837,835,1,0,0,0,838,841,1,0,0,0,839,837,1,0,0,0,839, - 840,1,0,0,0,840,843,1,0,0,0,841,839,1,0,0,0,842,833,1,0,0,0,842,843,1, - 0,0,0,843,845,1,0,0,0,844,846,5,42,0,0,845,844,1,0,0,0,845,846,1,0,0,0, - 846,89,1,0,0,0,847,852,5,71,0,0,848,849,5,71,0,0,849,850,5,37,0,0,850, - 852,3,68,34,0,851,847,1,0,0,0,851,848,1,0,0,0,852,91,1,0,0,0,853,855,3, - 94,47,0,854,853,1,0,0,0,855,858,1,0,0,0,856,854,1,0,0,0,856,857,1,0,0, - 0,857,93,1,0,0,0,858,856,1,0,0,0,859,866,3,12,6,0,860,866,3,96,48,0,861, - 866,3,104,52,0,862,866,3,108,54,0,863,866,3,114,57,0,864,866,3,120,60, - 0,865,859,1,0,0,0,865,860,1,0,0,0,865,861,1,0,0,0,865,862,1,0,0,0,865, - 863,1,0,0,0,865,864,1,0,0,0,866,95,1,0,0,0,867,868,5,5,0,0,868,869,3,68, - 34,0,869,873,5,30,0,0,870,872,3,94,47,0,871,870,1,0,0,0,872,875,1,0,0, - 0,873,871,1,0,0,0,873,874,1,0,0,0,874,876,1,0,0,0,875,873,1,0,0,0,876, - 878,5,31,0,0,877,879,3,98,49,0,878,877,1,0,0,0,878,879,1,0,0,0,879,97, - 1,0,0,0,880,883,3,100,50,0,881,883,3,102,51,0,882,880,1,0,0,0,882,881, - 1,0,0,0,883,99,1,0,0,0,884,885,5,6,0,0,885,889,5,30,0,0,886,888,3,94,47, - 0,887,886,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0,0,889,890,1,0,0,0,890, - 892,1,0,0,0,891,889,1,0,0,0,892,893,5,31,0,0,893,101,1,0,0,0,894,895,5, - 7,0,0,895,896,3,68,34,0,896,900,5,30,0,0,897,899,3,94,47,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,903,1,0,0,0,902, - 900,1,0,0,0,903,905,5,31,0,0,904,906,3,98,49,0,905,904,1,0,0,0,905,906, - 1,0,0,0,906,103,1,0,0,0,907,908,5,22,0,0,908,909,3,68,34,0,909,910,5,36, - 0,0,910,105,1,0,0,0,911,912,5,21,0,0,912,913,5,77,0,0,913,914,5,32,0,0, - 914,915,3,84,42,0,915,916,5,33,0,0,916,107,1,0,0,0,917,918,5,10,0,0,918, - 919,5,71,0,0,919,920,5,11,0,0,920,921,3,68,34,0,921,922,5,13,0,0,922,923, - 3,68,34,0,923,927,5,30,0,0,924,926,3,94,47,0,925,924,1,0,0,0,926,929,1, - 0,0,0,927,925,1,0,0,0,927,928,1,0,0,0,928,930,1,0,0,0,929,927,1,0,0,0, - 930,931,5,31,0,0,931,948,1,0,0,0,932,933,5,10,0,0,933,934,5,71,0,0,934, - 935,5,11,0,0,935,936,3,68,34,0,936,937,5,12,0,0,937,938,3,68,34,0,938, - 942,5,30,0,0,939,941,3,94,47,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,5,31,0, - 0,946,948,1,0,0,0,947,917,1,0,0,0,947,932,1,0,0,0,948,109,1,0,0,0,949, - 950,5,10,0,0,950,951,5,71,0,0,951,952,5,11,0,0,952,953,3,68,34,0,953,954, - 5,13,0,0,954,955,3,68,34,0,955,959,5,30,0,0,956,958,3,2,1,0,957,956,1, - 0,0,0,958,961,1,0,0,0,959,957,1,0,0,0,959,960,1,0,0,0,960,962,1,0,0,0, - 961,959,1,0,0,0,962,963,5,31,0,0,963,980,1,0,0,0,964,965,5,10,0,0,965, - 966,5,71,0,0,966,967,5,11,0,0,967,968,3,68,34,0,968,969,5,12,0,0,969,970, - 3,68,34,0,970,974,5,30,0,0,971,973,3,2,1,0,972,971,1,0,0,0,973,976,1,0, - 0,0,974,972,1,0,0,0,974,975,1,0,0,0,975,977,1,0,0,0,976,974,1,0,0,0,977, - 978,5,31,0,0,978,980,1,0,0,0,979,949,1,0,0,0,979,964,1,0,0,0,980,111,1, - 0,0,0,981,982,5,10,0,0,982,983,5,71,0,0,983,984,5,11,0,0,984,985,3,68, - 34,0,985,986,5,13,0,0,986,987,3,68,34,0,987,991,5,30,0,0,988,990,3,48, - 24,0,989,988,1,0,0,0,990,993,1,0,0,0,991,989,1,0,0,0,991,992,1,0,0,0,992, - 994,1,0,0,0,993,991,1,0,0,0,994,995,5,31,0,0,995,1012,1,0,0,0,996,997, - 5,10,0,0,997,998,5,71,0,0,998,999,5,11,0,0,999,1000,3,68,34,0,1000,1001, - 5,12,0,0,1001,1002,3,68,34,0,1002,1006,5,30,0,0,1003,1005,3,48,24,0,1004, - 1003,1,0,0,0,1005,1008,1,0,0,0,1006,1004,1,0,0,0,1006,1007,1,0,0,0,1007, - 1009,1,0,0,0,1008,1006,1,0,0,0,1009,1010,5,31,0,0,1010,1012,1,0,0,0,1011, - 981,1,0,0,0,1011,996,1,0,0,0,1012,113,1,0,0,0,1013,1016,5,14,0,0,1014, - 1015,5,71,0,0,1015,1017,5,42,0,0,1016,1014,1,0,0,0,1016,1017,1,0,0,0,1017, - 1018,1,0,0,0,1018,1019,5,71,0,0,1019,1020,5,15,0,0,1020,1021,3,68,34,0, - 1021,1025,5,30,0,0,1022,1024,3,94,47,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,31,0,0,1029,115,1,0,0,0,1030,1033,5,14,0,0,1031,1032, - 5,71,0,0,1032,1034,5,42,0,0,1033,1031,1,0,0,0,1033,1034,1,0,0,0,1034,1035, - 1,0,0,0,1035,1036,5,71,0,0,1036,1037,5,15,0,0,1037,1038,3,68,34,0,1038, - 1042,5,30,0,0,1039,1041,3,2,1,0,1040,1039,1,0,0,0,1041,1044,1,0,0,0,1042, - 1040,1,0,0,0,1042,1043,1,0,0,0,1043,1045,1,0,0,0,1044,1042,1,0,0,0,1045, - 1046,5,31,0,0,1046,117,1,0,0,0,1047,1050,5,14,0,0,1048,1049,5,71,0,0,1049, - 1051,5,42,0,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1052,1,0,0,0,1052, - 1053,5,71,0,0,1053,1054,5,15,0,0,1054,1055,3,68,34,0,1055,1059,5,30,0, - 0,1056,1058,3,48,24,0,1057,1056,1,0,0,0,1058,1061,1,0,0,0,1059,1057,1, - 0,0,0,1059,1060,1,0,0,0,1060,1062,1,0,0,0,1061,1059,1,0,0,0,1062,1063, - 5,31,0,0,1063,119,1,0,0,0,1064,1065,5,9,0,0,1065,1066,3,68,34,0,1066,1070, - 5,30,0,0,1067,1069,3,94,47,0,1068,1067,1,0,0,0,1069,1072,1,0,0,0,1070, - 1068,1,0,0,0,1070,1071,1,0,0,0,1071,1073,1,0,0,0,1072,1070,1,0,0,0,1073, - 1074,5,31,0,0,1074,121,1,0,0,0,1075,1076,5,9,0,0,1076,1077,3,68,34,0,1077, - 1081,5,30,0,0,1078,1080,3,2,1,0,1079,1078,1,0,0,0,1080,1083,1,0,0,0,1081, - 1079,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1,0,0,0,1083,1081,1,0,0,0,1084, - 1085,5,31,0,0,1085,123,1,0,0,0,1086,1087,5,9,0,0,1087,1088,3,68,34,0,1088, - 1092,5,30,0,0,1089,1091,3,48,24,0,1090,1089,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,31,0,0,1096,125,1,0,0,0,101,129,146,157,162,172,183,194, - 205,216,223,242,248,276,286,312,317,321,328,339,344,354,365,373,376,391, - 401,427,437,439,453,463,487,494,496,502,516,524,529,533,540,551,556,573, - 584,595,606,617,624,633,655,720,722,742,752,760,762,768,773,779,782,787, - 792,798,801,809,812,818,821,824,830,833,839,842,845,851,856,865,873,878, - 882,889,900,905,927,942,947,959,974,979,991,1006,1011,1016,1025,1033,1042, - 1050,1059,1070,1081,1092 + 1,34,1,34,1,34,1,34,5,34,727,8,34,10,34,12,34,730,9,34,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35, + 3,35,749,8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,759,8,36,1, + 36,1,36,1,36,1,36,1,36,1,36,5,36,767,8,36,10,36,12,36,770,9,36,1,37,1, + 37,1,37,3,37,775,8,37,1,37,1,37,1,38,3,38,780,8,38,1,38,1,38,5,38,784, + 8,38,10,38,12,38,787,9,38,3,38,789,8,38,1,39,1,39,1,39,3,39,794,8,39,1, + 39,1,39,1,40,3,40,799,8,40,1,40,1,40,5,40,803,8,40,10,40,12,40,806,9,40, + 3,40,808,8,40,1,41,1,41,1,41,1,41,1,41,1,41,3,41,816,8,41,1,42,3,42,819, + 8,42,1,42,1,42,5,42,823,8,42,10,42,12,42,826,9,42,3,42,828,8,42,1,42,3, + 42,831,8,42,1,43,1,43,1,43,1,43,3,43,837,8,43,1,44,3,44,840,8,44,1,44, + 1,44,5,44,844,8,44,10,44,12,44,847,9,44,3,44,849,8,44,1,44,3,44,852,8, + 44,1,45,1,45,1,45,1,45,3,45,858,8,45,1,46,5,46,861,8,46,10,46,12,46,864, + 9,46,1,47,1,47,1,47,1,47,1,47,1,47,3,47,872,8,47,1,48,1,48,1,48,1,48,5, + 48,878,8,48,10,48,12,48,881,9,48,1,48,1,48,3,48,885,8,48,1,49,1,49,3,49, + 889,8,49,1,50,1,50,1,50,5,50,894,8,50,10,50,12,50,897,9,50,1,50,1,50,1, + 51,1,51,1,51,1,51,5,51,905,8,51,10,51,12,51,908,9,51,1,51,1,51,3,51,912, + 8,51,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54, + 1,54,1,54,1,54,1,54,5,54,931,8,54,10,54,12,54,934,9,54,1,54,1,54,1,55, + 1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,948,8,56,10,56,12,56, + 951,9,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,963,8, + 56,10,56,12,56,966,9,56,1,56,1,56,3,56,970,8,56,1,57,1,57,1,57,1,57,1, + 57,1,57,1,57,1,57,5,57,980,8,57,10,57,12,57,983,9,57,1,57,1,57,1,57,1, + 57,1,57,1,57,1,57,1,57,1,57,1,57,5,57,995,8,57,10,57,12,57,998,9,57,1, + 57,1,57,3,57,1002,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,1012, + 8,58,10,58,12,58,1015,9,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,5,58,1027,8,58,10,58,12,58,1030,9,58,1,58,1,58,3,58,1034,8,58,1,59, + 1,59,1,59,3,59,1039,8,59,1,59,1,59,1,59,1,59,1,59,5,59,1046,8,59,10,59, + 12,59,1049,9,59,1,59,1,59,1,60,1,60,1,60,3,60,1056,8,60,1,60,1,60,1,60, + 1,60,1,60,5,60,1063,8,60,10,60,12,60,1066,9,60,1,60,1,60,1,61,1,61,1,61, + 3,61,1073,8,61,1,61,1,61,1,61,1,61,1,61,5,61,1080,8,61,10,61,12,61,1083, + 9,61,1,61,1,61,1,62,1,62,1,62,1,62,5,62,1091,8,62,10,62,12,62,1094,9,62, + 1,62,1,62,1,63,1,63,1,63,1,63,5,63,1102,8,63,10,63,12,63,1105,9,63,1,63, + 1,63,1,64,1,64,1,64,1,64,5,64,1113,8,64,10,64,12,64,1116,9,64,1,64,1,64, + 1,64,0,4,42,44,68,72,65,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,0,0,1254,0,131,1,0,0,0,2,150,1,0,0,0,4,152,1,0,0,0,6,156, + 1,0,0,0,8,166,1,0,0,0,10,168,1,0,0,0,12,227,1,0,0,0,14,252,1,0,0,0,16, + 254,1,0,0,0,18,280,1,0,0,0,20,290,1,0,0,0,22,292,1,0,0,0,24,301,1,0,0, + 0,26,310,1,0,0,0,28,325,1,0,0,0,30,327,1,0,0,0,32,337,1,0,0,0,34,350,1, + 0,0,0,36,358,1,0,0,0,38,369,1,0,0,0,40,371,1,0,0,0,42,431,1,0,0,0,44,491, + 1,0,0,0,46,506,1,0,0,0,48,522,1,0,0,0,50,524,1,0,0,0,52,539,1,0,0,0,54, + 541,1,0,0,0,56,551,1,0,0,0,58,564,1,0,0,0,60,568,1,0,0,0,62,571,1,0,0, + 0,64,630,1,0,0,0,66,639,1,0,0,0,68,661,1,0,0,0,70,748,1,0,0,0,72,758,1, + 0,0,0,74,771,1,0,0,0,76,788,1,0,0,0,78,790,1,0,0,0,80,807,1,0,0,0,82,815, + 1,0,0,0,84,827,1,0,0,0,86,836,1,0,0,0,88,848,1,0,0,0,90,857,1,0,0,0,92, + 862,1,0,0,0,94,871,1,0,0,0,96,873,1,0,0,0,98,888,1,0,0,0,100,890,1,0,0, + 0,102,900,1,0,0,0,104,913,1,0,0,0,106,917,1,0,0,0,108,923,1,0,0,0,110, + 937,1,0,0,0,112,969,1,0,0,0,114,1001,1,0,0,0,116,1033,1,0,0,0,118,1035, + 1,0,0,0,120,1052,1,0,0,0,122,1069,1,0,0,0,124,1086,1,0,0,0,126,1097,1, + 0,0,0,128,1108,1,0,0,0,130,132,3,2,1,0,131,130,1,0,0,0,132,133,1,0,0,0, + 133,131,1,0,0,0,133,134,1,0,0,0,134,135,1,0,0,0,135,136,5,0,0,1,136,1, + 1,0,0,0,137,151,3,10,5,0,138,151,3,12,6,0,139,151,3,14,7,0,140,151,3,22, + 11,0,141,151,3,24,12,0,142,151,3,26,13,0,143,151,3,34,17,0,144,151,3,4, + 2,0,145,151,3,16,8,0,146,151,3,18,9,0,147,151,3,114,57,0,148,151,3,120, + 60,0,149,151,3,126,63,0,150,137,1,0,0,0,150,138,1,0,0,0,150,139,1,0,0, + 0,150,140,1,0,0,0,150,141,1,0,0,0,150,142,1,0,0,0,150,143,1,0,0,0,150, + 144,1,0,0,0,150,145,1,0,0,0,150,146,1,0,0,0,150,147,1,0,0,0,150,148,1, + 0,0,0,150,149,1,0,0,0,151,3,1,0,0,0,152,153,5,24,0,0,153,154,3,6,3,0,154, + 155,5,37,0,0,155,5,1,0,0,0,156,161,3,8,4,0,157,158,5,43,0,0,158,160,3, + 8,4,0,159,157,1,0,0,0,160,163,1,0,0,0,161,159,1,0,0,0,161,162,1,0,0,0, + 162,7,1,0,0,0,163,161,1,0,0,0,164,167,5,66,0,0,165,167,5,78,0,0,166,164, + 1,0,0,0,166,165,1,0,0,0,167,9,1,0,0,0,168,169,5,3,0,0,169,170,3,8,4,0, + 170,171,5,37,0,0,171,11,1,0,0,0,172,176,5,72,0,0,173,175,3,66,33,0,174, + 173,1,0,0,0,175,178,1,0,0,0,176,174,1,0,0,0,176,177,1,0,0,0,177,179,1, + 0,0,0,178,176,1,0,0,0,179,180,5,38,0,0,180,181,3,68,34,0,181,182,5,37, + 0,0,182,228,1,0,0,0,183,187,5,72,0,0,184,186,3,66,33,0,185,184,1,0,0,0, + 186,189,1,0,0,0,187,185,1,0,0,0,187,188,1,0,0,0,188,190,1,0,0,0,189,187, + 1,0,0,0,190,191,5,39,0,0,191,192,3,68,34,0,192,193,5,37,0,0,193,228,1, + 0,0,0,194,198,5,72,0,0,195,197,3,66,33,0,196,195,1,0,0,0,197,200,1,0,0, + 0,198,196,1,0,0,0,198,199,1,0,0,0,199,201,1,0,0,0,200,198,1,0,0,0,201, + 202,5,40,0,0,202,203,3,68,34,0,203,204,5,37,0,0,204,228,1,0,0,0,205,209, + 5,72,0,0,206,208,3,66,33,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,212,1,0,0,0,211,209,1,0,0,0,212,213,5,41,0,0,213, + 214,3,68,34,0,214,215,5,37,0,0,215,228,1,0,0,0,216,220,5,72,0,0,217,219, + 3,66,33,0,218,217,1,0,0,0,219,222,1,0,0,0,220,218,1,0,0,0,220,221,1,0, + 0,0,221,223,1,0,0,0,222,220,1,0,0,0,223,224,5,42,0,0,224,225,3,68,34,0, + 225,226,5,37,0,0,226,228,1,0,0,0,227,172,1,0,0,0,227,183,1,0,0,0,227,194, + 1,0,0,0,227,205,1,0,0,0,227,216,1,0,0,0,228,13,1,0,0,0,229,230,5,21,0, + 0,230,231,3,8,4,0,231,232,5,37,0,0,232,253,1,0,0,0,233,234,5,21,0,0,234, + 235,3,8,4,0,235,236,5,38,0,0,236,237,5,28,0,0,237,238,5,37,0,0,238,253, + 1,0,0,0,239,240,5,21,0,0,240,241,3,8,4,0,241,242,5,38,0,0,242,246,5,31, + 0,0,243,245,3,20,10,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,249,1,0,0,0,248,246,1,0,0,0,249,250,5,32,0,0,250,251, + 5,37,0,0,251,253,1,0,0,0,252,229,1,0,0,0,252,233,1,0,0,0,252,239,1,0,0, + 0,253,15,1,0,0,0,254,255,5,29,0,0,255,256,3,8,4,0,256,257,5,43,0,0,257, + 258,3,8,4,0,258,259,5,38,0,0,259,260,3,68,34,0,260,261,5,37,0,0,261,17, + 1,0,0,0,262,263,5,30,0,0,263,264,3,68,34,0,264,265,5,43,0,0,265,266,3, + 8,4,0,266,267,5,43,0,0,267,268,3,8,4,0,268,269,5,38,0,0,269,270,3,68,34, + 0,270,271,5,37,0,0,271,281,1,0,0,0,272,273,5,30,0,0,273,274,3,68,34,0, + 274,275,5,43,0,0,275,276,3,8,4,0,276,277,5,38,0,0,277,278,3,68,34,0,278, + 279,5,37,0,0,279,281,1,0,0,0,280,262,1,0,0,0,280,272,1,0,0,0,281,19,1, + 0,0,0,282,283,5,26,0,0,283,284,3,8,4,0,284,285,5,37,0,0,285,291,1,0,0, + 0,286,287,5,27,0,0,287,288,3,8,4,0,288,289,5,37,0,0,289,291,1,0,0,0,290, + 282,1,0,0,0,290,286,1,0,0,0,291,21,1,0,0,0,292,293,5,4,0,0,293,294,5,78, + 0,0,294,295,5,33,0,0,295,296,3,88,44,0,296,297,5,34,0,0,297,298,5,31,0, + 0,298,299,3,92,46,0,299,300,5,32,0,0,300,23,1,0,0,0,301,302,5,8,0,0,302, + 303,5,78,0,0,303,304,5,33,0,0,304,305,3,88,44,0,305,306,5,34,0,0,306,307, + 5,31,0,0,307,308,3,46,23,0,308,309,5,32,0,0,309,25,1,0,0,0,310,311,5,5, + 0,0,311,312,3,68,34,0,312,316,5,31,0,0,313,315,3,2,1,0,314,313,1,0,0,0, + 315,318,1,0,0,0,316,314,1,0,0,0,316,317,1,0,0,0,317,319,1,0,0,0,318,316, + 1,0,0,0,319,321,5,32,0,0,320,322,3,28,14,0,321,320,1,0,0,0,321,322,1,0, + 0,0,322,27,1,0,0,0,323,326,3,30,15,0,324,326,3,32,16,0,325,323,1,0,0,0, + 325,324,1,0,0,0,326,29,1,0,0,0,327,328,5,6,0,0,328,332,5,31,0,0,329,331, + 3,2,1,0,330,329,1,0,0,0,331,334,1,0,0,0,332,330,1,0,0,0,332,333,1,0,0, + 0,333,335,1,0,0,0,334,332,1,0,0,0,335,336,5,32,0,0,336,31,1,0,0,0,337, + 338,5,7,0,0,338,339,3,68,34,0,339,343,5,31,0,0,340,342,3,2,1,0,341,340, + 1,0,0,0,342,345,1,0,0,0,343,341,1,0,0,0,343,344,1,0,0,0,344,346,1,0,0, + 0,345,343,1,0,0,0,346,348,5,32,0,0,347,349,3,28,14,0,348,347,1,0,0,0,348, + 349,1,0,0,0,349,33,1,0,0,0,350,351,3,36,18,0,351,352,5,31,0,0,352,353, + 3,46,23,0,353,354,5,32,0,0,354,35,1,0,0,0,355,357,3,38,19,0,356,355,1, + 0,0,0,357,360,1,0,0,0,358,356,1,0,0,0,358,359,1,0,0,0,359,361,1,0,0,0, + 360,358,1,0,0,0,361,362,3,42,21,0,362,37,1,0,0,0,363,364,5,19,0,0,364, + 370,3,72,36,0,365,366,5,20,0,0,366,370,3,8,4,0,367,368,5,25,0,0,368,370, + 3,40,20,0,369,363,1,0,0,0,369,365,1,0,0,0,369,367,1,0,0,0,370,39,1,0,0, + 0,371,380,5,33,0,0,372,377,3,68,34,0,373,374,5,43,0,0,374,376,3,68,34, + 0,375,373,1,0,0,0,376,379,1,0,0,0,377,375,1,0,0,0,377,378,1,0,0,0,378, + 381,1,0,0,0,379,377,1,0,0,0,380,372,1,0,0,0,380,381,1,0,0,0,381,382,1, + 0,0,0,382,383,5,34,0,0,383,41,1,0,0,0,384,385,6,21,-1,0,385,432,5,78,0, + 0,386,432,5,66,0,0,387,432,5,70,0,0,388,432,5,71,0,0,389,390,5,70,0,0, + 390,391,5,38,0,0,391,395,5,35,0,0,392,394,3,94,47,0,393,392,1,0,0,0,394, + 397,1,0,0,0,395,393,1,0,0,0,395,396,1,0,0,0,396,398,1,0,0,0,397,395,1, + 0,0,0,398,432,5,36,0,0,399,400,5,71,0,0,400,401,5,38,0,0,401,405,5,35, + 0,0,402,404,3,94,47,0,403,402,1,0,0,0,404,407,1,0,0,0,405,403,1,0,0,0, + 405,406,1,0,0,0,406,408,1,0,0,0,407,405,1,0,0,0,408,432,5,36,0,0,409,432, + 5,68,0,0,410,432,5,69,0,0,411,432,5,75,0,0,412,432,5,76,0,0,413,432,5, + 77,0,0,414,415,5,33,0,0,415,416,3,42,21,0,416,417,5,34,0,0,417,432,1,0, + 0,0,418,419,5,44,0,0,419,432,5,78,0,0,420,421,5,44,0,0,421,432,5,66,0, + 0,422,423,5,60,0,0,423,432,5,70,0,0,424,425,5,60,0,0,425,432,5,71,0,0, + 426,427,5,60,0,0,427,432,5,68,0,0,428,429,5,60,0,0,429,432,5,69,0,0,430, + 432,5,46,0,0,431,384,1,0,0,0,431,386,1,0,0,0,431,387,1,0,0,0,431,388,1, + 0,0,0,431,389,1,0,0,0,431,399,1,0,0,0,431,409,1,0,0,0,431,410,1,0,0,0, + 431,411,1,0,0,0,431,412,1,0,0,0,431,413,1,0,0,0,431,414,1,0,0,0,431,418, + 1,0,0,0,431,420,1,0,0,0,431,422,1,0,0,0,431,424,1,0,0,0,431,426,1,0,0, + 0,431,428,1,0,0,0,431,430,1,0,0,0,432,443,1,0,0,0,433,434,10,10,0,0,434, + 435,5,43,0,0,435,442,3,44,22,0,436,437,10,9,0,0,437,438,5,50,0,0,438,442, + 3,44,22,0,439,440,10,8,0,0,440,442,3,44,22,0,441,433,1,0,0,0,441,436,1, + 0,0,0,441,439,1,0,0,0,442,445,1,0,0,0,443,441,1,0,0,0,443,444,1,0,0,0, + 444,43,1,0,0,0,445,443,1,0,0,0,446,447,6,22,-1,0,447,492,5,78,0,0,448, + 492,5,66,0,0,449,492,5,70,0,0,450,492,5,71,0,0,451,452,5,70,0,0,452,453, + 5,38,0,0,453,457,5,35,0,0,454,456,3,94,47,0,455,454,1,0,0,0,456,459,1, + 0,0,0,457,455,1,0,0,0,457,458,1,0,0,0,458,460,1,0,0,0,459,457,1,0,0,0, + 460,492,5,36,0,0,461,462,5,71,0,0,462,463,5,38,0,0,463,467,5,35,0,0,464, + 466,3,94,47,0,465,464,1,0,0,0,466,469,1,0,0,0,467,465,1,0,0,0,467,468, + 1,0,0,0,468,470,1,0,0,0,469,467,1,0,0,0,470,492,5,36,0,0,471,492,5,68, + 0,0,472,492,5,69,0,0,473,492,5,75,0,0,474,475,5,33,0,0,475,476,3,44,22, + 0,476,477,5,34,0,0,477,492,1,0,0,0,478,479,5,44,0,0,479,492,5,78,0,0,480, + 481,5,44,0,0,481,492,5,66,0,0,482,483,5,60,0,0,483,492,5,70,0,0,484,485, + 5,60,0,0,485,492,5,71,0,0,486,487,5,60,0,0,487,492,5,68,0,0,488,489,5, + 60,0,0,489,492,5,69,0,0,490,492,5,46,0,0,491,446,1,0,0,0,491,448,1,0,0, + 0,491,449,1,0,0,0,491,450,1,0,0,0,491,451,1,0,0,0,491,461,1,0,0,0,491, + 471,1,0,0,0,491,472,1,0,0,0,491,473,1,0,0,0,491,474,1,0,0,0,491,478,1, + 0,0,0,491,480,1,0,0,0,491,482,1,0,0,0,491,484,1,0,0,0,491,486,1,0,0,0, + 491,488,1,0,0,0,491,490,1,0,0,0,492,500,1,0,0,0,493,494,10,9,0,0,494,495, + 5,43,0,0,495,499,3,44,22,10,496,497,10,8,0,0,497,499,3,44,22,9,498,493, + 1,0,0,0,498,496,1,0,0,0,499,502,1,0,0,0,500,498,1,0,0,0,500,501,1,0,0, + 0,501,45,1,0,0,0,502,500,1,0,0,0,503,505,3,48,24,0,504,503,1,0,0,0,505, + 508,1,0,0,0,506,504,1,0,0,0,506,507,1,0,0,0,507,47,1,0,0,0,508,506,1,0, + 0,0,509,523,3,12,6,0,510,523,3,50,25,0,511,523,3,122,61,0,512,523,3,128, + 64,0,513,523,3,116,58,0,514,523,3,58,29,0,515,523,3,60,30,0,516,523,3, + 62,31,0,517,523,3,64,32,0,518,523,3,34,17,0,519,523,3,106,53,0,520,523, + 3,108,54,0,521,523,3,110,55,0,522,509,1,0,0,0,522,510,1,0,0,0,522,511, + 1,0,0,0,522,512,1,0,0,0,522,513,1,0,0,0,522,514,1,0,0,0,522,515,1,0,0, + 0,522,516,1,0,0,0,522,517,1,0,0,0,522,518,1,0,0,0,522,519,1,0,0,0,522, + 520,1,0,0,0,522,521,1,0,0,0,523,49,1,0,0,0,524,525,5,5,0,0,525,526,3,68, + 34,0,526,530,5,31,0,0,527,529,3,48,24,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,5,32,0,0,534,536,3,52,26,0,535,534,1,0,0,0,535,536,1,0,0,0,536,51, + 1,0,0,0,537,540,3,54,27,0,538,540,3,56,28,0,539,537,1,0,0,0,539,538,1, + 0,0,0,540,53,1,0,0,0,541,542,5,6,0,0,542,546,5,31,0,0,543,545,3,48,24, + 0,544,543,1,0,0,0,545,548,1,0,0,0,546,544,1,0,0,0,546,547,1,0,0,0,547, + 549,1,0,0,0,548,546,1,0,0,0,549,550,5,32,0,0,550,55,1,0,0,0,551,552,5, + 7,0,0,552,553,3,68,34,0,553,557,5,31,0,0,554,556,3,48,24,0,555,554,1,0, + 0,0,556,559,1,0,0,0,557,555,1,0,0,0,557,558,1,0,0,0,558,560,1,0,0,0,559, + 557,1,0,0,0,560,562,5,32,0,0,561,563,3,52,26,0,562,561,1,0,0,0,562,563, + 1,0,0,0,563,57,1,0,0,0,564,565,5,17,0,0,565,566,3,68,34,0,566,567,5,37, + 0,0,567,59,1,0,0,0,568,569,5,67,0,0,569,570,5,37,0,0,570,61,1,0,0,0,571, + 572,5,18,0,0,572,573,3,68,34,0,573,574,5,37,0,0,574,63,1,0,0,0,575,579, + 3,8,4,0,576,578,3,66,33,0,577,576,1,0,0,0,578,581,1,0,0,0,579,577,1,0, + 0,0,579,580,1,0,0,0,580,582,1,0,0,0,581,579,1,0,0,0,582,583,5,38,0,0,583, + 584,3,68,34,0,584,585,5,37,0,0,585,631,1,0,0,0,586,590,3,8,4,0,587,589, + 3,66,33,0,588,587,1,0,0,0,589,592,1,0,0,0,590,588,1,0,0,0,590,591,1,0, + 0,0,591,593,1,0,0,0,592,590,1,0,0,0,593,594,5,39,0,0,594,595,3,68,34,0, + 595,596,5,37,0,0,596,631,1,0,0,0,597,601,3,8,4,0,598,600,3,66,33,0,599, + 598,1,0,0,0,600,603,1,0,0,0,601,599,1,0,0,0,601,602,1,0,0,0,602,604,1, + 0,0,0,603,601,1,0,0,0,604,605,5,40,0,0,605,606,3,68,34,0,606,607,5,37, + 0,0,607,631,1,0,0,0,608,612,3,8,4,0,609,611,3,66,33,0,610,609,1,0,0,0, + 611,614,1,0,0,0,612,610,1,0,0,0,612,613,1,0,0,0,613,615,1,0,0,0,614,612, + 1,0,0,0,615,616,5,42,0,0,616,617,3,68,34,0,617,618,5,37,0,0,618,631,1, + 0,0,0,619,623,3,8,4,0,620,622,3,66,33,0,621,620,1,0,0,0,622,625,1,0,0, + 0,623,621,1,0,0,0,623,624,1,0,0,0,624,626,1,0,0,0,625,623,1,0,0,0,626, + 627,5,41,0,0,627,628,3,68,34,0,628,629,5,37,0,0,629,631,1,0,0,0,630,575, + 1,0,0,0,630,586,1,0,0,0,630,597,1,0,0,0,630,608,1,0,0,0,630,619,1,0,0, + 0,631,65,1,0,0,0,632,633,5,35,0,0,633,634,3,68,34,0,634,635,5,36,0,0,635, + 640,1,0,0,0,636,637,5,35,0,0,637,638,5,46,0,0,638,640,5,36,0,0,639,632, + 1,0,0,0,639,636,1,0,0,0,640,67,1,0,0,0,641,642,6,34,-1,0,642,643,5,78, + 0,0,643,644,5,33,0,0,644,645,3,84,42,0,645,646,5,34,0,0,646,662,1,0,0, + 0,647,662,3,70,35,0,648,662,5,72,0,0,649,662,5,73,0,0,650,662,5,74,0,0, + 651,652,5,33,0,0,652,653,3,68,34,0,653,654,5,34,0,0,654,662,1,0,0,0,655, + 656,5,45,0,0,656,662,3,68,34,20,657,658,5,44,0,0,658,662,3,68,34,19,659, + 660,5,49,0,0,660,662,3,68,34,18,661,641,1,0,0,0,661,647,1,0,0,0,661,648, + 1,0,0,0,661,649,1,0,0,0,661,650,1,0,0,0,661,651,1,0,0,0,661,655,1,0,0, + 0,661,657,1,0,0,0,661,659,1,0,0,0,662,728,1,0,0,0,663,664,10,14,0,0,664, + 665,5,46,0,0,665,727,3,68,34,15,666,667,10,13,0,0,667,668,5,47,0,0,668, + 727,3,68,34,14,669,670,10,12,0,0,670,671,5,48,0,0,671,727,3,68,34,13,672, + 673,10,11,0,0,673,674,5,44,0,0,674,727,3,68,34,12,675,676,10,10,0,0,676, + 677,5,45,0,0,677,727,3,68,34,11,678,679,10,9,0,0,679,680,5,50,0,0,680, + 727,3,68,34,10,681,682,10,8,0,0,682,683,5,52,0,0,683,727,3,68,34,9,684, + 685,10,7,0,0,685,686,5,51,0,0,686,727,3,68,34,8,687,688,10,6,0,0,688,689, + 5,53,0,0,689,727,3,68,34,7,690,691,10,5,0,0,691,692,5,54,0,0,692,727,3, + 68,34,6,693,694,10,4,0,0,694,695,5,55,0,0,695,727,3,68,34,5,696,697,10, + 3,0,0,697,698,5,56,0,0,698,727,3,68,34,4,699,700,10,2,0,0,700,701,5,57, + 0,0,701,727,3,68,34,3,702,703,10,1,0,0,703,704,5,58,0,0,704,705,3,68,34, + 0,705,706,5,59,0,0,706,707,3,68,34,2,707,727,1,0,0,0,708,709,10,17,0,0, + 709,710,5,38,0,0,710,711,5,78,0,0,711,712,5,33,0,0,712,713,3,84,42,0,713, + 714,5,34,0,0,714,727,1,0,0,0,715,716,10,16,0,0,716,717,5,75,0,0,717,718, + 5,33,0,0,718,719,3,84,42,0,719,720,5,34,0,0,720,727,1,0,0,0,721,722,10, + 15,0,0,722,723,5,35,0,0,723,724,3,68,34,0,724,725,5,36,0,0,725,727,1,0, + 0,0,726,663,1,0,0,0,726,666,1,0,0,0,726,669,1,0,0,0,726,672,1,0,0,0,726, + 675,1,0,0,0,726,678,1,0,0,0,726,681,1,0,0,0,726,684,1,0,0,0,726,687,1, + 0,0,0,726,690,1,0,0,0,726,693,1,0,0,0,726,696,1,0,0,0,726,699,1,0,0,0, + 726,702,1,0,0,0,726,708,1,0,0,0,726,715,1,0,0,0,726,721,1,0,0,0,727,730, + 1,0,0,0,728,726,1,0,0,0,728,729,1,0,0,0,729,69,1,0,0,0,730,728,1,0,0,0, + 731,749,5,67,0,0,732,749,5,62,0,0,733,749,5,63,0,0,734,749,5,65,0,0,735, + 749,5,66,0,0,736,749,5,78,0,0,737,749,5,61,0,0,738,739,5,4,0,0,739,740, + 5,33,0,0,740,741,3,88,44,0,741,742,5,34,0,0,742,743,5,31,0,0,743,744,3, + 92,46,0,744,745,5,32,0,0,745,749,1,0,0,0,746,749,3,74,37,0,747,749,3,78, + 39,0,748,731,1,0,0,0,748,732,1,0,0,0,748,733,1,0,0,0,748,734,1,0,0,0,748, + 735,1,0,0,0,748,736,1,0,0,0,748,737,1,0,0,0,748,738,1,0,0,0,748,746,1, + 0,0,0,748,747,1,0,0,0,749,71,1,0,0,0,750,751,6,36,-1,0,751,752,5,33,0, + 0,752,753,3,72,36,0,753,754,5,34,0,0,754,759,1,0,0,0,755,756,5,49,0,0, + 756,759,3,72,36,2,757,759,3,8,4,0,758,750,1,0,0,0,758,755,1,0,0,0,758, + 757,1,0,0,0,759,768,1,0,0,0,760,761,10,4,0,0,761,762,5,56,0,0,762,767, + 3,72,36,5,763,764,10,3,0,0,764,765,5,57,0,0,765,767,3,72,36,4,766,760, + 1,0,0,0,766,763,1,0,0,0,767,770,1,0,0,0,768,766,1,0,0,0,768,769,1,0,0, + 0,769,73,1,0,0,0,770,768,1,0,0,0,771,772,5,35,0,0,772,774,3,76,38,0,773, + 775,5,43,0,0,774,773,1,0,0,0,774,775,1,0,0,0,775,776,1,0,0,0,776,777,5, + 36,0,0,777,75,1,0,0,0,778,780,3,68,34,0,779,778,1,0,0,0,779,780,1,0,0, + 0,780,785,1,0,0,0,781,782,5,43,0,0,782,784,3,68,34,0,783,781,1,0,0,0,784, + 787,1,0,0,0,785,783,1,0,0,0,785,786,1,0,0,0,786,789,1,0,0,0,787,785,1, + 0,0,0,788,779,1,0,0,0,788,789,1,0,0,0,789,77,1,0,0,0,790,791,5,31,0,0, + 791,793,3,80,40,0,792,794,5,43,0,0,793,792,1,0,0,0,793,794,1,0,0,0,794, + 795,1,0,0,0,795,796,5,32,0,0,796,79,1,0,0,0,797,799,3,82,41,0,798,797, + 1,0,0,0,798,799,1,0,0,0,799,804,1,0,0,0,800,801,5,43,0,0,801,803,3,82, + 41,0,802,800,1,0,0,0,803,806,1,0,0,0,804,802,1,0,0,0,804,805,1,0,0,0,805, + 808,1,0,0,0,806,804,1,0,0,0,807,798,1,0,0,0,807,808,1,0,0,0,808,81,1,0, + 0,0,809,810,5,78,0,0,810,811,5,38,0,0,811,816,3,68,34,0,812,813,5,66,0, + 0,813,814,5,38,0,0,814,816,3,68,34,0,815,809,1,0,0,0,815,812,1,0,0,0,816, + 83,1,0,0,0,817,819,3,86,43,0,818,817,1,0,0,0,818,819,1,0,0,0,819,824,1, + 0,0,0,820,821,5,43,0,0,821,823,3,86,43,0,822,820,1,0,0,0,823,826,1,0,0, + 0,824,822,1,0,0,0,824,825,1,0,0,0,825,828,1,0,0,0,826,824,1,0,0,0,827, + 818,1,0,0,0,827,828,1,0,0,0,828,830,1,0,0,0,829,831,5,43,0,0,830,829,1, + 0,0,0,830,831,1,0,0,0,831,85,1,0,0,0,832,833,5,72,0,0,833,834,5,38,0,0, + 834,837,3,68,34,0,835,837,3,68,34,0,836,832,1,0,0,0,836,835,1,0,0,0,837, + 87,1,0,0,0,838,840,3,90,45,0,839,838,1,0,0,0,839,840,1,0,0,0,840,845,1, + 0,0,0,841,842,5,43,0,0,842,844,3,90,45,0,843,841,1,0,0,0,844,847,1,0,0, + 0,845,843,1,0,0,0,845,846,1,0,0,0,846,849,1,0,0,0,847,845,1,0,0,0,848, + 839,1,0,0,0,848,849,1,0,0,0,849,851,1,0,0,0,850,852,5,43,0,0,851,850,1, + 0,0,0,851,852,1,0,0,0,852,89,1,0,0,0,853,858,5,72,0,0,854,855,5,72,0,0, + 855,856,5,38,0,0,856,858,3,68,34,0,857,853,1,0,0,0,857,854,1,0,0,0,858, + 91,1,0,0,0,859,861,3,94,47,0,860,859,1,0,0,0,861,864,1,0,0,0,862,860,1, + 0,0,0,862,863,1,0,0,0,863,93,1,0,0,0,864,862,1,0,0,0,865,872,3,12,6,0, + 866,872,3,96,48,0,867,872,3,104,52,0,868,872,3,112,56,0,869,872,3,118, + 59,0,870,872,3,124,62,0,871,865,1,0,0,0,871,866,1,0,0,0,871,867,1,0,0, + 0,871,868,1,0,0,0,871,869,1,0,0,0,871,870,1,0,0,0,872,95,1,0,0,0,873,874, + 5,5,0,0,874,875,3,68,34,0,875,879,5,31,0,0,876,878,3,94,47,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,882,1,0,0,0, + 881,879,1,0,0,0,882,884,5,32,0,0,883,885,3,98,49,0,884,883,1,0,0,0,884, + 885,1,0,0,0,885,97,1,0,0,0,886,889,3,100,50,0,887,889,3,102,51,0,888,886, + 1,0,0,0,888,887,1,0,0,0,889,99,1,0,0,0,890,891,5,6,0,0,891,895,5,31,0, + 0,892,894,3,94,47,0,893,892,1,0,0,0,894,897,1,0,0,0,895,893,1,0,0,0,895, + 896,1,0,0,0,896,898,1,0,0,0,897,895,1,0,0,0,898,899,5,32,0,0,899,101,1, + 0,0,0,900,901,5,7,0,0,901,902,3,68,34,0,902,906,5,31,0,0,903,905,3,94, + 47,0,904,903,1,0,0,0,905,908,1,0,0,0,906,904,1,0,0,0,906,907,1,0,0,0,907, + 909,1,0,0,0,908,906,1,0,0,0,909,911,5,32,0,0,910,912,3,98,49,0,911,910, + 1,0,0,0,911,912,1,0,0,0,912,103,1,0,0,0,913,914,5,23,0,0,914,915,3,68, + 34,0,915,916,5,37,0,0,916,105,1,0,0,0,917,918,5,22,0,0,918,919,5,78,0, + 0,919,920,5,33,0,0,920,921,3,84,42,0,921,922,5,34,0,0,922,107,1,0,0,0, + 923,924,5,22,0,0,924,925,5,78,0,0,925,926,5,33,0,0,926,927,3,84,42,0,927, + 928,5,34,0,0,928,932,5,31,0,0,929,931,3,48,24,0,930,929,1,0,0,0,931,934, + 1,0,0,0,932,930,1,0,0,0,932,933,1,0,0,0,933,935,1,0,0,0,934,932,1,0,0, + 0,935,936,5,32,0,0,936,109,1,0,0,0,937,938,5,9,0,0,938,111,1,0,0,0,939, + 940,5,11,0,0,940,941,5,72,0,0,941,942,5,12,0,0,942,943,3,68,34,0,943,944, + 5,14,0,0,944,945,3,68,34,0,945,949,5,31,0,0,946,948,3,94,47,0,947,946, + 1,0,0,0,948,951,1,0,0,0,949,947,1,0,0,0,949,950,1,0,0,0,950,952,1,0,0, + 0,951,949,1,0,0,0,952,953,5,32,0,0,953,970,1,0,0,0,954,955,5,11,0,0,955, + 956,5,72,0,0,956,957,5,12,0,0,957,958,3,68,34,0,958,959,5,13,0,0,959,960, + 3,68,34,0,960,964,5,31,0,0,961,963,3,94,47,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,967,1,0,0,0,966,964,1,0,0,0, + 967,968,5,32,0,0,968,970,1,0,0,0,969,939,1,0,0,0,969,954,1,0,0,0,970,113, + 1,0,0,0,971,972,5,11,0,0,972,973,5,72,0,0,973,974,5,12,0,0,974,975,3,68, + 34,0,975,976,5,14,0,0,976,977,3,68,34,0,977,981,5,31,0,0,978,980,3,2,1, + 0,979,978,1,0,0,0,980,983,1,0,0,0,981,979,1,0,0,0,981,982,1,0,0,0,982, + 984,1,0,0,0,983,981,1,0,0,0,984,985,5,32,0,0,985,1002,1,0,0,0,986,987, + 5,11,0,0,987,988,5,72,0,0,988,989,5,12,0,0,989,990,3,68,34,0,990,991,5, + 13,0,0,991,992,3,68,34,0,992,996,5,31,0,0,993,995,3,2,1,0,994,993,1,0, + 0,0,995,998,1,0,0,0,996,994,1,0,0,0,996,997,1,0,0,0,997,999,1,0,0,0,998, + 996,1,0,0,0,999,1000,5,32,0,0,1000,1002,1,0,0,0,1001,971,1,0,0,0,1001, + 986,1,0,0,0,1002,115,1,0,0,0,1003,1004,5,11,0,0,1004,1005,5,72,0,0,1005, + 1006,5,12,0,0,1006,1007,3,68,34,0,1007,1008,5,14,0,0,1008,1009,3,68,34, + 0,1009,1013,5,31,0,0,1010,1012,3,48,24,0,1011,1010,1,0,0,0,1012,1015,1, + 0,0,0,1013,1011,1,0,0,0,1013,1014,1,0,0,0,1014,1016,1,0,0,0,1015,1013, + 1,0,0,0,1016,1017,5,32,0,0,1017,1034,1,0,0,0,1018,1019,5,11,0,0,1019,1020, + 5,72,0,0,1020,1021,5,12,0,0,1021,1022,3,68,34,0,1022,1023,5,13,0,0,1023, + 1024,3,68,34,0,1024,1028,5,31,0,0,1025,1027,3,48,24,0,1026,1025,1,0,0, + 0,1027,1030,1,0,0,0,1028,1026,1,0,0,0,1028,1029,1,0,0,0,1029,1031,1,0, + 0,0,1030,1028,1,0,0,0,1031,1032,5,32,0,0,1032,1034,1,0,0,0,1033,1003,1, + 0,0,0,1033,1018,1,0,0,0,1034,117,1,0,0,0,1035,1038,5,15,0,0,1036,1037, + 5,72,0,0,1037,1039,5,43,0,0,1038,1036,1,0,0,0,1038,1039,1,0,0,0,1039,1040, + 1,0,0,0,1040,1041,5,72,0,0,1041,1042,5,16,0,0,1042,1043,3,68,34,0,1043, + 1047,5,31,0,0,1044,1046,3,94,47,0,1045,1044,1,0,0,0,1046,1049,1,0,0,0, + 1047,1045,1,0,0,0,1047,1048,1,0,0,0,1048,1050,1,0,0,0,1049,1047,1,0,0, + 0,1050,1051,5,32,0,0,1051,119,1,0,0,0,1052,1055,5,15,0,0,1053,1054,5,72, + 0,0,1054,1056,5,43,0,0,1055,1053,1,0,0,0,1055,1056,1,0,0,0,1056,1057,1, + 0,0,0,1057,1058,5,72,0,0,1058,1059,5,16,0,0,1059,1060,3,68,34,0,1060,1064, + 5,31,0,0,1061,1063,3,2,1,0,1062,1061,1,0,0,0,1063,1066,1,0,0,0,1064,1062, + 1,0,0,0,1064,1065,1,0,0,0,1065,1067,1,0,0,0,1066,1064,1,0,0,0,1067,1068, + 5,32,0,0,1068,121,1,0,0,0,1069,1072,5,15,0,0,1070,1071,5,72,0,0,1071,1073, + 5,43,0,0,1072,1070,1,0,0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1075, + 5,72,0,0,1075,1076,5,16,0,0,1076,1077,3,68,34,0,1077,1081,5,31,0,0,1078, + 1080,3,48,24,0,1079,1078,1,0,0,0,1080,1083,1,0,0,0,1081,1079,1,0,0,0,1081, + 1082,1,0,0,0,1082,1084,1,0,0,0,1083,1081,1,0,0,0,1084,1085,5,32,0,0,1085, + 123,1,0,0,0,1086,1087,5,10,0,0,1087,1088,3,68,34,0,1088,1092,5,31,0,0, + 1089,1091,3,94,47,0,1090,1089,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, + 32,0,0,1096,125,1,0,0,0,1097,1098,5,10,0,0,1098,1099,3,68,34,0,1099,1103, + 5,31,0,0,1100,1102,3,2,1,0,1101,1100,1,0,0,0,1102,1105,1,0,0,0,1103,1101, + 1,0,0,0,1103,1104,1,0,0,0,1104,1106,1,0,0,0,1105,1103,1,0,0,0,1106,1107, + 5,32,0,0,1107,127,1,0,0,0,1108,1109,5,10,0,0,1109,1110,3,68,34,0,1110, + 1114,5,31,0,0,1111,1113,3,48,24,0,1112,1111,1,0,0,0,1113,1116,1,0,0,0, + 1114,1112,1,0,0,0,1114,1115,1,0,0,0,1115,1117,1,0,0,0,1116,1114,1,0,0, + 0,1117,1118,5,32,0,0,1118,129,1,0,0,0,102,133,150,161,166,176,187,198, + 209,220,227,246,252,280,290,316,321,325,332,343,348,358,369,377,380,395, + 405,431,441,443,457,467,491,498,500,506,522,530,535,539,546,557,562,579, + 590,601,612,623,630,639,661,726,728,748,758,766,768,774,779,785,788,793, + 798,804,807,815,818,824,827,830,836,839,845,848,851,857,862,871,879,884, + 888,895,906,911,932,949,964,969,981,996,1001,1013,1028,1033,1038,1047, + 1055,1064,1072,1081,1092,1103,1114 }; public static readonly ATN _ATN = diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.g4 b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.g4 index a554fbb..5fcfb0c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.g4 +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.g4 @@ -135,6 +135,8 @@ selector_statement : var_decl | field_set | selection_block | mixin_include + | mixin_block_include + | mixin_slot ; sel_level_conditional : PRE_IF cond=expression LEFT_BRACE body=selector_statement* RIGHT_BRACE els=sel_level_else?; @@ -227,7 +229,7 @@ argument : key=VARIABLE COLON val=expression #named_argument arg_decl_list : (arg_decl? (COMMA arg_decl)*)? COMMA?; -arg_decl : name=VARIABLE #argument_without_default +arg_decl : name=VARIABLE #argument_without_default | name=VARIABLE COLON val=expression #argument_with_default ; @@ -253,6 +255,10 @@ fn_return : RETURN expression SEMICOLON; mixin_include : INCLUDE mixin=ELEMENT LEFT_PAREN args=argument_list RIGHT_PAREN; +mixin_block_include : INCLUDE mixin=ELEMENT LEFT_PAREN args=argument_list RIGHT_PAREN LEFT_BRACE body=selector_statement* RIGHT_BRACE; + +mixin_slot : MIXIN_SLOT; + for_loop : FOR idx=VARIABLE FROM for_start=expression TO end=expression LEFT_BRACE body=function_statement* RIGHT_BRACE #for_to_loop | FOR idx=VARIABLE FROM for_start=expression THROUGH end=expression LEFT_BRACE body=function_statement* RIGHT_BRACE #for_through_loop ; diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.interp b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.interp index aebe952..2a7c68c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.interp +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.interp @@ -8,6 +8,7 @@ null '@else' '@else-if' '@mixin' +'@mixin-slot' '@while' '@for' 'from' @@ -88,6 +89,7 @@ PRE_IF PRE_ELSE PRE_ELSE_IF MIXIN +MIXIN_SLOT WHILE FOR FROM @@ -213,6 +215,8 @@ fn_level_else_else fn_level_else_if fn_return mixin_include +mixin_block_include +mixin_slot for_loop top_level_for_loop sel_level_for_loop @@ -225,4 +229,4 @@ sel_level_while_loop atn: -[4, 1, 77, 1098, 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, 1, 0, 4, 0, 128, 8, 0, 11, 0, 12, 0, 129, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 147, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 156, 8, 3, 10, 3, 12, 3, 159, 9, 3, 1, 4, 1, 4, 3, 4, 163, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 5, 6, 171, 8, 6, 10, 6, 12, 6, 174, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 182, 8, 6, 10, 6, 12, 6, 185, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 193, 8, 6, 10, 6, 12, 6, 196, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 204, 8, 6, 10, 6, 12, 6, 207, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 215, 8, 6, 10, 6, 12, 6, 218, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 241, 8, 7, 10, 7, 12, 7, 244, 9, 7, 1, 7, 1, 7, 1, 7, 3, 7, 249, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 277, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 287, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 311, 8, 13, 10, 13, 12, 13, 314, 9, 13, 1, 13, 1, 13, 3, 13, 318, 8, 13, 1, 14, 1, 14, 3, 14, 322, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 327, 8, 15, 10, 15, 12, 15, 330, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 338, 8, 16, 10, 16, 12, 16, 341, 9, 16, 1, 16, 1, 16, 3, 16, 345, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 5, 18, 353, 8, 18, 10, 18, 12, 18, 356, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 366, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 372, 8, 20, 10, 20, 12, 20, 375, 9, 20, 3, 20, 377, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 390, 8, 21, 10, 21, 12, 21, 393, 9, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 400, 8, 21, 10, 21, 12, 21, 403, 9, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 428, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 438, 8, 21, 10, 21, 12, 21, 441, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 452, 8, 22, 10, 22, 12, 22, 455, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 462, 8, 22, 10, 22, 12, 22, 465, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 488, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 495, 8, 22, 10, 22, 12, 22, 498, 9, 22, 1, 23, 5, 23, 501, 8, 23, 10, 23, 12, 23, 504, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 517, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 523, 8, 25, 10, 25, 12, 25, 526, 9, 25, 1, 25, 1, 25, 3, 25, 530, 8, 25, 1, 26, 1, 26, 3, 26, 534, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 539, 8, 27, 10, 27, 12, 27, 542, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 550, 8, 28, 10, 28, 12, 28, 553, 9, 28, 1, 28, 1, 28, 3, 28, 557, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 5, 32, 572, 8, 32, 10, 32, 12, 32, 575, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 583, 8, 32, 10, 32, 12, 32, 586, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 594, 8, 32, 10, 32, 12, 32, 597, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 605, 8, 32, 10, 32, 12, 32, 608, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 616, 8, 32, 10, 32, 12, 32, 619, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 625, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 634, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 656, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 721, 8, 34, 10, 34, 12, 34, 724, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 743, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 753, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 761, 8, 36, 10, 36, 12, 36, 764, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 769, 8, 37, 1, 37, 1, 37, 1, 38, 3, 38, 774, 8, 38, 1, 38, 1, 38, 5, 38, 778, 8, 38, 10, 38, 12, 38, 781, 9, 38, 3, 38, 783, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 788, 8, 39, 1, 39, 1, 39, 1, 40, 3, 40, 793, 8, 40, 1, 40, 1, 40, 5, 40, 797, 8, 40, 10, 40, 12, 40, 800, 9, 40, 3, 40, 802, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 810, 8, 41, 1, 42, 3, 42, 813, 8, 42, 1, 42, 1, 42, 5, 42, 817, 8, 42, 10, 42, 12, 42, 820, 9, 42, 3, 42, 822, 8, 42, 1, 42, 3, 42, 825, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 831, 8, 43, 1, 44, 3, 44, 834, 8, 44, 1, 44, 1, 44, 5, 44, 838, 8, 44, 10, 44, 12, 44, 841, 9, 44, 3, 44, 843, 8, 44, 1, 44, 3, 44, 846, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 852, 8, 45, 1, 46, 5, 46, 855, 8, 46, 10, 46, 12, 46, 858, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 866, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 872, 8, 48, 10, 48, 12, 48, 875, 9, 48, 1, 48, 1, 48, 3, 48, 879, 8, 48, 1, 49, 1, 49, 3, 49, 883, 8, 49, 1, 50, 1, 50, 1, 50, 5, 50, 888, 8, 50, 10, 50, 12, 50, 891, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 899, 8, 51, 10, 51, 12, 51, 902, 9, 51, 1, 51, 1, 51, 3, 51, 906, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 926, 8, 54, 10, 54, 12, 54, 929, 9, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 941, 8, 54, 10, 54, 12, 54, 944, 9, 54, 1, 54, 1, 54, 3, 54, 948, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 958, 8, 55, 10, 55, 12, 55, 961, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 973, 8, 55, 10, 55, 12, 55, 976, 9, 55, 1, 55, 1, 55, 3, 55, 980, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 990, 8, 56, 10, 56, 12, 56, 993, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1005, 8, 56, 10, 56, 12, 56, 1008, 9, 56, 1, 56, 1, 56, 3, 56, 1012, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1017, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1024, 8, 57, 10, 57, 12, 57, 1027, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1041, 8, 58, 10, 58, 12, 58, 1044, 9, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1051, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1058, 8, 59, 10, 59, 12, 59, 1061, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1069, 8, 60, 10, 60, 12, 60, 1072, 9, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1080, 8, 61, 10, 61, 12, 61, 1083, 9, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1091, 8, 62, 10, 62, 12, 62, 1094, 9, 62, 1, 62, 1, 62, 1, 62, 0, 4, 42, 44, 68, 72, 63, 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, 0, 0, 1231, 0, 127, 1, 0, 0, 0, 2, 146, 1, 0, 0, 0, 4, 148, 1, 0, 0, 0, 6, 152, 1, 0, 0, 0, 8, 162, 1, 0, 0, 0, 10, 164, 1, 0, 0, 0, 12, 223, 1, 0, 0, 0, 14, 248, 1, 0, 0, 0, 16, 250, 1, 0, 0, 0, 18, 276, 1, 0, 0, 0, 20, 286, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 306, 1, 0, 0, 0, 28, 321, 1, 0, 0, 0, 30, 323, 1, 0, 0, 0, 32, 333, 1, 0, 0, 0, 34, 346, 1, 0, 0, 0, 36, 354, 1, 0, 0, 0, 38, 365, 1, 0, 0, 0, 40, 367, 1, 0, 0, 0, 42, 427, 1, 0, 0, 0, 44, 487, 1, 0, 0, 0, 46, 502, 1, 0, 0, 0, 48, 516, 1, 0, 0, 0, 50, 518, 1, 0, 0, 0, 52, 533, 1, 0, 0, 0, 54, 535, 1, 0, 0, 0, 56, 545, 1, 0, 0, 0, 58, 558, 1, 0, 0, 0, 60, 562, 1, 0, 0, 0, 62, 565, 1, 0, 0, 0, 64, 624, 1, 0, 0, 0, 66, 633, 1, 0, 0, 0, 68, 655, 1, 0, 0, 0, 70, 742, 1, 0, 0, 0, 72, 752, 1, 0, 0, 0, 74, 765, 1, 0, 0, 0, 76, 782, 1, 0, 0, 0, 78, 784, 1, 0, 0, 0, 80, 801, 1, 0, 0, 0, 82, 809, 1, 0, 0, 0, 84, 821, 1, 0, 0, 0, 86, 830, 1, 0, 0, 0, 88, 842, 1, 0, 0, 0, 90, 851, 1, 0, 0, 0, 92, 856, 1, 0, 0, 0, 94, 865, 1, 0, 0, 0, 96, 867, 1, 0, 0, 0, 98, 882, 1, 0, 0, 0, 100, 884, 1, 0, 0, 0, 102, 894, 1, 0, 0, 0, 104, 907, 1, 0, 0, 0, 106, 911, 1, 0, 0, 0, 108, 947, 1, 0, 0, 0, 110, 979, 1, 0, 0, 0, 112, 1011, 1, 0, 0, 0, 114, 1013, 1, 0, 0, 0, 116, 1030, 1, 0, 0, 0, 118, 1047, 1, 0, 0, 0, 120, 1064, 1, 0, 0, 0, 122, 1075, 1, 0, 0, 0, 124, 1086, 1, 0, 0, 0, 126, 128, 3, 2, 1, 0, 127, 126, 1, 0, 0, 0, 128, 129, 1, 0, 0, 0, 129, 127, 1, 0, 0, 0, 129, 130, 1, 0, 0, 0, 130, 131, 1, 0, 0, 0, 131, 132, 5, 0, 0, 1, 132, 1, 1, 0, 0, 0, 133, 147, 3, 10, 5, 0, 134, 147, 3, 12, 6, 0, 135, 147, 3, 14, 7, 0, 136, 147, 3, 22, 11, 0, 137, 147, 3, 24, 12, 0, 138, 147, 3, 26, 13, 0, 139, 147, 3, 34, 17, 0, 140, 147, 3, 4, 2, 0, 141, 147, 3, 16, 8, 0, 142, 147, 3, 18, 9, 0, 143, 147, 3, 110, 55, 0, 144, 147, 3, 116, 58, 0, 145, 147, 3, 122, 61, 0, 146, 133, 1, 0, 0, 0, 146, 134, 1, 0, 0, 0, 146, 135, 1, 0, 0, 0, 146, 136, 1, 0, 0, 0, 146, 137, 1, 0, 0, 0, 146, 138, 1, 0, 0, 0, 146, 139, 1, 0, 0, 0, 146, 140, 1, 0, 0, 0, 146, 141, 1, 0, 0, 0, 146, 142, 1, 0, 0, 0, 146, 143, 1, 0, 0, 0, 146, 144, 1, 0, 0, 0, 146, 145, 1, 0, 0, 0, 147, 3, 1, 0, 0, 0, 148, 149, 5, 23, 0, 0, 149, 150, 3, 6, 3, 0, 150, 151, 5, 36, 0, 0, 151, 5, 1, 0, 0, 0, 152, 157, 3, 8, 4, 0, 153, 154, 5, 42, 0, 0, 154, 156, 3, 8, 4, 0, 155, 153, 1, 0, 0, 0, 156, 159, 1, 0, 0, 0, 157, 155, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 7, 1, 0, 0, 0, 159, 157, 1, 0, 0, 0, 160, 163, 5, 65, 0, 0, 161, 163, 5, 77, 0, 0, 162, 160, 1, 0, 0, 0, 162, 161, 1, 0, 0, 0, 163, 9, 1, 0, 0, 0, 164, 165, 5, 3, 0, 0, 165, 166, 3, 8, 4, 0, 166, 167, 5, 36, 0, 0, 167, 11, 1, 0, 0, 0, 168, 172, 5, 71, 0, 0, 169, 171, 3, 66, 33, 0, 170, 169, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 170, 1, 0, 0, 0, 172, 173, 1, 0, 0, 0, 173, 175, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 176, 5, 37, 0, 0, 176, 177, 3, 68, 34, 0, 177, 178, 5, 36, 0, 0, 178, 224, 1, 0, 0, 0, 179, 183, 5, 71, 0, 0, 180, 182, 3, 66, 33, 0, 181, 180, 1, 0, 0, 0, 182, 185, 1, 0, 0, 0, 183, 181, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 186, 1, 0, 0, 0, 185, 183, 1, 0, 0, 0, 186, 187, 5, 38, 0, 0, 187, 188, 3, 68, 34, 0, 188, 189, 5, 36, 0, 0, 189, 224, 1, 0, 0, 0, 190, 194, 5, 71, 0, 0, 191, 193, 3, 66, 33, 0, 192, 191, 1, 0, 0, 0, 193, 196, 1, 0, 0, 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 197, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 197, 198, 5, 39, 0, 0, 198, 199, 3, 68, 34, 0, 199, 200, 5, 36, 0, 0, 200, 224, 1, 0, 0, 0, 201, 205, 5, 71, 0, 0, 202, 204, 3, 66, 33, 0, 203, 202, 1, 0, 0, 0, 204, 207, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 208, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 209, 5, 40, 0, 0, 209, 210, 3, 68, 34, 0, 210, 211, 5, 36, 0, 0, 211, 224, 1, 0, 0, 0, 212, 216, 5, 71, 0, 0, 213, 215, 3, 66, 33, 0, 214, 213, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 219, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 5, 41, 0, 0, 220, 221, 3, 68, 34, 0, 221, 222, 5, 36, 0, 0, 222, 224, 1, 0, 0, 0, 223, 168, 1, 0, 0, 0, 223, 179, 1, 0, 0, 0, 223, 190, 1, 0, 0, 0, 223, 201, 1, 0, 0, 0, 223, 212, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 226, 5, 20, 0, 0, 226, 227, 3, 8, 4, 0, 227, 228, 5, 36, 0, 0, 228, 249, 1, 0, 0, 0, 229, 230, 5, 20, 0, 0, 230, 231, 3, 8, 4, 0, 231, 232, 5, 37, 0, 0, 232, 233, 5, 27, 0, 0, 233, 234, 5, 36, 0, 0, 234, 249, 1, 0, 0, 0, 235, 236, 5, 20, 0, 0, 236, 237, 3, 8, 4, 0, 237, 238, 5, 37, 0, 0, 238, 242, 5, 30, 0, 0, 239, 241, 3, 20, 10, 0, 240, 239, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 245, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 246, 5, 31, 0, 0, 246, 247, 5, 36, 0, 0, 247, 249, 1, 0, 0, 0, 248, 225, 1, 0, 0, 0, 248, 229, 1, 0, 0, 0, 248, 235, 1, 0, 0, 0, 249, 15, 1, 0, 0, 0, 250, 251, 5, 28, 0, 0, 251, 252, 3, 8, 4, 0, 252, 253, 5, 42, 0, 0, 253, 254, 3, 8, 4, 0, 254, 255, 5, 37, 0, 0, 255, 256, 3, 68, 34, 0, 256, 257, 5, 36, 0, 0, 257, 17, 1, 0, 0, 0, 258, 259, 5, 29, 0, 0, 259, 260, 3, 68, 34, 0, 260, 261, 5, 42, 0, 0, 261, 262, 3, 8, 4, 0, 262, 263, 5, 42, 0, 0, 263, 264, 3, 8, 4, 0, 264, 265, 5, 37, 0, 0, 265, 266, 3, 68, 34, 0, 266, 267, 5, 36, 0, 0, 267, 277, 1, 0, 0, 0, 268, 269, 5, 29, 0, 0, 269, 270, 3, 68, 34, 0, 270, 271, 5, 42, 0, 0, 271, 272, 3, 8, 4, 0, 272, 273, 5, 37, 0, 0, 273, 274, 3, 68, 34, 0, 274, 275, 5, 36, 0, 0, 275, 277, 1, 0, 0, 0, 276, 258, 1, 0, 0, 0, 276, 268, 1, 0, 0, 0, 277, 19, 1, 0, 0, 0, 278, 279, 5, 25, 0, 0, 279, 280, 3, 8, 4, 0, 280, 281, 5, 36, 0, 0, 281, 287, 1, 0, 0, 0, 282, 283, 5, 26, 0, 0, 283, 284, 3, 8, 4, 0, 284, 285, 5, 36, 0, 0, 285, 287, 1, 0, 0, 0, 286, 278, 1, 0, 0, 0, 286, 282, 1, 0, 0, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 4, 0, 0, 289, 290, 5, 77, 0, 0, 290, 291, 5, 32, 0, 0, 291, 292, 3, 88, 44, 0, 292, 293, 5, 33, 0, 0, 293, 294, 5, 30, 0, 0, 294, 295, 3, 92, 46, 0, 295, 296, 5, 31, 0, 0, 296, 23, 1, 0, 0, 0, 297, 298, 5, 8, 0, 0, 298, 299, 5, 77, 0, 0, 299, 300, 5, 32, 0, 0, 300, 301, 3, 88, 44, 0, 301, 302, 5, 33, 0, 0, 302, 303, 5, 30, 0, 0, 303, 304, 3, 46, 23, 0, 304, 305, 5, 31, 0, 0, 305, 25, 1, 0, 0, 0, 306, 307, 5, 5, 0, 0, 307, 308, 3, 68, 34, 0, 308, 312, 5, 30, 0, 0, 309, 311, 3, 2, 1, 0, 310, 309, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 315, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 315, 317, 5, 31, 0, 0, 316, 318, 3, 28, 14, 0, 317, 316, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 27, 1, 0, 0, 0, 319, 322, 3, 30, 15, 0, 320, 322, 3, 32, 16, 0, 321, 319, 1, 0, 0, 0, 321, 320, 1, 0, 0, 0, 322, 29, 1, 0, 0, 0, 323, 324, 5, 6, 0, 0, 324, 328, 5, 30, 0, 0, 325, 327, 3, 2, 1, 0, 326, 325, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 331, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 332, 5, 31, 0, 0, 332, 31, 1, 0, 0, 0, 333, 334, 5, 7, 0, 0, 334, 335, 3, 68, 34, 0, 335, 339, 5, 30, 0, 0, 336, 338, 3, 2, 1, 0, 337, 336, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 342, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 344, 5, 31, 0, 0, 343, 345, 3, 28, 14, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 33, 1, 0, 0, 0, 346, 347, 3, 36, 18, 0, 347, 348, 5, 30, 0, 0, 348, 349, 3, 46, 23, 0, 349, 350, 5, 31, 0, 0, 350, 35, 1, 0, 0, 0, 351, 353, 3, 38, 19, 0, 352, 351, 1, 0, 0, 0, 353, 356, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 357, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 357, 358, 3, 42, 21, 0, 358, 37, 1, 0, 0, 0, 359, 360, 5, 18, 0, 0, 360, 366, 3, 72, 36, 0, 361, 362, 5, 19, 0, 0, 362, 366, 3, 8, 4, 0, 363, 364, 5, 24, 0, 0, 364, 366, 3, 40, 20, 0, 365, 359, 1, 0, 0, 0, 365, 361, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 366, 39, 1, 0, 0, 0, 367, 376, 5, 32, 0, 0, 368, 373, 3, 68, 34, 0, 369, 370, 5, 42, 0, 0, 370, 372, 3, 68, 34, 0, 371, 369, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 368, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 5, 33, 0, 0, 379, 41, 1, 0, 0, 0, 380, 381, 6, 21, -1, 0, 381, 428, 5, 77, 0, 0, 382, 428, 5, 65, 0, 0, 383, 428, 5, 69, 0, 0, 384, 428, 5, 70, 0, 0, 385, 386, 5, 69, 0, 0, 386, 387, 5, 37, 0, 0, 387, 391, 5, 34, 0, 0, 388, 390, 3, 94, 47, 0, 389, 388, 1, 0, 0, 0, 390, 393, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 394, 428, 5, 35, 0, 0, 395, 396, 5, 70, 0, 0, 396, 397, 5, 37, 0, 0, 397, 401, 5, 34, 0, 0, 398, 400, 3, 94, 47, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 428, 5, 35, 0, 0, 405, 428, 5, 67, 0, 0, 406, 428, 5, 68, 0, 0, 407, 428, 5, 74, 0, 0, 408, 428, 5, 75, 0, 0, 409, 428, 5, 76, 0, 0, 410, 411, 5, 32, 0, 0, 411, 412, 3, 42, 21, 0, 412, 413, 5, 33, 0, 0, 413, 428, 1, 0, 0, 0, 414, 415, 5, 43, 0, 0, 415, 428, 5, 77, 0, 0, 416, 417, 5, 43, 0, 0, 417, 428, 5, 65, 0, 0, 418, 419, 5, 59, 0, 0, 419, 428, 5, 69, 0, 0, 420, 421, 5, 59, 0, 0, 421, 428, 5, 70, 0, 0, 422, 423, 5, 59, 0, 0, 423, 428, 5, 67, 0, 0, 424, 425, 5, 59, 0, 0, 425, 428, 5, 68, 0, 0, 426, 428, 5, 45, 0, 0, 427, 380, 1, 0, 0, 0, 427, 382, 1, 0, 0, 0, 427, 383, 1, 0, 0, 0, 427, 384, 1, 0, 0, 0, 427, 385, 1, 0, 0, 0, 427, 395, 1, 0, 0, 0, 427, 405, 1, 0, 0, 0, 427, 406, 1, 0, 0, 0, 427, 407, 1, 0, 0, 0, 427, 408, 1, 0, 0, 0, 427, 409, 1, 0, 0, 0, 427, 410, 1, 0, 0, 0, 427, 414, 1, 0, 0, 0, 427, 416, 1, 0, 0, 0, 427, 418, 1, 0, 0, 0, 427, 420, 1, 0, 0, 0, 427, 422, 1, 0, 0, 0, 427, 424, 1, 0, 0, 0, 427, 426, 1, 0, 0, 0, 428, 439, 1, 0, 0, 0, 429, 430, 10, 10, 0, 0, 430, 431, 5, 42, 0, 0, 431, 438, 3, 44, 22, 0, 432, 433, 10, 9, 0, 0, 433, 434, 5, 49, 0, 0, 434, 438, 3, 44, 22, 0, 435, 436, 10, 8, 0, 0, 436, 438, 3, 44, 22, 0, 437, 429, 1, 0, 0, 0, 437, 432, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 43, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 443, 6, 22, -1, 0, 443, 488, 5, 77, 0, 0, 444, 488, 5, 65, 0, 0, 445, 488, 5, 69, 0, 0, 446, 488, 5, 70, 0, 0, 447, 448, 5, 69, 0, 0, 448, 449, 5, 37, 0, 0, 449, 453, 5, 34, 0, 0, 450, 452, 3, 94, 47, 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, 488, 5, 35, 0, 0, 457, 458, 5, 70, 0, 0, 458, 459, 5, 37, 0, 0, 459, 463, 5, 34, 0, 0, 460, 462, 3, 94, 47, 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, 488, 5, 35, 0, 0, 467, 488, 5, 67, 0, 0, 468, 488, 5, 68, 0, 0, 469, 488, 5, 74, 0, 0, 470, 471, 5, 32, 0, 0, 471, 472, 3, 44, 22, 0, 472, 473, 5, 33, 0, 0, 473, 488, 1, 0, 0, 0, 474, 475, 5, 43, 0, 0, 475, 488, 5, 77, 0, 0, 476, 477, 5, 43, 0, 0, 477, 488, 5, 65, 0, 0, 478, 479, 5, 59, 0, 0, 479, 488, 5, 69, 0, 0, 480, 481, 5, 59, 0, 0, 481, 488, 5, 70, 0, 0, 482, 483, 5, 59, 0, 0, 483, 488, 5, 67, 0, 0, 484, 485, 5, 59, 0, 0, 485, 488, 5, 68, 0, 0, 486, 488, 5, 45, 0, 0, 487, 442, 1, 0, 0, 0, 487, 444, 1, 0, 0, 0, 487, 445, 1, 0, 0, 0, 487, 446, 1, 0, 0, 0, 487, 447, 1, 0, 0, 0, 487, 457, 1, 0, 0, 0, 487, 467, 1, 0, 0, 0, 487, 468, 1, 0, 0, 0, 487, 469, 1, 0, 0, 0, 487, 470, 1, 0, 0, 0, 487, 474, 1, 0, 0, 0, 487, 476, 1, 0, 0, 0, 487, 478, 1, 0, 0, 0, 487, 480, 1, 0, 0, 0, 487, 482, 1, 0, 0, 0, 487, 484, 1, 0, 0, 0, 487, 486, 1, 0, 0, 0, 488, 496, 1, 0, 0, 0, 489, 490, 10, 9, 0, 0, 490, 491, 5, 42, 0, 0, 491, 495, 3, 44, 22, 10, 492, 493, 10, 8, 0, 0, 493, 495, 3, 44, 22, 9, 494, 489, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 45, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 501, 3, 48, 24, 0, 500, 499, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 47, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 517, 3, 12, 6, 0, 506, 517, 3, 50, 25, 0, 507, 517, 3, 118, 59, 0, 508, 517, 3, 124, 62, 0, 509, 517, 3, 112, 56, 0, 510, 517, 3, 58, 29, 0, 511, 517, 3, 60, 30, 0, 512, 517, 3, 62, 31, 0, 513, 517, 3, 64, 32, 0, 514, 517, 3, 34, 17, 0, 515, 517, 3, 106, 53, 0, 516, 505, 1, 0, 0, 0, 516, 506, 1, 0, 0, 0, 516, 507, 1, 0, 0, 0, 516, 508, 1, 0, 0, 0, 516, 509, 1, 0, 0, 0, 516, 510, 1, 0, 0, 0, 516, 511, 1, 0, 0, 0, 516, 512, 1, 0, 0, 0, 516, 513, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 516, 515, 1, 0, 0, 0, 517, 49, 1, 0, 0, 0, 518, 519, 5, 5, 0, 0, 519, 520, 3, 68, 34, 0, 520, 524, 5, 30, 0, 0, 521, 523, 3, 48, 24, 0, 522, 521, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 527, 529, 5, 31, 0, 0, 528, 530, 3, 52, 26, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 51, 1, 0, 0, 0, 531, 534, 3, 54, 27, 0, 532, 534, 3, 56, 28, 0, 533, 531, 1, 0, 0, 0, 533, 532, 1, 0, 0, 0, 534, 53, 1, 0, 0, 0, 535, 536, 5, 6, 0, 0, 536, 540, 5, 30, 0, 0, 537, 539, 3, 48, 24, 0, 538, 537, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 544, 5, 31, 0, 0, 544, 55, 1, 0, 0, 0, 545, 546, 5, 7, 0, 0, 546, 547, 3, 68, 34, 0, 547, 551, 5, 30, 0, 0, 548, 550, 3, 48, 24, 0, 549, 548, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 554, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 554, 556, 5, 31, 0, 0, 555, 557, 3, 52, 26, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 57, 1, 0, 0, 0, 558, 559, 5, 16, 0, 0, 559, 560, 3, 68, 34, 0, 560, 561, 5, 36, 0, 0, 561, 59, 1, 0, 0, 0, 562, 563, 5, 66, 0, 0, 563, 564, 5, 36, 0, 0, 564, 61, 1, 0, 0, 0, 565, 566, 5, 17, 0, 0, 566, 567, 3, 68, 34, 0, 567, 568, 5, 36, 0, 0, 568, 63, 1, 0, 0, 0, 569, 573, 3, 8, 4, 0, 570, 572, 3, 66, 33, 0, 571, 570, 1, 0, 0, 0, 572, 575, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 576, 577, 5, 37, 0, 0, 577, 578, 3, 68, 34, 0, 578, 579, 5, 36, 0, 0, 579, 625, 1, 0, 0, 0, 580, 584, 3, 8, 4, 0, 581, 583, 3, 66, 33, 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, 587, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 588, 5, 38, 0, 0, 588, 589, 3, 68, 34, 0, 589, 590, 5, 36, 0, 0, 590, 625, 1, 0, 0, 0, 591, 595, 3, 8, 4, 0, 592, 594, 3, 66, 33, 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, 598, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 599, 5, 39, 0, 0, 599, 600, 3, 68, 34, 0, 600, 601, 5, 36, 0, 0, 601, 625, 1, 0, 0, 0, 602, 606, 3, 8, 4, 0, 603, 605, 3, 66, 33, 0, 604, 603, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 609, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 610, 5, 41, 0, 0, 610, 611, 3, 68, 34, 0, 611, 612, 5, 36, 0, 0, 612, 625, 1, 0, 0, 0, 613, 617, 3, 8, 4, 0, 614, 616, 3, 66, 33, 0, 615, 614, 1, 0, 0, 0, 616, 619, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 620, 621, 5, 40, 0, 0, 621, 622, 3, 68, 34, 0, 622, 623, 5, 36, 0, 0, 623, 625, 1, 0, 0, 0, 624, 569, 1, 0, 0, 0, 624, 580, 1, 0, 0, 0, 624, 591, 1, 0, 0, 0, 624, 602, 1, 0, 0, 0, 624, 613, 1, 0, 0, 0, 625, 65, 1, 0, 0, 0, 626, 627, 5, 34, 0, 0, 627, 628, 3, 68, 34, 0, 628, 629, 5, 35, 0, 0, 629, 634, 1, 0, 0, 0, 630, 631, 5, 34, 0, 0, 631, 632, 5, 45, 0, 0, 632, 634, 5, 35, 0, 0, 633, 626, 1, 0, 0, 0, 633, 630, 1, 0, 0, 0, 634, 67, 1, 0, 0, 0, 635, 636, 6, 34, -1, 0, 636, 637, 5, 77, 0, 0, 637, 638, 5, 32, 0, 0, 638, 639, 3, 84, 42, 0, 639, 640, 5, 33, 0, 0, 640, 656, 1, 0, 0, 0, 641, 656, 3, 70, 35, 0, 642, 656, 5, 71, 0, 0, 643, 656, 5, 72, 0, 0, 644, 656, 5, 73, 0, 0, 645, 646, 5, 32, 0, 0, 646, 647, 3, 68, 34, 0, 647, 648, 5, 33, 0, 0, 648, 656, 1, 0, 0, 0, 649, 650, 5, 44, 0, 0, 650, 656, 3, 68, 34, 20, 651, 652, 5, 43, 0, 0, 652, 656, 3, 68, 34, 19, 653, 654, 5, 48, 0, 0, 654, 656, 3, 68, 34, 18, 655, 635, 1, 0, 0, 0, 655, 641, 1, 0, 0, 0, 655, 642, 1, 0, 0, 0, 655, 643, 1, 0, 0, 0, 655, 644, 1, 0, 0, 0, 655, 645, 1, 0, 0, 0, 655, 649, 1, 0, 0, 0, 655, 651, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 722, 1, 0, 0, 0, 657, 658, 10, 14, 0, 0, 658, 659, 5, 45, 0, 0, 659, 721, 3, 68, 34, 15, 660, 661, 10, 13, 0, 0, 661, 662, 5, 46, 0, 0, 662, 721, 3, 68, 34, 14, 663, 664, 10, 12, 0, 0, 664, 665, 5, 47, 0, 0, 665, 721, 3, 68, 34, 13, 666, 667, 10, 11, 0, 0, 667, 668, 5, 43, 0, 0, 668, 721, 3, 68, 34, 12, 669, 670, 10, 10, 0, 0, 670, 671, 5, 44, 0, 0, 671, 721, 3, 68, 34, 11, 672, 673, 10, 9, 0, 0, 673, 674, 5, 49, 0, 0, 674, 721, 3, 68, 34, 10, 675, 676, 10, 8, 0, 0, 676, 677, 5, 51, 0, 0, 677, 721, 3, 68, 34, 9, 678, 679, 10, 7, 0, 0, 679, 680, 5, 50, 0, 0, 680, 721, 3, 68, 34, 8, 681, 682, 10, 6, 0, 0, 682, 683, 5, 52, 0, 0, 683, 721, 3, 68, 34, 7, 684, 685, 10, 5, 0, 0, 685, 686, 5, 53, 0, 0, 686, 721, 3, 68, 34, 6, 687, 688, 10, 4, 0, 0, 688, 689, 5, 54, 0, 0, 689, 721, 3, 68, 34, 5, 690, 691, 10, 3, 0, 0, 691, 692, 5, 55, 0, 0, 692, 721, 3, 68, 34, 4, 693, 694, 10, 2, 0, 0, 694, 695, 5, 56, 0, 0, 695, 721, 3, 68, 34, 3, 696, 697, 10, 1, 0, 0, 697, 698, 5, 57, 0, 0, 698, 699, 3, 68, 34, 0, 699, 700, 5, 58, 0, 0, 700, 701, 3, 68, 34, 2, 701, 721, 1, 0, 0, 0, 702, 703, 10, 17, 0, 0, 703, 704, 5, 37, 0, 0, 704, 705, 5, 77, 0, 0, 705, 706, 5, 32, 0, 0, 706, 707, 3, 84, 42, 0, 707, 708, 5, 33, 0, 0, 708, 721, 1, 0, 0, 0, 709, 710, 10, 16, 0, 0, 710, 711, 5, 74, 0, 0, 711, 712, 5, 32, 0, 0, 712, 713, 3, 84, 42, 0, 713, 714, 5, 33, 0, 0, 714, 721, 1, 0, 0, 0, 715, 716, 10, 15, 0, 0, 716, 717, 5, 34, 0, 0, 717, 718, 3, 68, 34, 0, 718, 719, 5, 35, 0, 0, 719, 721, 1, 0, 0, 0, 720, 657, 1, 0, 0, 0, 720, 660, 1, 0, 0, 0, 720, 663, 1, 0, 0, 0, 720, 666, 1, 0, 0, 0, 720, 669, 1, 0, 0, 0, 720, 672, 1, 0, 0, 0, 720, 675, 1, 0, 0, 0, 720, 678, 1, 0, 0, 0, 720, 681, 1, 0, 0, 0, 720, 684, 1, 0, 0, 0, 720, 687, 1, 0, 0, 0, 720, 690, 1, 0, 0, 0, 720, 693, 1, 0, 0, 0, 720, 696, 1, 0, 0, 0, 720, 702, 1, 0, 0, 0, 720, 709, 1, 0, 0, 0, 720, 715, 1, 0, 0, 0, 721, 724, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 69, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 725, 743, 5, 66, 0, 0, 726, 743, 5, 61, 0, 0, 727, 743, 5, 62, 0, 0, 728, 743, 5, 64, 0, 0, 729, 743, 5, 65, 0, 0, 730, 743, 5, 77, 0, 0, 731, 743, 5, 60, 0, 0, 732, 733, 5, 4, 0, 0, 733, 734, 5, 32, 0, 0, 734, 735, 3, 88, 44, 0, 735, 736, 5, 33, 0, 0, 736, 737, 5, 30, 0, 0, 737, 738, 3, 92, 46, 0, 738, 739, 5, 31, 0, 0, 739, 743, 1, 0, 0, 0, 740, 743, 3, 74, 37, 0, 741, 743, 3, 78, 39, 0, 742, 725, 1, 0, 0, 0, 742, 726, 1, 0, 0, 0, 742, 727, 1, 0, 0, 0, 742, 728, 1, 0, 0, 0, 742, 729, 1, 0, 0, 0, 742, 730, 1, 0, 0, 0, 742, 731, 1, 0, 0, 0, 742, 732, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 742, 741, 1, 0, 0, 0, 743, 71, 1, 0, 0, 0, 744, 745, 6, 36, -1, 0, 745, 746, 5, 32, 0, 0, 746, 747, 3, 72, 36, 0, 747, 748, 5, 33, 0, 0, 748, 753, 1, 0, 0, 0, 749, 750, 5, 48, 0, 0, 750, 753, 3, 72, 36, 2, 751, 753, 3, 8, 4, 0, 752, 744, 1, 0, 0, 0, 752, 749, 1, 0, 0, 0, 752, 751, 1, 0, 0, 0, 753, 762, 1, 0, 0, 0, 754, 755, 10, 4, 0, 0, 755, 756, 5, 55, 0, 0, 756, 761, 3, 72, 36, 5, 757, 758, 10, 3, 0, 0, 758, 759, 5, 56, 0, 0, 759, 761, 3, 72, 36, 4, 760, 754, 1, 0, 0, 0, 760, 757, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 73, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 766, 5, 34, 0, 0, 766, 768, 3, 76, 38, 0, 767, 769, 5, 42, 0, 0, 768, 767, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 771, 5, 35, 0, 0, 771, 75, 1, 0, 0, 0, 772, 774, 3, 68, 34, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 779, 1, 0, 0, 0, 775, 776, 5, 42, 0, 0, 776, 778, 3, 68, 34, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 773, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 77, 1, 0, 0, 0, 784, 785, 5, 30, 0, 0, 785, 787, 3, 80, 40, 0, 786, 788, 5, 42, 0, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 5, 31, 0, 0, 790, 79, 1, 0, 0, 0, 791, 793, 3, 82, 41, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 798, 1, 0, 0, 0, 794, 795, 5, 42, 0, 0, 795, 797, 3, 82, 41, 0, 796, 794, 1, 0, 0, 0, 797, 800, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 802, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 801, 792, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 81, 1, 0, 0, 0, 803, 804, 5, 77, 0, 0, 804, 805, 5, 37, 0, 0, 805, 810, 3, 68, 34, 0, 806, 807, 5, 65, 0, 0, 807, 808, 5, 37, 0, 0, 808, 810, 3, 68, 34, 0, 809, 803, 1, 0, 0, 0, 809, 806, 1, 0, 0, 0, 810, 83, 1, 0, 0, 0, 811, 813, 3, 86, 43, 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 818, 1, 0, 0, 0, 814, 815, 5, 42, 0, 0, 815, 817, 3, 86, 43, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 812, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 825, 5, 42, 0, 0, 824, 823, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 85, 1, 0, 0, 0, 826, 827, 5, 71, 0, 0, 827, 828, 5, 37, 0, 0, 828, 831, 3, 68, 34, 0, 829, 831, 3, 68, 34, 0, 830, 826, 1, 0, 0, 0, 830, 829, 1, 0, 0, 0, 831, 87, 1, 0, 0, 0, 832, 834, 3, 90, 45, 0, 833, 832, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 839, 1, 0, 0, 0, 835, 836, 5, 42, 0, 0, 836, 838, 3, 90, 45, 0, 837, 835, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 843, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 833, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 846, 5, 42, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 89, 1, 0, 0, 0, 847, 852, 5, 71, 0, 0, 848, 849, 5, 71, 0, 0, 849, 850, 5, 37, 0, 0, 850, 852, 3, 68, 34, 0, 851, 847, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 852, 91, 1, 0, 0, 0, 853, 855, 3, 94, 47, 0, 854, 853, 1, 0, 0, 0, 855, 858, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 93, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 859, 866, 3, 12, 6, 0, 860, 866, 3, 96, 48, 0, 861, 866, 3, 104, 52, 0, 862, 866, 3, 108, 54, 0, 863, 866, 3, 114, 57, 0, 864, 866, 3, 120, 60, 0, 865, 859, 1, 0, 0, 0, 865, 860, 1, 0, 0, 0, 865, 861, 1, 0, 0, 0, 865, 862, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 865, 864, 1, 0, 0, 0, 866, 95, 1, 0, 0, 0, 867, 868, 5, 5, 0, 0, 868, 869, 3, 68, 34, 0, 869, 873, 5, 30, 0, 0, 870, 872, 3, 94, 47, 0, 871, 870, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 878, 5, 31, 0, 0, 877, 879, 3, 98, 49, 0, 878, 877, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 97, 1, 0, 0, 0, 880, 883, 3, 100, 50, 0, 881, 883, 3, 102, 51, 0, 882, 880, 1, 0, 0, 0, 882, 881, 1, 0, 0, 0, 883, 99, 1, 0, 0, 0, 884, 885, 5, 6, 0, 0, 885, 889, 5, 30, 0, 0, 886, 888, 3, 94, 47, 0, 887, 886, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 893, 5, 31, 0, 0, 893, 101, 1, 0, 0, 0, 894, 895, 5, 7, 0, 0, 895, 896, 3, 68, 34, 0, 896, 900, 5, 30, 0, 0, 897, 899, 3, 94, 47, 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, 903, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 905, 5, 31, 0, 0, 904, 906, 3, 98, 49, 0, 905, 904, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 103, 1, 0, 0, 0, 907, 908, 5, 22, 0, 0, 908, 909, 3, 68, 34, 0, 909, 910, 5, 36, 0, 0, 910, 105, 1, 0, 0, 0, 911, 912, 5, 21, 0, 0, 912, 913, 5, 77, 0, 0, 913, 914, 5, 32, 0, 0, 914, 915, 3, 84, 42, 0, 915, 916, 5, 33, 0, 0, 916, 107, 1, 0, 0, 0, 917, 918, 5, 10, 0, 0, 918, 919, 5, 71, 0, 0, 919, 920, 5, 11, 0, 0, 920, 921, 3, 68, 34, 0, 921, 922, 5, 13, 0, 0, 922, 923, 3, 68, 34, 0, 923, 927, 5, 30, 0, 0, 924, 926, 3, 94, 47, 0, 925, 924, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 930, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 31, 0, 0, 931, 948, 1, 0, 0, 0, 932, 933, 5, 10, 0, 0, 933, 934, 5, 71, 0, 0, 934, 935, 5, 11, 0, 0, 935, 936, 3, 68, 34, 0, 936, 937, 5, 12, 0, 0, 937, 938, 3, 68, 34, 0, 938, 942, 5, 30, 0, 0, 939, 941, 3, 94, 47, 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, 5, 31, 0, 0, 946, 948, 1, 0, 0, 0, 947, 917, 1, 0, 0, 0, 947, 932, 1, 0, 0, 0, 948, 109, 1, 0, 0, 0, 949, 950, 5, 10, 0, 0, 950, 951, 5, 71, 0, 0, 951, 952, 5, 11, 0, 0, 952, 953, 3, 68, 34, 0, 953, 954, 5, 13, 0, 0, 954, 955, 3, 68, 34, 0, 955, 959, 5, 30, 0, 0, 956, 958, 3, 2, 1, 0, 957, 956, 1, 0, 0, 0, 958, 961, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 962, 963, 5, 31, 0, 0, 963, 980, 1, 0, 0, 0, 964, 965, 5, 10, 0, 0, 965, 966, 5, 71, 0, 0, 966, 967, 5, 11, 0, 0, 967, 968, 3, 68, 34, 0, 968, 969, 5, 12, 0, 0, 969, 970, 3, 68, 34, 0, 970, 974, 5, 30, 0, 0, 971, 973, 3, 2, 1, 0, 972, 971, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 977, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 31, 0, 0, 978, 980, 1, 0, 0, 0, 979, 949, 1, 0, 0, 0, 979, 964, 1, 0, 0, 0, 980, 111, 1, 0, 0, 0, 981, 982, 5, 10, 0, 0, 982, 983, 5, 71, 0, 0, 983, 984, 5, 11, 0, 0, 984, 985, 3, 68, 34, 0, 985, 986, 5, 13, 0, 0, 986, 987, 3, 68, 34, 0, 987, 991, 5, 30, 0, 0, 988, 990, 3, 48, 24, 0, 989, 988, 1, 0, 0, 0, 990, 993, 1, 0, 0, 0, 991, 989, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 994, 995, 5, 31, 0, 0, 995, 1012, 1, 0, 0, 0, 996, 997, 5, 10, 0, 0, 997, 998, 5, 71, 0, 0, 998, 999, 5, 11, 0, 0, 999, 1000, 3, 68, 34, 0, 1000, 1001, 5, 12, 0, 0, 1001, 1002, 3, 68, 34, 0, 1002, 1006, 5, 30, 0, 0, 1003, 1005, 3, 48, 24, 0, 1004, 1003, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 31, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 981, 1, 0, 0, 0, 1011, 996, 1, 0, 0, 0, 1012, 113, 1, 0, 0, 0, 1013, 1016, 5, 14, 0, 0, 1014, 1015, 5, 71, 0, 0, 1015, 1017, 5, 42, 0, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 5, 71, 0, 0, 1019, 1020, 5, 15, 0, 0, 1020, 1021, 3, 68, 34, 0, 1021, 1025, 5, 30, 0, 0, 1022, 1024, 3, 94, 47, 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, 31, 0, 0, 1029, 115, 1, 0, 0, 0, 1030, 1033, 5, 14, 0, 0, 1031, 1032, 5, 71, 0, 0, 1032, 1034, 5, 42, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 5, 71, 0, 0, 1036, 1037, 5, 15, 0, 0, 1037, 1038, 3, 68, 34, 0, 1038, 1042, 5, 30, 0, 0, 1039, 1041, 3, 2, 1, 0, 1040, 1039, 1, 0, 0, 0, 1041, 1044, 1, 0, 0, 0, 1042, 1040, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1045, 1046, 5, 31, 0, 0, 1046, 117, 1, 0, 0, 0, 1047, 1050, 5, 14, 0, 0, 1048, 1049, 5, 71, 0, 0, 1049, 1051, 5, 42, 0, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 5, 71, 0, 0, 1053, 1054, 5, 15, 0, 0, 1054, 1055, 3, 68, 34, 0, 1055, 1059, 5, 30, 0, 0, 1056, 1058, 3, 48, 24, 0, 1057, 1056, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1062, 1063, 5, 31, 0, 0, 1063, 119, 1, 0, 0, 0, 1064, 1065, 5, 9, 0, 0, 1065, 1066, 3, 68, 34, 0, 1066, 1070, 5, 30, 0, 0, 1067, 1069, 3, 94, 47, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1072, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1073, 1074, 5, 31, 0, 0, 1074, 121, 1, 0, 0, 0, 1075, 1076, 5, 9, 0, 0, 1076, 1077, 3, 68, 34, 0, 1077, 1081, 5, 30, 0, 0, 1078, 1080, 3, 2, 1, 0, 1079, 1078, 1, 0, 0, 0, 1080, 1083, 1, 0, 0, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1084, 1085, 5, 31, 0, 0, 1085, 123, 1, 0, 0, 0, 1086, 1087, 5, 9, 0, 0, 1087, 1088, 3, 68, 34, 0, 1088, 1092, 5, 30, 0, 0, 1089, 1091, 3, 48, 24, 0, 1090, 1089, 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, 31, 0, 0, 1096, 125, 1, 0, 0, 0, 101, 129, 146, 157, 162, 172, 183, 194, 205, 216, 223, 242, 248, 276, 286, 312, 317, 321, 328, 339, 344, 354, 365, 373, 376, 391, 401, 427, 437, 439, 453, 463, 487, 494, 496, 502, 516, 524, 529, 533, 540, 551, 556, 573, 584, 595, 606, 617, 624, 633, 655, 720, 722, 742, 752, 760, 762, 768, 773, 779, 782, 787, 792, 798, 801, 809, 812, 818, 821, 824, 830, 833, 839, 842, 845, 851, 856, 865, 873, 878, 882, 889, 900, 905, 927, 942, 947, 959, 974, 979, 991, 1006, 1011, 1016, 1025, 1033, 1042, 1050, 1059, 1070, 1081, 1092] \ No newline at end of file +[4, 1, 78, 1120, 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, 1, 0, 4, 0, 132, 8, 0, 11, 0, 12, 0, 133, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 151, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 160, 8, 3, 10, 3, 12, 3, 163, 9, 3, 1, 4, 1, 4, 3, 4, 167, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 5, 6, 175, 8, 6, 10, 6, 12, 6, 178, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 186, 8, 6, 10, 6, 12, 6, 189, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 197, 8, 6, 10, 6, 12, 6, 200, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 208, 8, 6, 10, 6, 12, 6, 211, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 219, 8, 6, 10, 6, 12, 6, 222, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 228, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 245, 8, 7, 10, 7, 12, 7, 248, 9, 7, 1, 7, 1, 7, 1, 7, 3, 7, 253, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 281, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 291, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 315, 8, 13, 10, 13, 12, 13, 318, 9, 13, 1, 13, 1, 13, 3, 13, 322, 8, 13, 1, 14, 1, 14, 3, 14, 326, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 331, 8, 15, 10, 15, 12, 15, 334, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 342, 8, 16, 10, 16, 12, 16, 345, 9, 16, 1, 16, 1, 16, 3, 16, 349, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 5, 18, 357, 8, 18, 10, 18, 12, 18, 360, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 370, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 376, 8, 20, 10, 20, 12, 20, 379, 9, 20, 3, 20, 381, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 394, 8, 21, 10, 21, 12, 21, 397, 9, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 404, 8, 21, 10, 21, 12, 21, 407, 9, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 432, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 442, 8, 21, 10, 21, 12, 21, 445, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 456, 8, 22, 10, 22, 12, 22, 459, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 466, 8, 22, 10, 22, 12, 22, 469, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 492, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 499, 8, 22, 10, 22, 12, 22, 502, 9, 22, 1, 23, 5, 23, 505, 8, 23, 10, 23, 12, 23, 508, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 523, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 529, 8, 25, 10, 25, 12, 25, 532, 9, 25, 1, 25, 1, 25, 3, 25, 536, 8, 25, 1, 26, 1, 26, 3, 26, 540, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 545, 8, 27, 10, 27, 12, 27, 548, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 556, 8, 28, 10, 28, 12, 28, 559, 9, 28, 1, 28, 1, 28, 3, 28, 563, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 5, 32, 578, 8, 32, 10, 32, 12, 32, 581, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 589, 8, 32, 10, 32, 12, 32, 592, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 600, 8, 32, 10, 32, 12, 32, 603, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 611, 8, 32, 10, 32, 12, 32, 614, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 622, 8, 32, 10, 32, 12, 32, 625, 9, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 631, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 640, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 662, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 727, 8, 34, 10, 34, 12, 34, 730, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 749, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 759, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 767, 8, 36, 10, 36, 12, 36, 770, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 775, 8, 37, 1, 37, 1, 37, 1, 38, 3, 38, 780, 8, 38, 1, 38, 1, 38, 5, 38, 784, 8, 38, 10, 38, 12, 38, 787, 9, 38, 3, 38, 789, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 794, 8, 39, 1, 39, 1, 39, 1, 40, 3, 40, 799, 8, 40, 1, 40, 1, 40, 5, 40, 803, 8, 40, 10, 40, 12, 40, 806, 9, 40, 3, 40, 808, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 816, 8, 41, 1, 42, 3, 42, 819, 8, 42, 1, 42, 1, 42, 5, 42, 823, 8, 42, 10, 42, 12, 42, 826, 9, 42, 3, 42, 828, 8, 42, 1, 42, 3, 42, 831, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 837, 8, 43, 1, 44, 3, 44, 840, 8, 44, 1, 44, 1, 44, 5, 44, 844, 8, 44, 10, 44, 12, 44, 847, 9, 44, 3, 44, 849, 8, 44, 1, 44, 3, 44, 852, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 858, 8, 45, 1, 46, 5, 46, 861, 8, 46, 10, 46, 12, 46, 864, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 872, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 878, 8, 48, 10, 48, 12, 48, 881, 9, 48, 1, 48, 1, 48, 3, 48, 885, 8, 48, 1, 49, 1, 49, 3, 49, 889, 8, 49, 1, 50, 1, 50, 1, 50, 5, 50, 894, 8, 50, 10, 50, 12, 50, 897, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 905, 8, 51, 10, 51, 12, 51, 908, 9, 51, 1, 51, 1, 51, 3, 51, 912, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 931, 8, 54, 10, 54, 12, 54, 934, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 948, 8, 56, 10, 56, 12, 56, 951, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 963, 8, 56, 10, 56, 12, 56, 966, 9, 56, 1, 56, 1, 56, 3, 56, 970, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 980, 8, 57, 10, 57, 12, 57, 983, 9, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 995, 8, 57, 10, 57, 12, 57, 998, 9, 57, 1, 57, 1, 57, 3, 57, 1002, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1012, 8, 58, 10, 58, 12, 58, 1015, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1027, 8, 58, 10, 58, 12, 58, 1030, 9, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1039, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1046, 8, 59, 10, 59, 12, 59, 1049, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 3, 60, 1056, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1063, 8, 60, 10, 60, 12, 60, 1066, 9, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 3, 61, 1073, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1080, 8, 61, 10, 61, 12, 61, 1083, 9, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1091, 8, 62, 10, 62, 12, 62, 1094, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1102, 8, 63, 10, 63, 12, 63, 1105, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1113, 8, 64, 10, 64, 12, 64, 1116, 9, 64, 1, 64, 1, 64, 1, 64, 0, 4, 42, 44, 68, 72, 65, 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, 0, 0, 1254, 0, 131, 1, 0, 0, 0, 2, 150, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 6, 156, 1, 0, 0, 0, 8, 166, 1, 0, 0, 0, 10, 168, 1, 0, 0, 0, 12, 227, 1, 0, 0, 0, 14, 252, 1, 0, 0, 0, 16, 254, 1, 0, 0, 0, 18, 280, 1, 0, 0, 0, 20, 290, 1, 0, 0, 0, 22, 292, 1, 0, 0, 0, 24, 301, 1, 0, 0, 0, 26, 310, 1, 0, 0, 0, 28, 325, 1, 0, 0, 0, 30, 327, 1, 0, 0, 0, 32, 337, 1, 0, 0, 0, 34, 350, 1, 0, 0, 0, 36, 358, 1, 0, 0, 0, 38, 369, 1, 0, 0, 0, 40, 371, 1, 0, 0, 0, 42, 431, 1, 0, 0, 0, 44, 491, 1, 0, 0, 0, 46, 506, 1, 0, 0, 0, 48, 522, 1, 0, 0, 0, 50, 524, 1, 0, 0, 0, 52, 539, 1, 0, 0, 0, 54, 541, 1, 0, 0, 0, 56, 551, 1, 0, 0, 0, 58, 564, 1, 0, 0, 0, 60, 568, 1, 0, 0, 0, 62, 571, 1, 0, 0, 0, 64, 630, 1, 0, 0, 0, 66, 639, 1, 0, 0, 0, 68, 661, 1, 0, 0, 0, 70, 748, 1, 0, 0, 0, 72, 758, 1, 0, 0, 0, 74, 771, 1, 0, 0, 0, 76, 788, 1, 0, 0, 0, 78, 790, 1, 0, 0, 0, 80, 807, 1, 0, 0, 0, 82, 815, 1, 0, 0, 0, 84, 827, 1, 0, 0, 0, 86, 836, 1, 0, 0, 0, 88, 848, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 862, 1, 0, 0, 0, 94, 871, 1, 0, 0, 0, 96, 873, 1, 0, 0, 0, 98, 888, 1, 0, 0, 0, 100, 890, 1, 0, 0, 0, 102, 900, 1, 0, 0, 0, 104, 913, 1, 0, 0, 0, 106, 917, 1, 0, 0, 0, 108, 923, 1, 0, 0, 0, 110, 937, 1, 0, 0, 0, 112, 969, 1, 0, 0, 0, 114, 1001, 1, 0, 0, 0, 116, 1033, 1, 0, 0, 0, 118, 1035, 1, 0, 0, 0, 120, 1052, 1, 0, 0, 0, 122, 1069, 1, 0, 0, 0, 124, 1086, 1, 0, 0, 0, 126, 1097, 1, 0, 0, 0, 128, 1108, 1, 0, 0, 0, 130, 132, 3, 2, 1, 0, 131, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 131, 1, 0, 0, 0, 133, 134, 1, 0, 0, 0, 134, 135, 1, 0, 0, 0, 135, 136, 5, 0, 0, 1, 136, 1, 1, 0, 0, 0, 137, 151, 3, 10, 5, 0, 138, 151, 3, 12, 6, 0, 139, 151, 3, 14, 7, 0, 140, 151, 3, 22, 11, 0, 141, 151, 3, 24, 12, 0, 142, 151, 3, 26, 13, 0, 143, 151, 3, 34, 17, 0, 144, 151, 3, 4, 2, 0, 145, 151, 3, 16, 8, 0, 146, 151, 3, 18, 9, 0, 147, 151, 3, 114, 57, 0, 148, 151, 3, 120, 60, 0, 149, 151, 3, 126, 63, 0, 150, 137, 1, 0, 0, 0, 150, 138, 1, 0, 0, 0, 150, 139, 1, 0, 0, 0, 150, 140, 1, 0, 0, 0, 150, 141, 1, 0, 0, 0, 150, 142, 1, 0, 0, 0, 150, 143, 1, 0, 0, 0, 150, 144, 1, 0, 0, 0, 150, 145, 1, 0, 0, 0, 150, 146, 1, 0, 0, 0, 150, 147, 1, 0, 0, 0, 150, 148, 1, 0, 0, 0, 150, 149, 1, 0, 0, 0, 151, 3, 1, 0, 0, 0, 152, 153, 5, 24, 0, 0, 153, 154, 3, 6, 3, 0, 154, 155, 5, 37, 0, 0, 155, 5, 1, 0, 0, 0, 156, 161, 3, 8, 4, 0, 157, 158, 5, 43, 0, 0, 158, 160, 3, 8, 4, 0, 159, 157, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 7, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 167, 5, 66, 0, 0, 165, 167, 5, 78, 0, 0, 166, 164, 1, 0, 0, 0, 166, 165, 1, 0, 0, 0, 167, 9, 1, 0, 0, 0, 168, 169, 5, 3, 0, 0, 169, 170, 3, 8, 4, 0, 170, 171, 5, 37, 0, 0, 171, 11, 1, 0, 0, 0, 172, 176, 5, 72, 0, 0, 173, 175, 3, 66, 33, 0, 174, 173, 1, 0, 0, 0, 175, 178, 1, 0, 0, 0, 176, 174, 1, 0, 0, 0, 176, 177, 1, 0, 0, 0, 177, 179, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 179, 180, 5, 38, 0, 0, 180, 181, 3, 68, 34, 0, 181, 182, 5, 37, 0, 0, 182, 228, 1, 0, 0, 0, 183, 187, 5, 72, 0, 0, 184, 186, 3, 66, 33, 0, 185, 184, 1, 0, 0, 0, 186, 189, 1, 0, 0, 0, 187, 185, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 190, 191, 5, 39, 0, 0, 191, 192, 3, 68, 34, 0, 192, 193, 5, 37, 0, 0, 193, 228, 1, 0, 0, 0, 194, 198, 5, 72, 0, 0, 195, 197, 3, 66, 33, 0, 196, 195, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 201, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 202, 5, 40, 0, 0, 202, 203, 3, 68, 34, 0, 203, 204, 5, 37, 0, 0, 204, 228, 1, 0, 0, 0, 205, 209, 5, 72, 0, 0, 206, 208, 3, 66, 33, 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, 212, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 212, 213, 5, 41, 0, 0, 213, 214, 3, 68, 34, 0, 214, 215, 5, 37, 0, 0, 215, 228, 1, 0, 0, 0, 216, 220, 5, 72, 0, 0, 217, 219, 3, 66, 33, 0, 218, 217, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 42, 0, 0, 224, 225, 3, 68, 34, 0, 225, 226, 5, 37, 0, 0, 226, 228, 1, 0, 0, 0, 227, 172, 1, 0, 0, 0, 227, 183, 1, 0, 0, 0, 227, 194, 1, 0, 0, 0, 227, 205, 1, 0, 0, 0, 227, 216, 1, 0, 0, 0, 228, 13, 1, 0, 0, 0, 229, 230, 5, 21, 0, 0, 230, 231, 3, 8, 4, 0, 231, 232, 5, 37, 0, 0, 232, 253, 1, 0, 0, 0, 233, 234, 5, 21, 0, 0, 234, 235, 3, 8, 4, 0, 235, 236, 5, 38, 0, 0, 236, 237, 5, 28, 0, 0, 237, 238, 5, 37, 0, 0, 238, 253, 1, 0, 0, 0, 239, 240, 5, 21, 0, 0, 240, 241, 3, 8, 4, 0, 241, 242, 5, 38, 0, 0, 242, 246, 5, 31, 0, 0, 243, 245, 3, 20, 10, 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, 249, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 249, 250, 5, 32, 0, 0, 250, 251, 5, 37, 0, 0, 251, 253, 1, 0, 0, 0, 252, 229, 1, 0, 0, 0, 252, 233, 1, 0, 0, 0, 252, 239, 1, 0, 0, 0, 253, 15, 1, 0, 0, 0, 254, 255, 5, 29, 0, 0, 255, 256, 3, 8, 4, 0, 256, 257, 5, 43, 0, 0, 257, 258, 3, 8, 4, 0, 258, 259, 5, 38, 0, 0, 259, 260, 3, 68, 34, 0, 260, 261, 5, 37, 0, 0, 261, 17, 1, 0, 0, 0, 262, 263, 5, 30, 0, 0, 263, 264, 3, 68, 34, 0, 264, 265, 5, 43, 0, 0, 265, 266, 3, 8, 4, 0, 266, 267, 5, 43, 0, 0, 267, 268, 3, 8, 4, 0, 268, 269, 5, 38, 0, 0, 269, 270, 3, 68, 34, 0, 270, 271, 5, 37, 0, 0, 271, 281, 1, 0, 0, 0, 272, 273, 5, 30, 0, 0, 273, 274, 3, 68, 34, 0, 274, 275, 5, 43, 0, 0, 275, 276, 3, 8, 4, 0, 276, 277, 5, 38, 0, 0, 277, 278, 3, 68, 34, 0, 278, 279, 5, 37, 0, 0, 279, 281, 1, 0, 0, 0, 280, 262, 1, 0, 0, 0, 280, 272, 1, 0, 0, 0, 281, 19, 1, 0, 0, 0, 282, 283, 5, 26, 0, 0, 283, 284, 3, 8, 4, 0, 284, 285, 5, 37, 0, 0, 285, 291, 1, 0, 0, 0, 286, 287, 5, 27, 0, 0, 287, 288, 3, 8, 4, 0, 288, 289, 5, 37, 0, 0, 289, 291, 1, 0, 0, 0, 290, 282, 1, 0, 0, 0, 290, 286, 1, 0, 0, 0, 291, 21, 1, 0, 0, 0, 292, 293, 5, 4, 0, 0, 293, 294, 5, 78, 0, 0, 294, 295, 5, 33, 0, 0, 295, 296, 3, 88, 44, 0, 296, 297, 5, 34, 0, 0, 297, 298, 5, 31, 0, 0, 298, 299, 3, 92, 46, 0, 299, 300, 5, 32, 0, 0, 300, 23, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 303, 5, 78, 0, 0, 303, 304, 5, 33, 0, 0, 304, 305, 3, 88, 44, 0, 305, 306, 5, 34, 0, 0, 306, 307, 5, 31, 0, 0, 307, 308, 3, 46, 23, 0, 308, 309, 5, 32, 0, 0, 309, 25, 1, 0, 0, 0, 310, 311, 5, 5, 0, 0, 311, 312, 3, 68, 34, 0, 312, 316, 5, 31, 0, 0, 313, 315, 3, 2, 1, 0, 314, 313, 1, 0, 0, 0, 315, 318, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 319, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 319, 321, 5, 32, 0, 0, 320, 322, 3, 28, 14, 0, 321, 320, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 27, 1, 0, 0, 0, 323, 326, 3, 30, 15, 0, 324, 326, 3, 32, 16, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 29, 1, 0, 0, 0, 327, 328, 5, 6, 0, 0, 328, 332, 5, 31, 0, 0, 329, 331, 3, 2, 1, 0, 330, 329, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 335, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 335, 336, 5, 32, 0, 0, 336, 31, 1, 0, 0, 0, 337, 338, 5, 7, 0, 0, 338, 339, 3, 68, 34, 0, 339, 343, 5, 31, 0, 0, 340, 342, 3, 2, 1, 0, 341, 340, 1, 0, 0, 0, 342, 345, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 346, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 348, 5, 32, 0, 0, 347, 349, 3, 28, 14, 0, 348, 347, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 33, 1, 0, 0, 0, 350, 351, 3, 36, 18, 0, 351, 352, 5, 31, 0, 0, 352, 353, 3, 46, 23, 0, 353, 354, 5, 32, 0, 0, 354, 35, 1, 0, 0, 0, 355, 357, 3, 38, 19, 0, 356, 355, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 361, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 361, 362, 3, 42, 21, 0, 362, 37, 1, 0, 0, 0, 363, 364, 5, 19, 0, 0, 364, 370, 3, 72, 36, 0, 365, 366, 5, 20, 0, 0, 366, 370, 3, 8, 4, 0, 367, 368, 5, 25, 0, 0, 368, 370, 3, 40, 20, 0, 369, 363, 1, 0, 0, 0, 369, 365, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 39, 1, 0, 0, 0, 371, 380, 5, 33, 0, 0, 372, 377, 3, 68, 34, 0, 373, 374, 5, 43, 0, 0, 374, 376, 3, 68, 34, 0, 375, 373, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 372, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 5, 34, 0, 0, 383, 41, 1, 0, 0, 0, 384, 385, 6, 21, -1, 0, 385, 432, 5, 78, 0, 0, 386, 432, 5, 66, 0, 0, 387, 432, 5, 70, 0, 0, 388, 432, 5, 71, 0, 0, 389, 390, 5, 70, 0, 0, 390, 391, 5, 38, 0, 0, 391, 395, 5, 35, 0, 0, 392, 394, 3, 94, 47, 0, 393, 392, 1, 0, 0, 0, 394, 397, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 398, 432, 5, 36, 0, 0, 399, 400, 5, 71, 0, 0, 400, 401, 5, 38, 0, 0, 401, 405, 5, 35, 0, 0, 402, 404, 3, 94, 47, 0, 403, 402, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 408, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 408, 432, 5, 36, 0, 0, 409, 432, 5, 68, 0, 0, 410, 432, 5, 69, 0, 0, 411, 432, 5, 75, 0, 0, 412, 432, 5, 76, 0, 0, 413, 432, 5, 77, 0, 0, 414, 415, 5, 33, 0, 0, 415, 416, 3, 42, 21, 0, 416, 417, 5, 34, 0, 0, 417, 432, 1, 0, 0, 0, 418, 419, 5, 44, 0, 0, 419, 432, 5, 78, 0, 0, 420, 421, 5, 44, 0, 0, 421, 432, 5, 66, 0, 0, 422, 423, 5, 60, 0, 0, 423, 432, 5, 70, 0, 0, 424, 425, 5, 60, 0, 0, 425, 432, 5, 71, 0, 0, 426, 427, 5, 60, 0, 0, 427, 432, 5, 68, 0, 0, 428, 429, 5, 60, 0, 0, 429, 432, 5, 69, 0, 0, 430, 432, 5, 46, 0, 0, 431, 384, 1, 0, 0, 0, 431, 386, 1, 0, 0, 0, 431, 387, 1, 0, 0, 0, 431, 388, 1, 0, 0, 0, 431, 389, 1, 0, 0, 0, 431, 399, 1, 0, 0, 0, 431, 409, 1, 0, 0, 0, 431, 410, 1, 0, 0, 0, 431, 411, 1, 0, 0, 0, 431, 412, 1, 0, 0, 0, 431, 413, 1, 0, 0, 0, 431, 414, 1, 0, 0, 0, 431, 418, 1, 0, 0, 0, 431, 420, 1, 0, 0, 0, 431, 422, 1, 0, 0, 0, 431, 424, 1, 0, 0, 0, 431, 426, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 443, 1, 0, 0, 0, 433, 434, 10, 10, 0, 0, 434, 435, 5, 43, 0, 0, 435, 442, 3, 44, 22, 0, 436, 437, 10, 9, 0, 0, 437, 438, 5, 50, 0, 0, 438, 442, 3, 44, 22, 0, 439, 440, 10, 8, 0, 0, 440, 442, 3, 44, 22, 0, 441, 433, 1, 0, 0, 0, 441, 436, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 445, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 43, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 446, 447, 6, 22, -1, 0, 447, 492, 5, 78, 0, 0, 448, 492, 5, 66, 0, 0, 449, 492, 5, 70, 0, 0, 450, 492, 5, 71, 0, 0, 451, 452, 5, 70, 0, 0, 452, 453, 5, 38, 0, 0, 453, 457, 5, 35, 0, 0, 454, 456, 3, 94, 47, 0, 455, 454, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 460, 1, 0, 0, 0, 459, 457, 1, 0, 0, 0, 460, 492, 5, 36, 0, 0, 461, 462, 5, 71, 0, 0, 462, 463, 5, 38, 0, 0, 463, 467, 5, 35, 0, 0, 464, 466, 3, 94, 47, 0, 465, 464, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 470, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 470, 492, 5, 36, 0, 0, 471, 492, 5, 68, 0, 0, 472, 492, 5, 69, 0, 0, 473, 492, 5, 75, 0, 0, 474, 475, 5, 33, 0, 0, 475, 476, 3, 44, 22, 0, 476, 477, 5, 34, 0, 0, 477, 492, 1, 0, 0, 0, 478, 479, 5, 44, 0, 0, 479, 492, 5, 78, 0, 0, 480, 481, 5, 44, 0, 0, 481, 492, 5, 66, 0, 0, 482, 483, 5, 60, 0, 0, 483, 492, 5, 70, 0, 0, 484, 485, 5, 60, 0, 0, 485, 492, 5, 71, 0, 0, 486, 487, 5, 60, 0, 0, 487, 492, 5, 68, 0, 0, 488, 489, 5, 60, 0, 0, 489, 492, 5, 69, 0, 0, 490, 492, 5, 46, 0, 0, 491, 446, 1, 0, 0, 0, 491, 448, 1, 0, 0, 0, 491, 449, 1, 0, 0, 0, 491, 450, 1, 0, 0, 0, 491, 451, 1, 0, 0, 0, 491, 461, 1, 0, 0, 0, 491, 471, 1, 0, 0, 0, 491, 472, 1, 0, 0, 0, 491, 473, 1, 0, 0, 0, 491, 474, 1, 0, 0, 0, 491, 478, 1, 0, 0, 0, 491, 480, 1, 0, 0, 0, 491, 482, 1, 0, 0, 0, 491, 484, 1, 0, 0, 0, 491, 486, 1, 0, 0, 0, 491, 488, 1, 0, 0, 0, 491, 490, 1, 0, 0, 0, 492, 500, 1, 0, 0, 0, 493, 494, 10, 9, 0, 0, 494, 495, 5, 43, 0, 0, 495, 499, 3, 44, 22, 10, 496, 497, 10, 8, 0, 0, 497, 499, 3, 44, 22, 9, 498, 493, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 502, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 45, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 503, 505, 3, 48, 24, 0, 504, 503, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 47, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 523, 3, 12, 6, 0, 510, 523, 3, 50, 25, 0, 511, 523, 3, 122, 61, 0, 512, 523, 3, 128, 64, 0, 513, 523, 3, 116, 58, 0, 514, 523, 3, 58, 29, 0, 515, 523, 3, 60, 30, 0, 516, 523, 3, 62, 31, 0, 517, 523, 3, 64, 32, 0, 518, 523, 3, 34, 17, 0, 519, 523, 3, 106, 53, 0, 520, 523, 3, 108, 54, 0, 521, 523, 3, 110, 55, 0, 522, 509, 1, 0, 0, 0, 522, 510, 1, 0, 0, 0, 522, 511, 1, 0, 0, 0, 522, 512, 1, 0, 0, 0, 522, 513, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 522, 515, 1, 0, 0, 0, 522, 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 522, 519, 1, 0, 0, 0, 522, 520, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 49, 1, 0, 0, 0, 524, 525, 5, 5, 0, 0, 525, 526, 3, 68, 34, 0, 526, 530, 5, 31, 0, 0, 527, 529, 3, 48, 24, 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, 5, 32, 0, 0, 534, 536, 3, 52, 26, 0, 535, 534, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 51, 1, 0, 0, 0, 537, 540, 3, 54, 27, 0, 538, 540, 3, 56, 28, 0, 539, 537, 1, 0, 0, 0, 539, 538, 1, 0, 0, 0, 540, 53, 1, 0, 0, 0, 541, 542, 5, 6, 0, 0, 542, 546, 5, 31, 0, 0, 543, 545, 3, 48, 24, 0, 544, 543, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 1, 0, 0, 0, 548, 546, 1, 0, 0, 0, 549, 550, 5, 32, 0, 0, 550, 55, 1, 0, 0, 0, 551, 552, 5, 7, 0, 0, 552, 553, 3, 68, 34, 0, 553, 557, 5, 31, 0, 0, 554, 556, 3, 48, 24, 0, 555, 554, 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 560, 562, 5, 32, 0, 0, 561, 563, 3, 52, 26, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 57, 1, 0, 0, 0, 564, 565, 5, 17, 0, 0, 565, 566, 3, 68, 34, 0, 566, 567, 5, 37, 0, 0, 567, 59, 1, 0, 0, 0, 568, 569, 5, 67, 0, 0, 569, 570, 5, 37, 0, 0, 570, 61, 1, 0, 0, 0, 571, 572, 5, 18, 0, 0, 572, 573, 3, 68, 34, 0, 573, 574, 5, 37, 0, 0, 574, 63, 1, 0, 0, 0, 575, 579, 3, 8, 4, 0, 576, 578, 3, 66, 33, 0, 577, 576, 1, 0, 0, 0, 578, 581, 1, 0, 0, 0, 579, 577, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 582, 1, 0, 0, 0, 581, 579, 1, 0, 0, 0, 582, 583, 5, 38, 0, 0, 583, 584, 3, 68, 34, 0, 584, 585, 5, 37, 0, 0, 585, 631, 1, 0, 0, 0, 586, 590, 3, 8, 4, 0, 587, 589, 3, 66, 33, 0, 588, 587, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 5, 39, 0, 0, 594, 595, 3, 68, 34, 0, 595, 596, 5, 37, 0, 0, 596, 631, 1, 0, 0, 0, 597, 601, 3, 8, 4, 0, 598, 600, 3, 66, 33, 0, 599, 598, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 5, 40, 0, 0, 605, 606, 3, 68, 34, 0, 606, 607, 5, 37, 0, 0, 607, 631, 1, 0, 0, 0, 608, 612, 3, 8, 4, 0, 609, 611, 3, 66, 33, 0, 610, 609, 1, 0, 0, 0, 611, 614, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 615, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 615, 616, 5, 42, 0, 0, 616, 617, 3, 68, 34, 0, 617, 618, 5, 37, 0, 0, 618, 631, 1, 0, 0, 0, 619, 623, 3, 8, 4, 0, 620, 622, 3, 66, 33, 0, 621, 620, 1, 0, 0, 0, 622, 625, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 627, 5, 41, 0, 0, 627, 628, 3, 68, 34, 0, 628, 629, 5, 37, 0, 0, 629, 631, 1, 0, 0, 0, 630, 575, 1, 0, 0, 0, 630, 586, 1, 0, 0, 0, 630, 597, 1, 0, 0, 0, 630, 608, 1, 0, 0, 0, 630, 619, 1, 0, 0, 0, 631, 65, 1, 0, 0, 0, 632, 633, 5, 35, 0, 0, 633, 634, 3, 68, 34, 0, 634, 635, 5, 36, 0, 0, 635, 640, 1, 0, 0, 0, 636, 637, 5, 35, 0, 0, 637, 638, 5, 46, 0, 0, 638, 640, 5, 36, 0, 0, 639, 632, 1, 0, 0, 0, 639, 636, 1, 0, 0, 0, 640, 67, 1, 0, 0, 0, 641, 642, 6, 34, -1, 0, 642, 643, 5, 78, 0, 0, 643, 644, 5, 33, 0, 0, 644, 645, 3, 84, 42, 0, 645, 646, 5, 34, 0, 0, 646, 662, 1, 0, 0, 0, 647, 662, 3, 70, 35, 0, 648, 662, 5, 72, 0, 0, 649, 662, 5, 73, 0, 0, 650, 662, 5, 74, 0, 0, 651, 652, 5, 33, 0, 0, 652, 653, 3, 68, 34, 0, 653, 654, 5, 34, 0, 0, 654, 662, 1, 0, 0, 0, 655, 656, 5, 45, 0, 0, 656, 662, 3, 68, 34, 20, 657, 658, 5, 44, 0, 0, 658, 662, 3, 68, 34, 19, 659, 660, 5, 49, 0, 0, 660, 662, 3, 68, 34, 18, 661, 641, 1, 0, 0, 0, 661, 647, 1, 0, 0, 0, 661, 648, 1, 0, 0, 0, 661, 649, 1, 0, 0, 0, 661, 650, 1, 0, 0, 0, 661, 651, 1, 0, 0, 0, 661, 655, 1, 0, 0, 0, 661, 657, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 728, 1, 0, 0, 0, 663, 664, 10, 14, 0, 0, 664, 665, 5, 46, 0, 0, 665, 727, 3, 68, 34, 15, 666, 667, 10, 13, 0, 0, 667, 668, 5, 47, 0, 0, 668, 727, 3, 68, 34, 14, 669, 670, 10, 12, 0, 0, 670, 671, 5, 48, 0, 0, 671, 727, 3, 68, 34, 13, 672, 673, 10, 11, 0, 0, 673, 674, 5, 44, 0, 0, 674, 727, 3, 68, 34, 12, 675, 676, 10, 10, 0, 0, 676, 677, 5, 45, 0, 0, 677, 727, 3, 68, 34, 11, 678, 679, 10, 9, 0, 0, 679, 680, 5, 50, 0, 0, 680, 727, 3, 68, 34, 10, 681, 682, 10, 8, 0, 0, 682, 683, 5, 52, 0, 0, 683, 727, 3, 68, 34, 9, 684, 685, 10, 7, 0, 0, 685, 686, 5, 51, 0, 0, 686, 727, 3, 68, 34, 8, 687, 688, 10, 6, 0, 0, 688, 689, 5, 53, 0, 0, 689, 727, 3, 68, 34, 7, 690, 691, 10, 5, 0, 0, 691, 692, 5, 54, 0, 0, 692, 727, 3, 68, 34, 6, 693, 694, 10, 4, 0, 0, 694, 695, 5, 55, 0, 0, 695, 727, 3, 68, 34, 5, 696, 697, 10, 3, 0, 0, 697, 698, 5, 56, 0, 0, 698, 727, 3, 68, 34, 4, 699, 700, 10, 2, 0, 0, 700, 701, 5, 57, 0, 0, 701, 727, 3, 68, 34, 3, 702, 703, 10, 1, 0, 0, 703, 704, 5, 58, 0, 0, 704, 705, 3, 68, 34, 0, 705, 706, 5, 59, 0, 0, 706, 707, 3, 68, 34, 2, 707, 727, 1, 0, 0, 0, 708, 709, 10, 17, 0, 0, 709, 710, 5, 38, 0, 0, 710, 711, 5, 78, 0, 0, 711, 712, 5, 33, 0, 0, 712, 713, 3, 84, 42, 0, 713, 714, 5, 34, 0, 0, 714, 727, 1, 0, 0, 0, 715, 716, 10, 16, 0, 0, 716, 717, 5, 75, 0, 0, 717, 718, 5, 33, 0, 0, 718, 719, 3, 84, 42, 0, 719, 720, 5, 34, 0, 0, 720, 727, 1, 0, 0, 0, 721, 722, 10, 15, 0, 0, 722, 723, 5, 35, 0, 0, 723, 724, 3, 68, 34, 0, 724, 725, 5, 36, 0, 0, 725, 727, 1, 0, 0, 0, 726, 663, 1, 0, 0, 0, 726, 666, 1, 0, 0, 0, 726, 669, 1, 0, 0, 0, 726, 672, 1, 0, 0, 0, 726, 675, 1, 0, 0, 0, 726, 678, 1, 0, 0, 0, 726, 681, 1, 0, 0, 0, 726, 684, 1, 0, 0, 0, 726, 687, 1, 0, 0, 0, 726, 690, 1, 0, 0, 0, 726, 693, 1, 0, 0, 0, 726, 696, 1, 0, 0, 0, 726, 699, 1, 0, 0, 0, 726, 702, 1, 0, 0, 0, 726, 708, 1, 0, 0, 0, 726, 715, 1, 0, 0, 0, 726, 721, 1, 0, 0, 0, 727, 730, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 69, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 749, 5, 67, 0, 0, 732, 749, 5, 62, 0, 0, 733, 749, 5, 63, 0, 0, 734, 749, 5, 65, 0, 0, 735, 749, 5, 66, 0, 0, 736, 749, 5, 78, 0, 0, 737, 749, 5, 61, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 33, 0, 0, 740, 741, 3, 88, 44, 0, 741, 742, 5, 34, 0, 0, 742, 743, 5, 31, 0, 0, 743, 744, 3, 92, 46, 0, 744, 745, 5, 32, 0, 0, 745, 749, 1, 0, 0, 0, 746, 749, 3, 74, 37, 0, 747, 749, 3, 78, 39, 0, 748, 731, 1, 0, 0, 0, 748, 732, 1, 0, 0, 0, 748, 733, 1, 0, 0, 0, 748, 734, 1, 0, 0, 0, 748, 735, 1, 0, 0, 0, 748, 736, 1, 0, 0, 0, 748, 737, 1, 0, 0, 0, 748, 738, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 748, 747, 1, 0, 0, 0, 749, 71, 1, 0, 0, 0, 750, 751, 6, 36, -1, 0, 751, 752, 5, 33, 0, 0, 752, 753, 3, 72, 36, 0, 753, 754, 5, 34, 0, 0, 754, 759, 1, 0, 0, 0, 755, 756, 5, 49, 0, 0, 756, 759, 3, 72, 36, 2, 757, 759, 3, 8, 4, 0, 758, 750, 1, 0, 0, 0, 758, 755, 1, 0, 0, 0, 758, 757, 1, 0, 0, 0, 759, 768, 1, 0, 0, 0, 760, 761, 10, 4, 0, 0, 761, 762, 5, 56, 0, 0, 762, 767, 3, 72, 36, 5, 763, 764, 10, 3, 0, 0, 764, 765, 5, 57, 0, 0, 765, 767, 3, 72, 36, 4, 766, 760, 1, 0, 0, 0, 766, 763, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 73, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 5, 35, 0, 0, 772, 774, 3, 76, 38, 0, 773, 775, 5, 43, 0, 0, 774, 773, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 5, 36, 0, 0, 777, 75, 1, 0, 0, 0, 778, 780, 3, 68, 34, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 785, 1, 0, 0, 0, 781, 782, 5, 43, 0, 0, 782, 784, 3, 68, 34, 0, 783, 781, 1, 0, 0, 0, 784, 787, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 779, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 77, 1, 0, 0, 0, 790, 791, 5, 31, 0, 0, 791, 793, 3, 80, 40, 0, 792, 794, 5, 43, 0, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 5, 32, 0, 0, 796, 79, 1, 0, 0, 0, 797, 799, 3, 82, 41, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 804, 1, 0, 0, 0, 800, 801, 5, 43, 0, 0, 801, 803, 3, 82, 41, 0, 802, 800, 1, 0, 0, 0, 803, 806, 1, 0, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 798, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 81, 1, 0, 0, 0, 809, 810, 5, 78, 0, 0, 810, 811, 5, 38, 0, 0, 811, 816, 3, 68, 34, 0, 812, 813, 5, 66, 0, 0, 813, 814, 5, 38, 0, 0, 814, 816, 3, 68, 34, 0, 815, 809, 1, 0, 0, 0, 815, 812, 1, 0, 0, 0, 816, 83, 1, 0, 0, 0, 817, 819, 3, 86, 43, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 821, 5, 43, 0, 0, 821, 823, 3, 86, 43, 0, 822, 820, 1, 0, 0, 0, 823, 826, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 818, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 1, 0, 0, 0, 829, 831, 5, 43, 0, 0, 830, 829, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 85, 1, 0, 0, 0, 832, 833, 5, 72, 0, 0, 833, 834, 5, 38, 0, 0, 834, 837, 3, 68, 34, 0, 835, 837, 3, 68, 34, 0, 836, 832, 1, 0, 0, 0, 836, 835, 1, 0, 0, 0, 837, 87, 1, 0, 0, 0, 838, 840, 3, 90, 45, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 845, 1, 0, 0, 0, 841, 842, 5, 43, 0, 0, 842, 844, 3, 90, 45, 0, 843, 841, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 839, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 851, 1, 0, 0, 0, 850, 852, 5, 43, 0, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 89, 1, 0, 0, 0, 853, 858, 5, 72, 0, 0, 854, 855, 5, 72, 0, 0, 855, 856, 5, 38, 0, 0, 856, 858, 3, 68, 34, 0, 857, 853, 1, 0, 0, 0, 857, 854, 1, 0, 0, 0, 858, 91, 1, 0, 0, 0, 859, 861, 3, 94, 47, 0, 860, 859, 1, 0, 0, 0, 861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 93, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 872, 3, 12, 6, 0, 866, 872, 3, 96, 48, 0, 867, 872, 3, 104, 52, 0, 868, 872, 3, 112, 56, 0, 869, 872, 3, 118, 59, 0, 870, 872, 3, 124, 62, 0, 871, 865, 1, 0, 0, 0, 871, 866, 1, 0, 0, 0, 871, 867, 1, 0, 0, 0, 871, 868, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 870, 1, 0, 0, 0, 872, 95, 1, 0, 0, 0, 873, 874, 5, 5, 0, 0, 874, 875, 3, 68, 34, 0, 875, 879, 5, 31, 0, 0, 876, 878, 3, 94, 47, 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, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 884, 5, 32, 0, 0, 883, 885, 3, 98, 49, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 97, 1, 0, 0, 0, 886, 889, 3, 100, 50, 0, 887, 889, 3, 102, 51, 0, 888, 886, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 99, 1, 0, 0, 0, 890, 891, 5, 6, 0, 0, 891, 895, 5, 31, 0, 0, 892, 894, 3, 94, 47, 0, 893, 892, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 32, 0, 0, 899, 101, 1, 0, 0, 0, 900, 901, 5, 7, 0, 0, 901, 902, 3, 68, 34, 0, 902, 906, 5, 31, 0, 0, 903, 905, 3, 94, 47, 0, 904, 903, 1, 0, 0, 0, 905, 908, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 909, 911, 5, 32, 0, 0, 910, 912, 3, 98, 49, 0, 911, 910, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 103, 1, 0, 0, 0, 913, 914, 5, 23, 0, 0, 914, 915, 3, 68, 34, 0, 915, 916, 5, 37, 0, 0, 916, 105, 1, 0, 0, 0, 917, 918, 5, 22, 0, 0, 918, 919, 5, 78, 0, 0, 919, 920, 5, 33, 0, 0, 920, 921, 3, 84, 42, 0, 921, 922, 5, 34, 0, 0, 922, 107, 1, 0, 0, 0, 923, 924, 5, 22, 0, 0, 924, 925, 5, 78, 0, 0, 925, 926, 5, 33, 0, 0, 926, 927, 3, 84, 42, 0, 927, 928, 5, 34, 0, 0, 928, 932, 5, 31, 0, 0, 929, 931, 3, 48, 24, 0, 930, 929, 1, 0, 0, 0, 931, 934, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 935, 936, 5, 32, 0, 0, 936, 109, 1, 0, 0, 0, 937, 938, 5, 9, 0, 0, 938, 111, 1, 0, 0, 0, 939, 940, 5, 11, 0, 0, 940, 941, 5, 72, 0, 0, 941, 942, 5, 12, 0, 0, 942, 943, 3, 68, 34, 0, 943, 944, 5, 14, 0, 0, 944, 945, 3, 68, 34, 0, 945, 949, 5, 31, 0, 0, 946, 948, 3, 94, 47, 0, 947, 946, 1, 0, 0, 0, 948, 951, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 952, 953, 5, 32, 0, 0, 953, 970, 1, 0, 0, 0, 954, 955, 5, 11, 0, 0, 955, 956, 5, 72, 0, 0, 956, 957, 5, 12, 0, 0, 957, 958, 3, 68, 34, 0, 958, 959, 5, 13, 0, 0, 959, 960, 3, 68, 34, 0, 960, 964, 5, 31, 0, 0, 961, 963, 3, 94, 47, 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, 967, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 967, 968, 5, 32, 0, 0, 968, 970, 1, 0, 0, 0, 969, 939, 1, 0, 0, 0, 969, 954, 1, 0, 0, 0, 970, 113, 1, 0, 0, 0, 971, 972, 5, 11, 0, 0, 972, 973, 5, 72, 0, 0, 973, 974, 5, 12, 0, 0, 974, 975, 3, 68, 34, 0, 975, 976, 5, 14, 0, 0, 976, 977, 3, 68, 34, 0, 977, 981, 5, 31, 0, 0, 978, 980, 3, 2, 1, 0, 979, 978, 1, 0, 0, 0, 980, 983, 1, 0, 0, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 984, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 984, 985, 5, 32, 0, 0, 985, 1002, 1, 0, 0, 0, 986, 987, 5, 11, 0, 0, 987, 988, 5, 72, 0, 0, 988, 989, 5, 12, 0, 0, 989, 990, 3, 68, 34, 0, 990, 991, 5, 13, 0, 0, 991, 992, 3, 68, 34, 0, 992, 996, 5, 31, 0, 0, 993, 995, 3, 2, 1, 0, 994, 993, 1, 0, 0, 0, 995, 998, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 1, 0, 0, 0, 998, 996, 1, 0, 0, 0, 999, 1000, 5, 32, 0, 0, 1000, 1002, 1, 0, 0, 0, 1001, 971, 1, 0, 0, 0, 1001, 986, 1, 0, 0, 0, 1002, 115, 1, 0, 0, 0, 1003, 1004, 5, 11, 0, 0, 1004, 1005, 5, 72, 0, 0, 1005, 1006, 5, 12, 0, 0, 1006, 1007, 3, 68, 34, 0, 1007, 1008, 5, 14, 0, 0, 1008, 1009, 3, 68, 34, 0, 1009, 1013, 5, 31, 0, 0, 1010, 1012, 3, 48, 24, 0, 1011, 1010, 1, 0, 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1017, 5, 32, 0, 0, 1017, 1034, 1, 0, 0, 0, 1018, 1019, 5, 11, 0, 0, 1019, 1020, 5, 72, 0, 0, 1020, 1021, 5, 12, 0, 0, 1021, 1022, 3, 68, 34, 0, 1022, 1023, 5, 13, 0, 0, 1023, 1024, 3, 68, 34, 0, 1024, 1028, 5, 31, 0, 0, 1025, 1027, 3, 48, 24, 0, 1026, 1025, 1, 0, 0, 0, 1027, 1030, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1031, 1032, 5, 32, 0, 0, 1032, 1034, 1, 0, 0, 0, 1033, 1003, 1, 0, 0, 0, 1033, 1018, 1, 0, 0, 0, 1034, 117, 1, 0, 0, 0, 1035, 1038, 5, 15, 0, 0, 1036, 1037, 5, 72, 0, 0, 1037, 1039, 5, 43, 0, 0, 1038, 1036, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 5, 72, 0, 0, 1041, 1042, 5, 16, 0, 0, 1042, 1043, 3, 68, 34, 0, 1043, 1047, 5, 31, 0, 0, 1044, 1046, 3, 94, 47, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 32, 0, 0, 1051, 119, 1, 0, 0, 0, 1052, 1055, 5, 15, 0, 0, 1053, 1054, 5, 72, 0, 0, 1054, 1056, 5, 43, 0, 0, 1055, 1053, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 5, 72, 0, 0, 1058, 1059, 5, 16, 0, 0, 1059, 1060, 3, 68, 34, 0, 1060, 1064, 5, 31, 0, 0, 1061, 1063, 3, 2, 1, 0, 1062, 1061, 1, 0, 0, 0, 1063, 1066, 1, 0, 0, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1067, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1067, 1068, 5, 32, 0, 0, 1068, 121, 1, 0, 0, 0, 1069, 1072, 5, 15, 0, 0, 1070, 1071, 5, 72, 0, 0, 1071, 1073, 5, 43, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 5, 72, 0, 0, 1075, 1076, 5, 16, 0, 0, 1076, 1077, 3, 68, 34, 0, 1077, 1081, 5, 31, 0, 0, 1078, 1080, 3, 48, 24, 0, 1079, 1078, 1, 0, 0, 0, 1080, 1083, 1, 0, 0, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1084, 1085, 5, 32, 0, 0, 1085, 123, 1, 0, 0, 0, 1086, 1087, 5, 10, 0, 0, 1087, 1088, 3, 68, 34, 0, 1088, 1092, 5, 31, 0, 0, 1089, 1091, 3, 94, 47, 0, 1090, 1089, 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, 32, 0, 0, 1096, 125, 1, 0, 0, 0, 1097, 1098, 5, 10, 0, 0, 1098, 1099, 3, 68, 34, 0, 1099, 1103, 5, 31, 0, 0, 1100, 1102, 3, 2, 1, 0, 1101, 1100, 1, 0, 0, 0, 1102, 1105, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1107, 5, 32, 0, 0, 1107, 127, 1, 0, 0, 0, 1108, 1109, 5, 10, 0, 0, 1109, 1110, 3, 68, 34, 0, 1110, 1114, 5, 31, 0, 0, 1111, 1113, 3, 48, 24, 0, 1112, 1111, 1, 0, 0, 0, 1113, 1116, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1117, 1118, 5, 32, 0, 0, 1118, 129, 1, 0, 0, 0, 102, 133, 150, 161, 166, 176, 187, 198, 209, 220, 227, 246, 252, 280, 290, 316, 321, 325, 332, 343, 348, 358, 369, 377, 380, 395, 405, 431, 441, 443, 457, 467, 491, 498, 500, 506, 522, 530, 535, 539, 546, 557, 562, 579, 590, 601, 612, 623, 630, 639, 661, 726, 728, 748, 758, 766, 768, 774, 779, 785, 788, 793, 798, 804, 807, 815, 818, 824, 827, 830, 836, 839, 845, 848, 851, 857, 862, 871, 879, 884, 888, 895, 906, 911, 932, 949, 964, 969, 981, 996, 1001, 1013, 1028, 1033, 1038, 1047, 1055, 1064, 1072, 1081, 1092, 1103, 1114] \ No newline at end of file diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.tokens b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.tokens index d586317..29a2d4c 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.tokens +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parser.tokens @@ -6,133 +6,135 @@ PRE_IF=5 PRE_ELSE=6 PRE_ELSE_IF=7 MIXIN=8 -WHILE=9 -FOR=10 -FROM=11 -THROUGH=12 -TO=13 -EACH=14 -IN=15 -SET=16 -MERGE=17 -REQUIRE=18 -STAGE=19 -DEFINE_STAGE=20 -INCLUDE=21 -RETURN=22 -PATCH=23 -NEW=24 -BEFORE=25 -AFTER=26 -GLOBAL=27 -CREATE_CONFIG=28 -UPDATE_CONFIG=29 -LEFT_BRACE=30 -RIGHT_BRACE=31 -LEFT_PAREN=32 -RIGHT_PAREN=33 -LEFT_BRACKET=34 -RIGHT_BRACKET=35 -SEMICOLON=36 -COLON=37 -PLUS_COLON=38 -MINUS_COLON=39 -DIVIDE_COLON=40 -MULTIPLY_COLON=41 -COMMA=42 -ADD=43 -SUBTRACT=44 -MULTIPLY=45 -DIVIDE=46 -MODULUS=47 -NOT=48 -GREATER_THAN=49 -GREATER_THAN_EQUAL=50 -LESSER_THAN=51 -LESSER_THAN_EQUAL=52 -EQUAL_TO=53 -NOT_EQUAL_TO=54 -AND=55 -OR=56 -IF=57 -ELSE=58 -WITHOUT=59 -NONE=60 -TRUE=61 -FALSE=62 -HEX_NUMBER=63 -NUMBER=64 -STRING=65 -DELETE=66 -NAME=67 -STRING_NAME=68 -CLASS=69 -STRING_CLASS=70 -VARIABLE=71 -LOCALVARIABLE=72 -STRING_LOCALVARIABLE=73 -RULESET=74 -ENSURE=75 -STRING_ENSURE=76 -ELEMENT=77 +MIXIN_SLOT=9 +WHILE=10 +FOR=11 +FROM=12 +THROUGH=13 +TO=14 +EACH=15 +IN=16 +SET=17 +MERGE=18 +REQUIRE=19 +STAGE=20 +DEFINE_STAGE=21 +INCLUDE=22 +RETURN=23 +PATCH=24 +NEW=25 +BEFORE=26 +AFTER=27 +GLOBAL=28 +CREATE_CONFIG=29 +UPDATE_CONFIG=30 +LEFT_BRACE=31 +RIGHT_BRACE=32 +LEFT_PAREN=33 +RIGHT_PAREN=34 +LEFT_BRACKET=35 +RIGHT_BRACKET=36 +SEMICOLON=37 +COLON=38 +PLUS_COLON=39 +MINUS_COLON=40 +DIVIDE_COLON=41 +MULTIPLY_COLON=42 +COMMA=43 +ADD=44 +SUBTRACT=45 +MULTIPLY=46 +DIVIDE=47 +MODULUS=48 +NOT=49 +GREATER_THAN=50 +GREATER_THAN_EQUAL=51 +LESSER_THAN=52 +LESSER_THAN_EQUAL=53 +EQUAL_TO=54 +NOT_EQUAL_TO=55 +AND=56 +OR=57 +IF=58 +ELSE=59 +WITHOUT=60 +NONE=61 +TRUE=62 +FALSE=63 +HEX_NUMBER=64 +NUMBER=65 +STRING=66 +DELETE=67 +NAME=68 +STRING_NAME=69 +CLASS=70 +STRING_CLASS=71 +VARIABLE=72 +LOCALVARIABLE=73 +STRING_LOCALVARIABLE=74 +RULESET=75 +ENSURE=76 +STRING_ENSURE=77 +ELEMENT=78 '@use'=3 '@function'=4 '@if'=5 '@else'=6 '@else-if'=7 '@mixin'=8 -'@while'=9 -'@for'=10 -'from'=11 -'through'=12 -'to'=13 -'@each'=14 -'in'=15 -'@set'=16 -'@merge'=17 -'@require'=18 -'@stage'=19 -'@define-stage'=20 -'@include'=21 -'@return'=22 -'@patch'=23 -'@new'=24 -'@before'=25 -'@after'=26 -'@global'=27 -'@create-config'=28 -'@update-config'=29 -'{'=30 -'}'=31 -'('=32 -')'=33 -'['=34 -']'=35 -';'=36 -':'=37 -'+:'=38 -'-:'=39 -'/:'=40 -'*:'=41 -','=42 -'+'=43 -'-'=44 -'*'=45 -'/'=46 -'%'=47 -'not'=48 -'>'=49 -'>='=50 -'<'=51 -'<='=52 -'=='=53 -'!='=54 -'and'=55 -'or'=56 -'if'=57 -'else'=58 -'~'=59 -'null'=60 -'true'=61 -'false'=62 -'@delete'=66 +'@mixin-slot'=9 +'@while'=10 +'@for'=11 +'from'=12 +'through'=13 +'to'=14 +'@each'=15 +'in'=16 +'@set'=17 +'@merge'=18 +'@require'=19 +'@stage'=20 +'@define-stage'=21 +'@include'=22 +'@return'=23 +'@patch'=24 +'@new'=25 +'@before'=26 +'@after'=27 +'@global'=28 +'@create-config'=29 +'@update-config'=30 +'{'=31 +'}'=32 +'('=33 +')'=34 +'['=35 +']'=36 +';'=37 +':'=38 +'+:'=39 +'-:'=40 +'/:'=41 +'*:'=42 +','=43 +'+'=44 +'-'=45 +'*'=46 +'/'=47 +'%'=48 +'not'=49 +'>'=50 +'>='=51 +'<'=52 +'<='=53 +'=='=54 +'!='=55 +'and'=56 +'or'=57 +'if'=58 +'else'=59 +'~'=60 +'null'=61 +'true'=62 +'false'=63 +'@delete'=67 diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseListener.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseListener.cs index b9d7c26..2a5f9b5 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseListener.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseListener.cs @@ -2061,6 +2061,30 @@ public virtual void EnterMixin_include([NotNull] sassy_parser.Mixin_includeConte /// The parse tree. public virtual void ExitMixin_include([NotNull] sassy_parser.Mixin_includeContext context) { } /// + /// Enter a parse tree produced by . + /// The default implementation does nothing. + /// + /// The parse tree. + public virtual void EnterMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context) { } + /// + /// Exit a parse tree produced by . + /// The default implementation does nothing. + /// + /// The parse tree. + public virtual void ExitMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context) { } + /// + /// Enter a parse tree produced by . + /// The default implementation does nothing. + /// + /// The parse tree. + public virtual void EnterMixin_slot([NotNull] sassy_parser.Mixin_slotContext context) { } + /// + /// Exit a parse tree produced by . + /// The default implementation does nothing. + /// + /// The parse tree. + public virtual void ExitMixin_slot([NotNull] sassy_parser.Mixin_slotContext context) { } + /// /// Enter a parse tree produced by the for_to_loop /// labeled alternative in . /// The default implementation does nothing. diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseVisitor.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseVisitor.cs index 7bcc4a5..28fda2b 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseVisitor.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserBaseVisitor.cs @@ -1648,6 +1648,26 @@ public partial class sassy_parserBaseVisitor : AbstractParseTreeVisitor< /// The visitor result. public virtual Result VisitMixin_include([NotNull] sassy_parser.Mixin_includeContext context) { return VisitChildren(context); } /// + /// Visit a parse tree produced by . + /// + /// The default implementation returns the result of calling + /// on . + /// + /// + /// The parse tree. + /// The visitor result. + public virtual Result VisitMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context) { return VisitChildren(context); } + /// + /// Visit a parse tree produced by . + /// + /// The default implementation returns the result of calling + /// on . + /// + /// + /// The parse tree. + /// The visitor result. + public virtual Result VisitMixin_slot([NotNull] sassy_parser.Mixin_slotContext context) { return VisitChildren(context); } + /// /// Visit a parse tree produced by the for_to_loop /// labeled alternative in . /// diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserListener.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserListener.cs index 47beaa8..4a7f32b 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserListener.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserListener.cs @@ -1756,6 +1756,26 @@ public interface Isassy_parserListener : IParseTreeListener { /// The parse tree. void ExitMixin_include([NotNull] sassy_parser.Mixin_includeContext context); /// + /// Enter a parse tree produced by . + /// + /// The parse tree. + void EnterMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context); + /// + /// Exit a parse tree produced by . + /// + /// The parse tree. + void ExitMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context); + /// + /// Enter a parse tree produced by . + /// + /// The parse tree. + void EnterMixin_slot([NotNull] sassy_parser.Mixin_slotContext context); + /// + /// Exit a parse tree produced by . + /// + /// The parse tree. + void ExitMixin_slot([NotNull] sassy_parser.Mixin_slotContext context); + /// /// Enter a parse tree produced by the for_to_loop /// labeled alternative in . /// diff --git a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserVisitor.cs b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserVisitor.cs index 660a869..e0705b2 100644 --- a/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserVisitor.cs +++ b/src/PatchManager.SassyPatching/SassyPatchGrammar/sassy_parserVisitor.cs @@ -1045,6 +1045,18 @@ public interface Isassy_parserVisitor : IParseTreeVisitor { /// The visitor result. Result VisitMixin_include([NotNull] sassy_parser.Mixin_includeContext context); /// + /// Visit a parse tree produced by . + /// + /// The parse tree. + /// The visitor result. + Result VisitMixin_block_include([NotNull] sassy_parser.Mixin_block_includeContext context); + /// + /// Visit a parse tree produced by . + /// + /// The parse tree. + /// The visitor result. + Result VisitMixin_slot([NotNull] sassy_parser.Mixin_slotContext context); + /// /// Visit a parse tree produced by the for_to_loop /// labeled alternative in . /// diff --git a/src/PatchManager.SassyPatching/Transformer.cs b/src/PatchManager.SassyPatching/Transformer.cs index cbf7854..30a99d0 100644 --- a/src/PatchManager.SassyPatching/Transformer.cs +++ b/src/PatchManager.SassyPatching/Transformer.cs @@ -688,6 +688,16 @@ public override Node VisitMixin_include(sassy_parser.Mixin_includeContext contex new MixinInclude(context.GetCoordinate(), context.mixin.Text, context.args.argument().Select(Visit).Cast().ToList()); + + /// + public override Node VisitMixin_block_include(sassy_parser.Mixin_block_includeContext context) => + new MixinBlockInclude(context.GetCoordinate(), context.mixin.Text, + context.args.argument().Select(Visit).Cast().ToList(), + context.selector_statement().Select(Visit).ToList()); + + public override Node VisitMixin_slot(sassy_parser.Mixin_slotContext context) => + new MixinSlot(context.GetCoordinate()); + /// public override Node VisitArgument_without_default(sassy_parser.Argument_without_defaultContext context) => new Argument(context.GetCoordinate(), context.name.Text.TrimFirst()); @@ -806,4 +816,5 @@ public override Node VisitElement_string(sassy_parser.Element_stringContext cont public override Node VisitUpdate_config_label(sassy_parser.Update_config_labelContext context) => new ConfigUpdate( context.GetCoordinate(), Visit(context.priority) as Expression, context.label.GetStringValue(), null, Visit(context.config_update) as Expression); + } \ No newline at end of file