graphql 1.9.5 → 1.13.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of graphql might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/lib/generators/graphql/core.rb +21 -9
- data/lib/generators/graphql/enum_generator.rb +4 -10
- data/lib/generators/graphql/field_extractor.rb +31 -0
- data/lib/generators/graphql/input_generator.rb +50 -0
- data/lib/generators/graphql/install/mutation_root_generator.rb +34 -0
- data/lib/generators/graphql/install/templates/base_mutation.erb +10 -0
- data/lib/generators/graphql/{templates → install/templates}/mutation_type.erb +2 -0
- data/lib/generators/graphql/install_generator.rb +48 -8
- data/lib/generators/graphql/interface_generator.rb +7 -7
- data/lib/generators/graphql/loader_generator.rb +1 -0
- data/lib/generators/graphql/mutation_create_generator.rb +22 -0
- data/lib/generators/graphql/mutation_delete_generator.rb +22 -0
- data/lib/generators/graphql/mutation_generator.rb +6 -30
- data/lib/generators/graphql/mutation_update_generator.rb +22 -0
- data/lib/generators/graphql/object_generator.rb +28 -12
- data/lib/generators/graphql/orm_mutations_base.rb +40 -0
- data/lib/generators/graphql/relay.rb +63 -0
- data/lib/generators/graphql/relay_generator.rb +21 -0
- data/lib/generators/graphql/scalar_generator.rb +4 -2
- data/lib/generators/graphql/templates/base_argument.erb +6 -0
- data/lib/generators/graphql/templates/base_connection.erb +8 -0
- data/lib/generators/graphql/templates/base_edge.erb +8 -0
- data/lib/generators/graphql/templates/base_enum.erb +2 -0
- data/lib/generators/graphql/templates/base_field.erb +7 -0
- data/lib/generators/graphql/templates/base_input_object.erb +3 -0
- data/lib/generators/graphql/templates/base_interface.erb +4 -0
- data/lib/generators/graphql/templates/base_object.erb +3 -0
- data/lib/generators/graphql/templates/base_scalar.erb +2 -0
- data/lib/generators/graphql/templates/base_union.erb +2 -0
- data/lib/generators/graphql/templates/enum.erb +7 -1
- data/lib/generators/graphql/templates/graphql_controller.erb +21 -12
- data/lib/generators/graphql/templates/input.erb +9 -0
- data/lib/generators/graphql/templates/interface.erb +6 -2
- data/lib/generators/graphql/templates/loader.erb +2 -0
- data/lib/generators/graphql/templates/mutation.erb +3 -1
- data/lib/generators/graphql/templates/mutation_create.erb +20 -0
- data/lib/generators/graphql/templates/mutation_delete.erb +20 -0
- data/lib/generators/graphql/templates/mutation_update.erb +21 -0
- data/lib/generators/graphql/templates/node_type.erb +9 -0
- data/lib/generators/graphql/templates/object.erb +7 -3
- data/lib/generators/graphql/templates/query_type.erb +3 -3
- data/lib/generators/graphql/templates/scalar.erb +5 -1
- data/lib/generators/graphql/templates/schema.erb +23 -28
- data/lib/generators/graphql/templates/union.erb +6 -2
- data/lib/generators/graphql/type_generator.rb +47 -10
- data/lib/generators/graphql/union_generator.rb +5 -5
- data/lib/graphql/analysis/analyze_query.rb +7 -0
- data/lib/graphql/analysis/ast/analyzer.rb +34 -12
- data/lib/graphql/analysis/ast/field_usage.rb +29 -2
- data/lib/graphql/analysis/ast/max_query_complexity.rb +3 -3
- data/lib/graphql/analysis/ast/max_query_depth.rb +7 -3
- data/lib/graphql/analysis/ast/query_complexity.rb +179 -64
- data/lib/graphql/analysis/ast/query_depth.rb +16 -26
- data/lib/graphql/analysis/ast/visitor.rb +46 -32
- data/lib/graphql/analysis/ast.rb +23 -14
- data/lib/graphql/analysis/query_depth.rb +4 -17
- data/lib/graphql/argument.rb +16 -38
- data/lib/graphql/backtrace/inspect_result.rb +0 -1
- data/lib/graphql/backtrace/legacy_tracer.rb +56 -0
- data/lib/graphql/backtrace/table.rb +44 -5
- data/lib/graphql/backtrace/traced_error.rb +0 -1
- data/lib/graphql/backtrace/tracer.rb +40 -9
- data/lib/graphql/backtrace.rb +28 -19
- data/lib/graphql/backwards_compatibility.rb +2 -1
- data/lib/graphql/base_type.rb +11 -5
- data/lib/graphql/boolean_type.rb +1 -1
- data/lib/graphql/coercion_error.rb +8 -0
- data/lib/graphql/compatibility/execution_specification/specification_schema.rb +2 -2
- data/lib/graphql/compatibility/execution_specification.rb +1 -0
- data/lib/graphql/compatibility/lazy_execution_specification/lazy_schema.rb +1 -1
- data/lib/graphql/compatibility/lazy_execution_specification.rb +2 -0
- data/lib/graphql/compatibility/query_parser_specification/parse_error_specification.rb +5 -9
- data/lib/graphql/compatibility/query_parser_specification.rb +2 -0
- data/lib/graphql/compatibility/schema_parser_specification.rb +2 -0
- data/lib/graphql/dataloader/null_dataloader.rb +22 -0
- data/lib/graphql/dataloader/request.rb +19 -0
- data/lib/graphql/dataloader/request_all.rb +19 -0
- data/lib/graphql/dataloader/source.rb +155 -0
- data/lib/graphql/dataloader.rb +308 -0
- data/lib/graphql/date_encoding_error.rb +16 -0
- data/lib/graphql/define/assign_enum_value.rb +1 -1
- data/lib/graphql/define/assign_global_id_field.rb +2 -2
- data/lib/graphql/define/assign_object_field.rb +3 -3
- data/lib/graphql/define/defined_object_proxy.rb +3 -0
- data/lib/graphql/define/instance_definable.rb +65 -110
- data/lib/graphql/define/type_definer.rb +5 -5
- data/lib/graphql/deprecated_dsl.rb +18 -5
- data/lib/graphql/deprecation.rb +9 -0
- data/lib/graphql/directive/deprecated_directive.rb +1 -12
- data/lib/graphql/directive/include_directive.rb +1 -1
- data/lib/graphql/directive/skip_directive.rb +1 -1
- data/lib/graphql/directive.rb +9 -6
- data/lib/graphql/enum_type.rb +14 -74
- data/lib/graphql/execution/directive_checks.rb +2 -2
- data/lib/graphql/execution/errors.rb +163 -0
- data/lib/graphql/execution/execute.rb +10 -3
- data/lib/graphql/execution/instrumentation.rb +1 -1
- data/lib/graphql/execution/interpreter/argument_value.rb +28 -0
- data/lib/graphql/execution/interpreter/arguments.rb +88 -0
- data/lib/graphql/execution/interpreter/arguments_cache.rb +105 -0
- data/lib/graphql/execution/interpreter/handles_raw_value.rb +18 -0
- data/lib/graphql/execution/interpreter/resolve.rb +37 -25
- data/lib/graphql/execution/interpreter/runtime.rb +737 -376
- data/lib/graphql/execution/interpreter.rb +42 -19
- data/lib/graphql/execution/lazy/lazy_method_map.rb +4 -0
- data/lib/graphql/execution/lazy.rb +5 -1
- data/lib/graphql/execution/lookahead.rb +39 -114
- data/lib/graphql/execution/multiplex.rb +58 -29
- data/lib/graphql/execution.rb +1 -0
- data/lib/graphql/execution_error.rb +3 -2
- data/lib/graphql/field.rb +15 -119
- data/lib/graphql/filter.rb +1 -1
- data/lib/graphql/float_type.rb +1 -1
- data/lib/graphql/function.rb +6 -31
- data/lib/graphql/id_type.rb +1 -1
- data/lib/graphql/input_object_type.rb +11 -26
- data/lib/graphql/int_type.rb +1 -1
- data/lib/graphql/integer_decoding_error.rb +17 -0
- data/lib/graphql/integer_encoding_error.rb +18 -2
- data/lib/graphql/interface_type.rb +10 -24
- data/lib/graphql/internal_representation/document.rb +2 -2
- data/lib/graphql/internal_representation/rewrite.rb +1 -1
- data/lib/graphql/internal_representation/scope.rb +2 -2
- data/lib/graphql/internal_representation/visit.rb +2 -2
- data/lib/graphql/introspection/base_object.rb +2 -5
- data/lib/graphql/introspection/directive_location_enum.rb +2 -2
- data/lib/graphql/introspection/directive_type.rb +12 -6
- data/lib/graphql/introspection/entry_points.rb +9 -8
- data/lib/graphql/introspection/enum_value_type.rb +2 -2
- data/lib/graphql/introspection/field_type.rb +9 -5
- data/lib/graphql/introspection/input_value_type.rb +41 -11
- data/lib/graphql/introspection/introspection_query.rb +6 -92
- data/lib/graphql/introspection/schema_type.rb +13 -12
- data/lib/graphql/introspection/type_type.rb +27 -17
- data/lib/graphql/introspection.rb +99 -0
- data/lib/graphql/invalid_null_error.rb +18 -0
- data/lib/graphql/language/block_string.rb +22 -7
- data/lib/graphql/language/cache.rb +37 -0
- data/lib/graphql/language/definition_slice.rb +21 -10
- data/lib/graphql/language/document_from_schema_definition.rb +126 -67
- data/lib/graphql/language/lexer.rb +180 -141
- data/lib/graphql/language/lexer.rl +75 -51
- data/lib/graphql/language/nodes.rb +92 -108
- data/lib/graphql/language/parser.rb +933 -897
- data/lib/graphql/language/parser.y +129 -103
- data/lib/graphql/language/printer.rb +11 -2
- data/lib/graphql/language/sanitized_printer.rb +222 -0
- data/lib/graphql/language/token.rb +1 -1
- data/lib/graphql/language/visitor.rb +11 -8
- data/lib/graphql/language.rb +3 -1
- data/lib/graphql/name_validator.rb +2 -7
- data/lib/graphql/non_null_type.rb +0 -10
- data/lib/graphql/object_type.rb +47 -58
- data/lib/graphql/pagination/active_record_relation_connection.rb +85 -0
- data/lib/graphql/pagination/array_connection.rb +77 -0
- data/lib/graphql/pagination/connection.rb +226 -0
- data/lib/graphql/pagination/connections.rb +160 -0
- data/lib/graphql/pagination/mongoid_relation_connection.rb +25 -0
- data/lib/graphql/pagination/relation_connection.rb +226 -0
- data/lib/graphql/pagination/sequel_dataset_connection.rb +28 -0
- data/lib/graphql/pagination.rb +6 -0
- data/lib/graphql/parse_error.rb +0 -1
- data/lib/graphql/query/arguments.rb +29 -19
- data/lib/graphql/query/arguments_cache.rb +1 -2
- data/lib/graphql/query/context.rb +81 -14
- data/lib/graphql/query/executor.rb +0 -1
- data/lib/graphql/query/fingerprint.rb +26 -0
- data/lib/graphql/query/input_validation_result.rb +32 -6
- data/lib/graphql/query/literal_input.rb +31 -10
- data/lib/graphql/query/null_context.rb +28 -8
- data/lib/graphql/query/serial_execution/field_resolution.rb +1 -1
- data/lib/graphql/query/serial_execution.rb +1 -0
- data/lib/graphql/query/validation_pipeline.rb +6 -4
- data/lib/graphql/query/variable_validation_error.rb +3 -3
- data/lib/graphql/query/variables.rb +51 -9
- data/lib/graphql/query.rb +97 -23
- data/lib/graphql/railtie.rb +9 -1
- data/lib/graphql/rake_task/validate.rb +3 -0
- data/lib/graphql/rake_task.rb +12 -9
- data/lib/graphql/relay/array_connection.rb +11 -13
- data/lib/graphql/relay/base_connection.rb +33 -16
- data/lib/graphql/relay/connection_instrumentation.rb +4 -4
- data/lib/graphql/relay/connection_type.rb +18 -4
- data/lib/graphql/relay/edge_type.rb +1 -0
- data/lib/graphql/relay/edges_instrumentation.rb +1 -2
- data/lib/graphql/relay/global_id_resolve.rb +1 -2
- data/lib/graphql/relay/mutation.rb +3 -87
- data/lib/graphql/relay/node.rb +5 -2
- data/lib/graphql/relay/page_info.rb +1 -1
- data/lib/graphql/relay/range_add.rb +27 -9
- data/lib/graphql/relay/relation_connection.rb +17 -15
- data/lib/graphql/relay/type_extensions.rb +2 -0
- data/lib/graphql/rubocop/graphql/base_cop.rb +36 -0
- data/lib/graphql/rubocop/graphql/default_null_true.rb +43 -0
- data/lib/graphql/rubocop/graphql/default_required_true.rb +43 -0
- data/lib/graphql/rubocop.rb +4 -0
- data/lib/graphql/scalar_type.rb +18 -62
- data/lib/graphql/schema/addition.rb +247 -0
- data/lib/graphql/schema/argument.rb +289 -11
- data/lib/graphql/schema/base_64_bp.rb +3 -2
- data/lib/graphql/schema/base_64_encoder.rb +2 -0
- data/lib/graphql/schema/build_from_definition/resolve_map/default_resolve.rb +1 -1
- data/lib/graphql/schema/build_from_definition/resolve_map.rb +13 -5
- data/lib/graphql/schema/build_from_definition.rb +323 -203
- data/lib/graphql/schema/built_in_types.rb +5 -5
- data/lib/graphql/schema/default_type_error.rb +2 -0
- data/lib/graphql/schema/directive/deprecated.rb +18 -0
- data/lib/graphql/schema/directive/feature.rb +2 -2
- data/lib/graphql/schema/directive/flagged.rb +57 -0
- data/lib/graphql/schema/directive/include.rb +2 -2
- data/lib/graphql/schema/directive/skip.rb +2 -2
- data/lib/graphql/schema/directive/transform.rb +14 -2
- data/lib/graphql/schema/directive.rb +136 -6
- data/lib/graphql/schema/enum.rb +121 -12
- data/lib/graphql/schema/enum_value.rb +23 -6
- data/lib/graphql/schema/field/connection_extension.rb +46 -20
- data/lib/graphql/schema/field/scope_extension.rb +1 -1
- data/lib/graphql/schema/field.rb +515 -191
- data/lib/graphql/schema/field_extension.rb +89 -2
- data/lib/graphql/schema/find_inherited_value.rb +36 -0
- data/lib/graphql/schema/finder.rb +16 -14
- data/lib/graphql/schema/input_object.rb +178 -34
- data/lib/graphql/schema/interface.rb +35 -25
- data/lib/graphql/schema/introspection_system.rb +111 -35
- data/lib/graphql/schema/late_bound_type.rb +3 -2
- data/lib/graphql/schema/list.rb +65 -1
- data/lib/graphql/schema/loader.rb +147 -97
- data/lib/graphql/schema/member/accepts_definition.rb +15 -3
- data/lib/graphql/schema/member/base_dsl_methods.rb +40 -45
- data/lib/graphql/schema/member/build_type.rb +19 -8
- data/lib/graphql/schema/member/cached_graphql_definition.rb +34 -2
- data/lib/graphql/schema/member/has_arguments.rb +212 -22
- data/lib/graphql/schema/member/has_ast_node.rb +20 -0
- data/lib/graphql/schema/member/has_deprecation_reason.rb +25 -0
- data/lib/graphql/schema/member/has_directives.rb +98 -0
- data/lib/graphql/schema/member/has_fields.rb +113 -28
- data/lib/graphql/schema/member/has_interfaces.rb +100 -0
- data/lib/graphql/schema/member/has_unresolved_type_error.rb +15 -0
- data/lib/graphql/schema/member/has_validators.rb +31 -0
- data/lib/graphql/schema/member/instrumentation.rb +6 -2
- data/lib/graphql/schema/member/relay_shortcuts.rb +2 -2
- data/lib/graphql/schema/member/type_system_helpers.rb +3 -3
- data/lib/graphql/schema/member/validates_input.rb +33 -0
- data/lib/graphql/schema/member.rb +11 -0
- data/lib/graphql/schema/middleware_chain.rb +1 -1
- data/lib/graphql/schema/mutation.rb +5 -1
- data/lib/graphql/schema/non_null.rb +37 -1
- data/lib/graphql/schema/object.rb +52 -37
- data/lib/graphql/schema/possible_types.rb +12 -7
- data/lib/graphql/schema/printer.rb +17 -34
- data/lib/graphql/schema/relay_classic_mutation.rb +51 -7
- data/lib/graphql/schema/resolver/has_payload_type.rb +36 -5
- data/lib/graphql/schema/resolver.rb +159 -59
- data/lib/graphql/schema/scalar.rb +43 -3
- data/lib/graphql/schema/subscription.rb +83 -25
- data/lib/graphql/schema/timeout.rb +123 -0
- data/lib/graphql/schema/timeout_middleware.rb +6 -3
- data/lib/graphql/schema/traversal.rb +2 -2
- data/lib/graphql/schema/type_expression.rb +21 -13
- data/lib/graphql/schema/type_membership.rb +48 -0
- data/lib/graphql/schema/union.rb +67 -6
- data/lib/graphql/schema/unique_within_type.rb +1 -2
- data/lib/graphql/schema/validation.rb +30 -8
- data/lib/graphql/schema/validator/allow_blank_validator.rb +29 -0
- data/lib/graphql/schema/validator/allow_null_validator.rb +26 -0
- data/lib/graphql/schema/validator/exclusion_validator.rb +33 -0
- data/lib/graphql/schema/validator/format_validator.rb +48 -0
- data/lib/graphql/schema/validator/inclusion_validator.rb +35 -0
- data/lib/graphql/schema/validator/length_validator.rb +59 -0
- data/lib/graphql/schema/validator/numericality_validator.rb +82 -0
- data/lib/graphql/schema/validator/required_validator.rb +82 -0
- data/lib/graphql/schema/validator.rb +171 -0
- data/lib/graphql/schema/warden.rb +263 -30
- data/lib/graphql/schema/wrapper.rb +1 -1
- data/lib/graphql/schema.rb +1016 -256
- data/lib/graphql/static_validation/all_rules.rb +2 -0
- data/lib/graphql/static_validation/base_visitor.rb +17 -10
- data/lib/graphql/static_validation/definition_dependencies.rb +21 -13
- data/lib/graphql/static_validation/error.rb +3 -1
- data/lib/graphql/static_validation/literal_validator.rb +52 -27
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible.rb +46 -79
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb +23 -6
- data/lib/graphql/static_validation/rules/arguments_are_defined.rb +35 -26
- data/lib/graphql/static_validation/rules/arguments_are_defined_error.rb +4 -2
- data/lib/graphql/static_validation/rules/directives_are_defined.rb +1 -1
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +2 -2
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +4 -4
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +5 -5
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +105 -55
- data/lib/graphql/static_validation/rules/fields_will_merge_error.rb +25 -4
- data/lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb +3 -3
- data/lib/graphql/static_validation/rules/fragments_are_finite.rb +2 -2
- data/lib/graphql/static_validation/rules/input_object_names_are_unique.rb +30 -0
- data/lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb +30 -0
- data/lib/graphql/static_validation/rules/query_root_exists.rb +17 -0
- data/lib/graphql/static_validation/rules/query_root_exists_error.rb +26 -0
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +5 -3
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +9 -10
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +1 -1
- data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb +12 -13
- data/lib/graphql/static_validation/rules/variable_usages_are_allowed.rb +19 -14
- data/lib/graphql/static_validation/rules/variables_are_input_types.rb +1 -1
- data/lib/graphql/static_validation/rules/variables_are_used_and_defined.rb +5 -3
- data/lib/graphql/static_validation/type_stack.rb +2 -2
- data/lib/graphql/static_validation/validation_context.rb +13 -3
- data/lib/graphql/static_validation/validation_timeout_error.rb +25 -0
- data/lib/graphql/static_validation/validator.rb +43 -9
- data/lib/graphql/static_validation.rb +1 -0
- data/lib/graphql/string_encoding_error.rb +13 -3
- data/lib/graphql/string_type.rb +1 -1
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +123 -22
- data/lib/graphql/subscriptions/broadcast_analyzer.rb +81 -0
- data/lib/graphql/subscriptions/default_subscription_resolve_extension.rb +21 -0
- data/lib/graphql/subscriptions/event.rb +94 -26
- data/lib/graphql/subscriptions/instrumentation.rb +10 -6
- data/lib/graphql/subscriptions/serialize.rb +53 -6
- data/lib/graphql/subscriptions/subscription_root.rb +15 -5
- data/lib/graphql/subscriptions.rb +122 -54
- data/lib/graphql/tracing/active_support_notifications_tracing.rb +8 -17
- data/lib/graphql/tracing/appoptics_tracing.rb +173 -0
- data/lib/graphql/tracing/appsignal_tracing.rb +23 -0
- data/lib/graphql/tracing/data_dog_tracing.rb +32 -2
- data/lib/graphql/tracing/new_relic_tracing.rb +9 -12
- data/lib/graphql/tracing/notifications_tracing.rb +59 -0
- data/lib/graphql/tracing/platform_tracing.rb +66 -7
- data/lib/graphql/tracing/prometheus_tracing/graphql_collector.rb +4 -1
- data/lib/graphql/tracing/prometheus_tracing.rb +8 -0
- data/lib/graphql/tracing/scout_tracing.rb +19 -0
- data/lib/graphql/tracing/skylight_tracing.rb +9 -0
- data/lib/graphql/tracing/statsd_tracing.rb +42 -0
- data/lib/graphql/tracing.rb +15 -35
- data/lib/graphql/types/big_int.rb +5 -1
- data/lib/graphql/types/int.rb +10 -3
- data/lib/graphql/types/iso_8601_date.rb +42 -0
- data/lib/graphql/types/iso_8601_date_time.rb +32 -8
- data/lib/graphql/types/relay/base_connection.rb +6 -88
- data/lib/graphql/types/relay/base_edge.rb +2 -37
- data/lib/graphql/types/relay/connection_behaviors.rb +174 -0
- data/lib/graphql/types/relay/default_relay.rb +31 -0
- data/lib/graphql/types/relay/edge_behaviors.rb +64 -0
- data/lib/graphql/types/relay/has_node_field.rb +41 -0
- data/lib/graphql/types/relay/has_nodes_field.rb +41 -0
- data/lib/graphql/types/relay/node.rb +2 -4
- data/lib/graphql/types/relay/node_behaviors.rb +15 -0
- data/lib/graphql/types/relay/node_field.rb +4 -23
- data/lib/graphql/types/relay/nodes_field.rb +16 -18
- data/lib/graphql/types/relay/page_info.rb +2 -14
- data/lib/graphql/types/relay/page_info_behaviors.rb +25 -0
- data/lib/graphql/types/relay.rb +11 -3
- data/lib/graphql/types/string.rb +8 -2
- data/lib/graphql/types.rb +1 -0
- data/lib/graphql/unauthorized_error.rb +2 -2
- data/lib/graphql/union_type.rb +61 -46
- data/lib/graphql/unresolved_type_error.rb +2 -2
- data/lib/graphql/upgrader/member.rb +150 -112
- data/lib/graphql/upgrader/schema.rb +1 -0
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +89 -18
- data/readme.md +4 -7
- metadata +115 -703
- data/lib/graphql/execution/interpreter/hash_response.rb +0 -46
- data/lib/graphql/literal_validation_error.rb +0 -6
- data/lib/graphql/types/relay/base_field.rb +0 -22
- data/lib/graphql/types/relay/base_interface.rb +0 -29
- data/lib/graphql/types/relay/base_object.rb +0 -26
- data/spec/dummy/Gemfile +0 -12
- data/spec/dummy/Gemfile.lock +0 -157
- data/spec/dummy/README.md +0 -24
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/assets/config/manifest.js +0 -1
- data/spec/dummy/app/assets/javascripts/application.js +0 -66
- data/spec/dummy/app/channels/application_cable/channel.rb +0 -5
- data/spec/dummy/app/channels/application_cable/connection.rb +0 -5
- data/spec/dummy/app/channels/graphql_channel.rb +0 -116
- data/spec/dummy/app/controllers/application_controller.rb +0 -4
- data/spec/dummy/app/controllers/pages_controller.rb +0 -5
- data/spec/dummy/app/helpers/application_helper.rb +0 -3
- data/spec/dummy/app/jobs/application_job.rb +0 -3
- data/spec/dummy/app/views/layouts/application.html.erb +0 -12
- data/spec/dummy/app/views/pages/show.html +0 -16
- data/spec/dummy/bin/bundle +0 -4
- data/spec/dummy/bin/rails +0 -5
- data/spec/dummy/bin/rake +0 -5
- data/spec/dummy/bin/setup +0 -31
- data/spec/dummy/bin/update +0 -27
- data/spec/dummy/bin/yarn +0 -12
- data/spec/dummy/config/application.rb +0 -30
- data/spec/dummy/config/boot.rb +0 -4
- data/spec/dummy/config/cable.yml +0 -10
- data/spec/dummy/config/environment.rb +0 -6
- data/spec/dummy/config/environments/development.rb +0 -40
- data/spec/dummy/config/environments/production.rb +0 -76
- data/spec/dummy/config/environments/test.rb +0 -37
- data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -9
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -8
- data/spec/dummy/config/initializers/cookies_serializer.rb +0 -6
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -5
- data/spec/dummy/config/initializers/inflections.rb +0 -17
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -10
- data/spec/dummy/config/locales/en.yml +0 -33
- data/spec/dummy/config/puma.rb +0 -57
- data/spec/dummy/config/routes.rb +0 -4
- data/spec/dummy/config/secrets.yml +0 -32
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/log/test.log +0 -199
- data/spec/dummy/package.json +0 -5
- data/spec/dummy/public/404.html +0 -67
- data/spec/dummy/public/422.html +0 -67
- data/spec/dummy/public/500.html +0 -66
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/robots.txt +0 -1
- data/spec/dummy/test/application_system_test_case.rb +0 -6
- data/spec/dummy/test/system/action_cable_subscription_test.rb +0 -45
- data/spec/dummy/test/test_helper.rb +0 -4
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4w/4wzXRZrAkwKdgYaSE0pid5eB-fer8vSfSku_NPg4rMA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7I/7IHVBiJT06QSpgLpLoJIxboQ0B-D_tMTxsvoezBTV3Q.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AK/AKzz1u6bGb4auXcrObA_g5LL-oV0ejNGa448AgAi_WQ.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ET/ETW4uxvaYpruL8y6_ZptUH82ZowMaHIqvg5WexBFdEM.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F1/F1TWpjjyA56k9Z90n5B3xRn7DUdGjX73QCkYC6k07JQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ms/MsKSimH_UCB-H1tLvDABDHuvGciuoW6kVqQWDrXU5FQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mt/Mtci-Kim50aPOmeClD4AIicKn1d1WJ0n454IjSd94sk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QH/QHt3Tc1Y6M66Oo_pDuMyWrQNs4Pp3SMeZR5K1wJj2Ts.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XU/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZI/ZIof7mZxWWCnraIFOCuV6a8QRWzKJXJnx2Xd7C0ZyX0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGc_puuPS5pZKgUcy1Y_i1L6jl5UtsiIrMH59rTzR6c.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/df/dfro_B6bx3KP1Go-7jEOqqZ2j4hVRseXIc3es9PKQno.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jO1DfbqnG0mTULsjJJANc3fefrG2zt7DIMmcptMT628.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pE7gO6pQ-z187Swb4hT554wmqsq-cNzgPWLrCz-LQQQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r9/r9iU1l58a6rxkZSW5RSC52_tD-_UQuHxoMVnkfJ7Mhs.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xi/xitPPFfPIyDMpaznV0sBBcw8eSCV8PJcLLWin78sCgE.cache +0 -0
- data/spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png +0 -0
- data/spec/fixtures/upgrader/account.original.rb +0 -19
- data/spec/fixtures/upgrader/account.transformed.rb +0 -20
- data/spec/fixtures/upgrader/blame_range.original.rb +0 -43
- data/spec/fixtures/upgrader/blame_range.transformed.rb +0 -30
- data/spec/fixtures/upgrader/date_time.original.rb +0 -24
- data/spec/fixtures/upgrader/date_time.transformed.rb +0 -23
- data/spec/fixtures/upgrader/delete_project.original.rb +0 -28
- data/spec/fixtures/upgrader/delete_project.transformed.rb +0 -27
- data/spec/fixtures/upgrader/gist_order_field.original.rb +0 -14
- data/spec/fixtures/upgrader/gist_order_field.transformed.rb +0 -13
- data/spec/fixtures/upgrader/increment_count.original.rb +0 -59
- data/spec/fixtures/upgrader/increment_count.transformed.rb +0 -50
- data/spec/fixtures/upgrader/photo.original.rb +0 -10
- data/spec/fixtures/upgrader/photo.transformed.rb +0 -12
- data/spec/fixtures/upgrader/release_order.original.rb +0 -15
- data/spec/fixtures/upgrader/release_order.transformed.rb +0 -14
- data/spec/fixtures/upgrader/starrable.original.rb +0 -49
- data/spec/fixtures/upgrader/starrable.transformed.rb +0 -46
- data/spec/fixtures/upgrader/subscribable.original.rb +0 -55
- data/spec/fixtures/upgrader/subscribable.transformed.rb +0 -51
- data/spec/fixtures/upgrader/type_x.original.rb +0 -65
- data/spec/fixtures/upgrader/type_x.transformed.rb +0 -56
- data/spec/graphql/analysis/analyze_query_spec.rb +0 -272
- data/spec/graphql/analysis/ast/field_usage_spec.rb +0 -51
- data/spec/graphql/analysis/ast/max_query_complexity_spec.rb +0 -120
- data/spec/graphql/analysis/ast/max_query_depth_spec.rb +0 -114
- data/spec/graphql/analysis/ast/query_complexity_spec.rb +0 -299
- data/spec/graphql/analysis/ast/query_depth_spec.rb +0 -108
- data/spec/graphql/analysis/ast_spec.rb +0 -269
- data/spec/graphql/analysis/field_usage_spec.rb +0 -62
- data/spec/graphql/analysis/max_query_complexity_spec.rb +0 -102
- data/spec/graphql/analysis/max_query_depth_spec.rb +0 -101
- data/spec/graphql/analysis/query_complexity_spec.rb +0 -301
- data/spec/graphql/analysis/query_depth_spec.rb +0 -81
- data/spec/graphql/argument_spec.rb +0 -159
- data/spec/graphql/authorization_spec.rb +0 -974
- data/spec/graphql/backtrace_spec.rb +0 -206
- data/spec/graphql/base_type_spec.rb +0 -171
- data/spec/graphql/boolean_type_spec.rb +0 -21
- data/spec/graphql/compatibility/execution_specification_spec.rb +0 -4
- data/spec/graphql/compatibility/lazy_execution_specification_spec.rb +0 -4
- data/spec/graphql/compatibility/query_parser_specification_spec.rb +0 -6
- data/spec/graphql/compatibility/schema_parser_specification_spec.rb +0 -6
- data/spec/graphql/define/assign_argument_spec.rb +0 -61
- data/spec/graphql/define/instance_definable_spec.rb +0 -203
- data/spec/graphql/directive/skip_directive_spec.rb +0 -9
- data/spec/graphql/directive_spec.rb +0 -295
- data/spec/graphql/enum_type_spec.rb +0 -158
- data/spec/graphql/execution/execute_spec.rb +0 -303
- data/spec/graphql/execution/instrumentation_spec.rb +0 -184
- data/spec/graphql/execution/interpreter_spec.rb +0 -485
- data/spec/graphql/execution/lazy/lazy_method_map_spec.rb +0 -57
- data/spec/graphql/execution/lazy_spec.rb +0 -247
- data/spec/graphql/execution/lookahead_spec.rb +0 -390
- data/spec/graphql/execution/multiplex_spec.rb +0 -211
- data/spec/graphql/execution/typecast_spec.rb +0 -47
- data/spec/graphql/execution_error_spec.rb +0 -325
- data/spec/graphql/field_spec.rb +0 -246
- data/spec/graphql/float_type_spec.rb +0 -16
- data/spec/graphql/function_spec.rb +0 -152
- data/spec/graphql/id_type_spec.rb +0 -33
- data/spec/graphql/input_object_type_spec.rb +0 -25
- data/spec/graphql/int_type_spec.rb +0 -35
- data/spec/graphql/interface_type_spec.rb +0 -196
- data/spec/graphql/internal_representation/print_spec.rb +0 -41
- data/spec/graphql/internal_representation/rewrite_spec.rb +0 -376
- data/spec/graphql/introspection/directive_type_spec.rb +0 -61
- data/spec/graphql/introspection/input_value_type_spec.rb +0 -144
- data/spec/graphql/introspection/introspection_query_spec.rb +0 -59
- data/spec/graphql/introspection/schema_type_spec.rb +0 -56
- data/spec/graphql/introspection/type_type_spec.rb +0 -155
- data/spec/graphql/language/block_string_spec.rb +0 -70
- data/spec/graphql/language/definition_slice_spec.rb +0 -226
- data/spec/graphql/language/document_from_schema_definition_spec.rb +0 -770
- data/spec/graphql/language/equality_spec.rb +0 -84
- data/spec/graphql/language/generation_spec.rb +0 -38
- data/spec/graphql/language/lexer_spec.rb +0 -135
- data/spec/graphql/language/nodes_spec.rb +0 -67
- data/spec/graphql/language/parser_spec.rb +0 -183
- data/spec/graphql/language/printer_spec.rb +0 -215
- data/spec/graphql/language/visitor_spec.rb +0 -419
- data/spec/graphql/list_type_spec.rb +0 -57
- data/spec/graphql/non_null_type_spec.rb +0 -48
- data/spec/graphql/object_type_spec.rb +0 -197
- data/spec/graphql/query/arguments_spec.rb +0 -346
- data/spec/graphql/query/context_spec.rb +0 -292
- data/spec/graphql/query/executor_spec.rb +0 -341
- data/spec/graphql/query/literal_input_spec.rb +0 -91
- data/spec/graphql/query/result_spec.rb +0 -29
- data/spec/graphql/query/serial_execution/value_resolution_spec.rb +0 -109
- data/spec/graphql/query_spec.rb +0 -800
- data/spec/graphql/rake_task_spec.rb +0 -59
- data/spec/graphql/scalar_type_spec.rb +0 -66
- data/spec/graphql/schema/argument_spec.rb +0 -152
- data/spec/graphql/schema/build_from_definition_spec.rb +0 -1187
- data/spec/graphql/schema/catchall_middleware_spec.rb +0 -35
- data/spec/graphql/schema/directive/feature_spec.rb +0 -81
- data/spec/graphql/schema/directive/transform_spec.rb +0 -39
- data/spec/graphql/schema/enum_spec.rb +0 -83
- data/spec/graphql/schema/enum_value_spec.rb +0 -24
- data/spec/graphql/schema/field_extension_spec.rb +0 -137
- data/spec/graphql/schema/field_spec.rb +0 -301
- data/spec/graphql/schema/finder_spec.rb +0 -135
- data/spec/graphql/schema/input_object_spec.rb +0 -347
- data/spec/graphql/schema/instrumentation_spec.rb +0 -43
- data/spec/graphql/schema/interface_spec.rb +0 -215
- data/spec/graphql/schema/introspection_system_spec.rb +0 -56
- data/spec/graphql/schema/list_spec.rb +0 -46
- data/spec/graphql/schema/loader_spec.rb +0 -286
- data/spec/graphql/schema/member/accepts_definition_spec.rb +0 -115
- data/spec/graphql/schema/member/build_type_spec.rb +0 -63
- data/spec/graphql/schema/member/scoped_spec.rb +0 -217
- data/spec/graphql/schema/member/type_system_helpers_spec.rb +0 -63
- data/spec/graphql/schema/middleware_chain_spec.rb +0 -57
- data/spec/graphql/schema/mutation_spec.rb +0 -150
- data/spec/graphql/schema/non_null_spec.rb +0 -46
- data/spec/graphql/schema/object_spec.rb +0 -315
- data/spec/graphql/schema/printer_spec.rb +0 -869
- data/spec/graphql/schema/relay_classic_mutation_spec.rb +0 -252
- data/spec/graphql/schema/rescue_middleware_spec.rb +0 -88
- data/spec/graphql/schema/resolver_spec.rb +0 -714
- data/spec/graphql/schema/scalar_spec.rb +0 -101
- data/spec/graphql/schema/subscription_spec.rb +0 -440
- data/spec/graphql/schema/timeout_middleware_spec.rb +0 -188
- data/spec/graphql/schema/traversal_spec.rb +0 -222
- data/spec/graphql/schema/type_expression_spec.rb +0 -39
- data/spec/graphql/schema/union_spec.rb +0 -72
- data/spec/graphql/schema/unique_within_type_spec.rb +0 -44
- data/spec/graphql/schema/validation_spec.rb +0 -355
- data/spec/graphql/schema/warden_spec.rb +0 -926
- data/spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb +0 -413
- data/spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb +0 -44
- data/spec/graphql/static_validation/rules/arguments_are_defined_spec.rb +0 -112
- data/spec/graphql/static_validation/rules/directives_are_defined_spec.rb +0 -35
- data/spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb +0 -42
- data/spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb +0 -167
- data/spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb +0 -66
- data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +0 -740
- data/spec/graphql/static_validation/rules/fragment_names_are_unique_spec.rb +0 -28
- data/spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb +0 -52
- data/spec/graphql/static_validation/rules/fragment_types_exist_spec.rb +0 -42
- data/spec/graphql/static_validation/rules/fragments_are_finite_spec.rb +0 -123
- data/spec/graphql/static_validation/rules/fragments_are_named_spec.rb +0 -24
- data/spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb +0 -56
- data/spec/graphql/static_validation/rules/fragments_are_used_spec.rb +0 -61
- data/spec/graphql/static_validation/rules/mutation_root_exists_spec.rb +0 -39
- data/spec/graphql/static_validation/rules/no_definitions_are_present_spec.rb +0 -62
- data/spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb +0 -82
- data/spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb +0 -73
- data/spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb +0 -86
- data/spec/graphql/static_validation/rules/subscription_root_exists_spec.rb +0 -34
- data/spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb +0 -188
- data/spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb +0 -196
- data/spec/graphql/static_validation/rules/variable_names_are_unique_spec.rb +0 -23
- data/spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb +0 -236
- data/spec/graphql/static_validation/rules/variables_are_input_types_spec.rb +0 -78
- data/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb +0 -81
- data/spec/graphql/static_validation/type_stack_spec.rb +0 -29
- data/spec/graphql/static_validation/validator_spec.rb +0 -204
- data/spec/graphql/string_type_spec.rb +0 -80
- data/spec/graphql/subscriptions/serialize_spec.rb +0 -49
- data/spec/graphql/subscriptions_spec.rb +0 -540
- data/spec/graphql/tracing/new_relic_tracing_spec.rb +0 -84
- data/spec/graphql/tracing/platform_tracing_spec.rb +0 -141
- data/spec/graphql/tracing/prometheus_tracing_spec.rb +0 -42
- data/spec/graphql/tracing/scout_tracing_spec.rb +0 -17
- data/spec/graphql/tracing/skylight_tracing_spec.rb +0 -63
- data/spec/graphql/tracing_spec.rb +0 -52
- data/spec/graphql/types/big_int_spec.rb +0 -24
- data/spec/graphql/types/iso_8601_date_time_spec.rb +0 -137
- data/spec/graphql/types/relay/base_edge_spec.rb +0 -33
- data/spec/graphql/union_type_spec.rb +0 -211
- data/spec/graphql/upgrader/member_spec.rb +0 -583
- data/spec/graphql/upgrader/schema_spec.rb +0 -82
- data/spec/integration/mongoid/graphql/relay/mongo_relation_connection_spec.rb +0 -528
- data/spec/integration/mongoid/spec_helper.rb +0 -2
- data/spec/integration/mongoid/star_trek/data.rb +0 -126
- data/spec/integration/mongoid/star_trek/schema.rb +0 -425
- data/spec/integration/rails/data.rb +0 -110
- data/spec/integration/rails/generators/base_generator_test.rb +0 -7
- data/spec/integration/rails/generators/graphql/enum_generator_spec.rb +0 -30
- data/spec/integration/rails/generators/graphql/install_generator_spec.rb +0 -218
- data/spec/integration/rails/generators/graphql/interface_generator_spec.rb +0 -34
- data/spec/integration/rails/generators/graphql/loader_generator_spec.rb +0 -59
- data/spec/integration/rails/generators/graphql/mutation_generator_spec.rb +0 -71
- data/spec/integration/rails/generators/graphql/object_generator_spec.rb +0 -54
- data/spec/integration/rails/generators/graphql/scalar_generator_spec.rb +0 -28
- data/spec/integration/rails/generators/graphql/union_generator_spec.rb +0 -67
- data/spec/integration/rails/graphql/input_object_type_spec.rb +0 -364
- data/spec/integration/rails/graphql/query/variables_spec.rb +0 -375
- data/spec/integration/rails/graphql/relay/array_connection_spec.rb +0 -290
- data/spec/integration/rails/graphql/relay/base_connection_spec.rb +0 -101
- data/spec/integration/rails/graphql/relay/connection_instrumentation_spec.rb +0 -80
- data/spec/integration/rails/graphql/relay/connection_resolve_spec.rb +0 -79
- data/spec/integration/rails/graphql/relay/connection_type_spec.rb +0 -106
- data/spec/integration/rails/graphql/relay/edge_spec.rb +0 -10
- data/spec/integration/rails/graphql/relay/mutation_spec.rb +0 -387
- data/spec/integration/rails/graphql/relay/node_spec.rb +0 -263
- data/spec/integration/rails/graphql/relay/page_info_spec.rb +0 -111
- data/spec/integration/rails/graphql/relay/range_add_spec.rb +0 -117
- data/spec/integration/rails/graphql/relay/relation_connection_spec.rb +0 -837
- data/spec/integration/rails/graphql/schema_spec.rb +0 -489
- data/spec/integration/rails/graphql/tracing/active_support_notifications_tracing_spec.rb +0 -62
- data/spec/integration/rails/spec_helper.rb +0 -25
- data/spec/integration/tmp/app/graphql/types/bird_type.rb +0 -7
- data/spec/spec_helper.rb +0 -116
- data/spec/support/dummy/data.rb +0 -45
- data/spec/support/dummy/schema.rb +0 -511
- data/spec/support/error_bubbling_helpers.rb +0 -23
- data/spec/support/global_id.rb +0 -23
- data/spec/support/jazz.rb +0 -772
- data/spec/support/lazy_helpers.rb +0 -192
- data/spec/support/magic_cards/schema.graphql +0 -33
- data/spec/support/minimum_input_object.rb +0 -21
- data/spec/support/new_relic.rb +0 -27
- data/spec/support/parser/filename_example.graphql +0 -5
- data/spec/support/parser/filename_example_error_1.graphql +0 -4
- data/spec/support/parser/filename_example_error_2.graphql +0 -5
- data/spec/support/skylight.rb +0 -39
- data/spec/support/star_wars/schema.rb +0 -465
- data/spec/support/static_validation_helpers.rb +0 -32
| @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            module GraphQL
         | 
| 2 4 | 
             
            module Language
         | 
| 3 5 | 
             
            module Lexer
         | 
| @@ -20,7 +22,7 @@ class << self | |
| 20 22 | 
             
            	private :_graphql_lexer_trans_keys, :_graphql_lexer_trans_keys=
         | 
| 21 23 | 
             
            end
         | 
| 22 24 | 
             
            self._graphql_lexer_trans_keys = [
         | 
| 23 | 
            -
            4,  | 
| 25 | 
            +
            1, 0, 4, 22, 4, 43, 14, 46, 14, 46, 14, 46, 14, 46, 4, 22, 4, 4, 4, 4, 4, 22, 4, 4, 4, 4, 14, 15, 14, 15, 10, 15, 12, 12, 4, 22, 4, 43, 14, 46, 14, 46, 14, 46, 14, 46, 0, 49, 0, 0, 4, 22, 4, 4, 4, 4, 4, 4, 4, 22, 4, 4, 4, 4, 1, 1, 14, 15, 10, 29, 14, 15, 10, 29, 10, 29, 12, 12, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 14, 46, 4, 4, 0 , 
         | 
| 24 26 | 
             
            ]
         | 
| 25 27 |  | 
| 26 28 | 
             
            class << self
         | 
| @@ -28,7 +30,7 @@ class << self | |
| 28 30 | 
             
            	private :_graphql_lexer_char_class, :_graphql_lexer_char_class=
         | 
| 29 31 | 
             
            end
         | 
| 30 32 | 
             
            self._graphql_lexer_char_class = [
         | 
| 31 | 
            -
            0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 3, 4, 5, 6, 2, 7, 2, 8, 9, 2, 10, 0, 11, 12,  | 
| 33 | 
            +
            0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 3, 4, 5, 6, 2, 7, 2, 8, 9, 2, 10, 0, 11, 12, 13, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 2, 2, 17, 2, 2, 18, 19, 19, 19, 19, 20, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 21, 22, 23, 2, 24, 2, 25, 26, 27, 28, 29, 30, 31, 32, 33, 19, 19, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 19, 45, 46, 19, 47, 48, 49, 0 , 
         | 
| 32 34 | 
             
            ]
         | 
| 33 35 |  | 
| 34 36 | 
             
            class << self
         | 
| @@ -36,7 +38,7 @@ class << self | |
| 36 38 | 
             
            	private :_graphql_lexer_index_offsets, :_graphql_lexer_index_offsets=
         | 
| 37 39 | 
             
            end
         | 
| 38 40 | 
             
            self._graphql_lexer_index_offsets = [
         | 
| 39 | 
            -
            0,  | 
| 41 | 
            +
            0, 0, 19, 59, 92, 125, 158, 191, 210, 211, 212, 231, 232, 233, 235, 237, 243, 244, 263, 303, 336, 369, 402, 435, 485, 486, 505, 506, 507, 508, 527, 528, 529, 530, 532, 552, 554, 574, 594, 595, 628, 661, 694, 727, 760, 793, 826, 859, 892, 925, 958, 991, 1024, 1057, 1090, 1123, 1156, 1189, 1222, 1255, 1288, 1321, 1354, 1387, 1420, 1453, 1486, 1519, 1552, 1585, 1618, 1651, 1684, 1717, 1750, 1783, 1816, 1849, 1882, 1915, 1948, 1981, 2014, 2047, 2080, 2113, 2146, 2179, 2212, 2245, 2278, 2311, 2344, 2377, 2410, 2443, 2476, 2509, 2542, 2575, 2608, 2641, 2674, 2707, 2740, 2773, 2806, 2839, 2872, 2905, 2938, 2971, 3004, 3037, 3070, 3103, 3136, 3169, 3202, 3235, 3268, 3301, 3334, 3367, 3400, 3433, 3466, 3499, 3532, 3565, 3598, 3631, 3664, 3697, 3730, 0 , 
         | 
| 40 42 | 
             
            ]
         | 
| 41 43 |  | 
| 42 44 | 
             
            class << self
         | 
| @@ -44,7 +46,7 @@ class << self | |
| 44 46 | 
             
            	private :_graphql_lexer_indicies, :_graphql_lexer_indicies=
         | 
| 45 47 | 
             
            end
         | 
| 46 48 | 
             
            self._graphql_lexer_indicies = [
         | 
| 47 | 
            -
            2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 8, 9, 10, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 11, 12, 13, 13, 15, 15, 16, 16, 0, 13, 13, 18, 20, 21, 19, 22, 23, 24, 25, 26, 27, 28, 19, 29, 30, 31, 32, 33, 34, 35, 36, 36, 37, 19, 38, 36, 36, 36, 39, 40, 41, 36, 36, 42, 36, 43, 44, 45, 36, 46, 36, 47, 48, 49, 36, 36, 36, 50, 51, 52, 20, 55, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 58, 59, 60, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 61, 9, 62, 31, 32, 16, 16, 64, 13, 13, 63, 63, 63, 63, 65, 63, 63, 63, 63, 63, 63, 63, 65, 13, 13, 16, 16, 66, 15, 15, 66, 66, 66, 66, 65, 66, 66, 66, 66, 66, 66, 66, 65, 16, 16, 64, 32, 32, 63, 63, 63, 63, 65, 63, 63, 63, 63, 63, 63, 63, 65, 67, 36, 36, 0, 0, 0, 36, 36, 0, 0, 0, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 69, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 70, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 71, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 72, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 73, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 74, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 75, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 76, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 77, 36, 36, 36, 36, 36, 36, 36, 36, 78, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 79, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 80, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 81, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 82, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 83, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 84, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 85, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 86, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 87, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 88, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 89, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 90, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 91, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 92, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 93, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 94, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 95, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 96, 97, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 98, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 99, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 100, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 101, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 102, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 103, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 104, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 105, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 106, 36, 36, 36, 107, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 108, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 109, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 110, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 111, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 112, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 113, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 114, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 115, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 116, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 117, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 118, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 119, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 120, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 121, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 122, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 123, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 124, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 125, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 126, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 127, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 128, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 129, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 130, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 131, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 132, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 133, 36, 36, 36, 36, 36, 36, 134, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 135, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 136, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 137, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 138, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 139, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 140, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 141, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 142, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 143, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 144, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 145, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 146, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 147, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 148, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 149, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 150, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 151, 36, 36, 36, 36, 36, 152, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 153, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 154, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 155, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 156, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 157, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 158, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 159, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 68, 68, 68, 36, 36, 68, 68, 68, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 160, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 0 , 
         | 
| 49 | 
            +
            2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 4, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 0, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 0, 0, 0, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 12, 13, 14, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 15, 16, 17, 17, 19, 19, 20, 20, 8, 8, 17, 17, 21, 23, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 24, 22, 25, 25, 25, 25, 25, 25, 25, 25, 22, 25, 25, 25, 25, 25, 25, 25, 25, 22, 25, 25, 25, 22, 25, 25, 25, 22, 25, 25, 25, 25, 25, 22, 25, 25, 25, 22, 25, 22, 26, 27, 27, 25, 25, 25, 27, 27, 25, 25, 25, 25, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 25, 25, 25, 28, 28, 25, 25, 25, 25, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 25, 25, 25, 29, 29, 25, 25, 25, 25, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 22, 22, 25, 25, 25, 22, 22, 25, 25, 25, 25, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 31, 32, 30, 33, 34, 35, 36, 37, 38, 39, 30, 40, 41, 30, 42, 43, 44, 45, 46, 47, 47, 48, 30, 49, 47, 47, 47, 47, 50, 51, 52, 47, 47, 53, 47, 54, 55, 56, 47, 57, 58, 59, 60, 61, 47, 47, 47, 62, 63, 64, 31, 67, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 9, 70, 71, 72, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 73, 13, 74, 42, 43, 20, 20, 76, 75, 17, 17, 75, 75, 75, 75, 77, 75, 75, 75, 75, 75, 75, 75, 75, 77, 17, 17, 20, 20, 78, 78, 19, 19, 78, 78, 78, 78, 77, 78, 78, 78, 78, 78, 78, 78, 78, 77, 20, 20, 76, 75, 43, 43, 75, 75, 75, 75, 77, 75, 75, 75, 75, 75, 75, 75, 75, 77, 79, 47, 47, 8, 8, 8, 47, 47, 8, 8, 8, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 81, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 82, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 83, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 84, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 85, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 86, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 87, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 88, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 89, 47, 47, 47, 47, 47, 47, 47, 47, 90, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 91, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 92, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 93, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 94, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 95, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 96, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 97, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 98, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 99, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 100, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 101, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 102, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 103, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 104, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 105, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 106, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 107, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 108, 109, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 110, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 111, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 112, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 113, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 114, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 115, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 116, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 117, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 118, 47, 47, 47, 119, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 120, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 121, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 122, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 123, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 124, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 125, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 126, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 127, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 128, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 129, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 130, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 131, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 132, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 133, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 134, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 135, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 136, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 137, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 138, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 139, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 140, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 141, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 142, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 143, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 144, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 145, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 146, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 147, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 148, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 149, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 150, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 151, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 152, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 153, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 154, 47, 47, 47, 47, 47, 47, 155, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 156, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 157, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 158, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 159, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 160, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 161, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 162, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 163, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 164, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 165, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 166, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 167, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 168, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 169, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 170, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 171, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 172, 47, 47, 47, 47, 47, 173, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 174, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 175, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 176, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 177, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 178, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 179, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 180, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 80, 80, 80, 47, 47, 80, 80, 80, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 181, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 22, 0 , 
         | 
| 48 50 | 
             
            ]
         | 
| 49 51 |  | 
| 50 52 | 
             
            class << self
         | 
| @@ -52,7 +54,7 @@ class << self | |
| 52 54 | 
             
            	private :_graphql_lexer_index_defaults, :_graphql_lexer_index_defaults=
         | 
| 53 55 | 
             
            end
         | 
| 54 56 | 
             
            self._graphql_lexer_index_defaults = [
         | 
| 55 | 
            -
             | 
| 57 | 
            +
            0, 1, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 8, 18, 8, 0, 22, 25, 25, 25, 25, 25, 30, 65, 1, 68, 69, 69, 9, 9, 9, 35, 66, 75, 78, 78, 75, 66, 8, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 25, 0 , 
         | 
| 56 58 | 
             
            ]
         | 
| 57 59 |  | 
| 58 60 | 
             
            class << self
         | 
| @@ -60,7 +62,7 @@ class << self | |
| 60 62 | 
             
            	private :_graphql_lexer_trans_cond_spaces, :_graphql_lexer_trans_cond_spaces=
         | 
| 61 63 | 
             
            end
         | 
| 62 64 | 
             
            self._graphql_lexer_trans_cond_spaces = [
         | 
| 63 | 
            -
            -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, -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, -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, -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, -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, -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, -1, -1, -1, -1, -1, 0 , 
         | 
| 65 | 
            +
            -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, -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, -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, -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, -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, -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, -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, 0 , 
         | 
| 64 66 | 
             
            ]
         | 
| 65 67 |  | 
| 66 68 | 
             
            class << self
         | 
| @@ -68,7 +70,7 @@ class << self | |
| 68 70 | 
             
            	private :_graphql_lexer_cond_targs, :_graphql_lexer_cond_targs=
         | 
| 69 71 | 
             
            end
         | 
| 70 72 | 
             
            self._graphql_lexer_cond_targs = [
         | 
| 71 | 
            -
             | 
| 73 | 
            +
            23, 1, 23, 2, 3, 4, 5, 6, 23, 7, 8, 10, 9, 27, 11, 12, 29, 35, 23, 36, 13, 23, 17, 134, 18, 0, 19, 20, 21, 22, 23, 24, 23, 23, 25, 32, 23, 23, 23, 23, 33, 38, 34, 37, 23, 23, 23, 39, 23, 23, 40, 48, 55, 65, 83, 90, 93, 94, 98, 107, 125, 130, 23, 23, 23, 23, 23, 26, 23, 23, 28, 23, 30, 31, 23, 23, 14, 15, 23, 16, 23, 41, 42, 43, 44, 45, 46, 47, 39, 49, 51, 50, 39, 52, 53, 54, 39, 56, 59, 57, 58, 39, 60, 61, 62, 63, 64, 39, 66, 74, 67, 68, 69, 70, 71, 72, 73, 39, 75, 77, 76, 39, 78, 79, 80, 81, 82, 39, 84, 85, 86, 87, 88, 89, 39, 91, 92, 39, 39, 95, 96, 97, 39, 99, 100, 101, 102, 103, 104, 105, 106, 39, 108, 115, 109, 112, 110, 111, 39, 113, 114, 39, 116, 117, 118, 119, 120, 121, 122, 123, 124, 39, 126, 128, 127, 39, 129, 39, 131, 132, 133, 39, 0 , 
         | 
| 72 74 | 
             
            ]
         | 
| 73 75 |  | 
| 74 76 | 
             
            class << self
         | 
| @@ -76,7 +78,7 @@ class << self | |
| 76 78 | 
             
            	private :_graphql_lexer_cond_actions, :_graphql_lexer_cond_actions=
         | 
| 77 79 | 
             
            end
         | 
| 78 80 | 
             
            self._graphql_lexer_cond_actions = [
         | 
| 79 | 
            -
            1, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 6, 0, 7, 8, 11, 0, 12, 13, 14, 0, 15, 16, 17, 18, 0, 19,  | 
| 81 | 
            +
            1, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 6, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0, 11, 0, 12, 13, 14, 0, 15, 16, 17, 18, 0, 14, 19, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 27, 28, 29, 30, 31, 32, 33, 0, 34, 4, 4, 35, 36, 0, 0, 37, 0, 38, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 47, 0, 0, 48, 49, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 55, 0, 56, 0, 0, 0, 57, 0 , 
         | 
| 80 82 | 
             
            ]
         | 
| 81 83 |  | 
| 82 84 | 
             
            class << self
         | 
| @@ -84,7 +86,7 @@ class << self | |
| 84 86 | 
             
            	private :_graphql_lexer_to_state_actions, :_graphql_lexer_to_state_actions=
         | 
| 85 87 | 
             
            end
         | 
| 86 88 | 
             
            self._graphql_lexer_to_state_actions = [
         | 
| 87 | 
            -
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 , 
         | 
| 89 | 
            +
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0 , 
         | 
| 88 90 | 
             
            ]
         | 
| 89 91 |  | 
| 90 92 | 
             
            class << self
         | 
| @@ -92,7 +94,7 @@ class << self | |
| 92 94 | 
             
            	private :_graphql_lexer_from_state_actions, :_graphql_lexer_from_state_actions=
         | 
| 93 95 | 
             
            end
         | 
| 94 96 | 
             
            self._graphql_lexer_from_state_actions = [
         | 
| 95 | 
            -
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 , 
         | 
| 97 | 
            +
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0 , 
         | 
| 96 98 | 
             
            ]
         | 
| 97 99 |  | 
| 98 100 | 
             
            class << self
         | 
| @@ -100,7 +102,7 @@ class << self | |
| 100 102 | 
             
            	private :_graphql_lexer_eof_trans, :_graphql_lexer_eof_trans=
         | 
| 101 103 | 
             
            end
         | 
| 102 104 | 
             
            self._graphql_lexer_eof_trans = [
         | 
| 103 | 
            -
             | 
| 105 | 
            +
            0, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 19, 9, 1, 0, 0, 0, 0, 0, 0, 0, 66, 67, 69, 70, 70, 70, 70, 70, 75, 67, 76, 79, 79, 76, 67, 9, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 0, 0 , 
         | 
| 104 106 | 
             
            ]
         | 
| 105 107 |  | 
| 106 108 | 
             
            class << self
         | 
| @@ -116,7 +118,7 @@ class << self | |
| 116 118 | 
             
            	private :_graphql_lexer_nfa_offsets, :_graphql_lexer_nfa_offsets=
         | 
| 117 119 | 
             
            end
         | 
| 118 120 | 
             
            self._graphql_lexer_nfa_offsets = [
         | 
| 119 | 
            -
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 , 
         | 
| 121 | 
            +
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 , 
         | 
| 120 122 | 
             
            ]
         | 
| 121 123 |  | 
| 122 124 | 
             
            class << self
         | 
| @@ -138,25 +140,30 @@ self._graphql_lexer_nfa_pop_trans = [ | |
| 138 140 | 
             
            class << self
         | 
| 139 141 | 
             
            	attr_accessor :graphql_lexer_start 
         | 
| 140 142 | 
             
            end
         | 
| 141 | 
            -
            self.graphql_lexer_start  =  | 
| 143 | 
            +
            self.graphql_lexer_start  = 23;
         | 
| 142 144 |  | 
| 143 145 | 
             
            class << self
         | 
| 144 146 | 
             
            	attr_accessor :graphql_lexer_first_final 
         | 
| 145 147 | 
             
            end
         | 
| 146 | 
            -
            self.graphql_lexer_first_final  =  | 
| 148 | 
            +
            self.graphql_lexer_first_final  = 23;
         | 
| 147 149 |  | 
| 148 150 | 
             
            class << self
         | 
| 149 151 | 
             
            	attr_accessor :graphql_lexer_error 
         | 
| 150 152 | 
             
            end
         | 
| 151 | 
            -
            self.graphql_lexer_error  =  | 
| 153 | 
            +
            self.graphql_lexer_error  = 0;
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            class << self
         | 
| 156 | 
            +
            	attr_accessor :graphql_lexer_en_str 
         | 
| 157 | 
            +
            end
         | 
| 158 | 
            +
            self.graphql_lexer_en_str  = 134;
         | 
| 152 159 |  | 
| 153 160 | 
             
            class << self
         | 
| 154 161 | 
             
            	attr_accessor :graphql_lexer_en_main 
         | 
| 155 162 | 
             
            end
         | 
| 156 | 
            -
            self.graphql_lexer_en_main  =  | 
| 163 | 
            +
            self.graphql_lexer_en_main  = 23;
         | 
| 157 164 |  | 
| 158 165 | 
             
            def self.run_lexer(query_string)
         | 
| 159 | 
            -
            	data = query_string.unpack( | 
| 166 | 
            +
            	data = query_string.unpack(PACK_DIRECTIVE)
         | 
| 160 167 | 
             
            	eof = data.length
         | 
| 161 168 |  | 
| 162 169 | 
             
            	# Since `Lexer` is a module, store all lexer state
         | 
| @@ -187,6 +194,10 @@ def self.run_lexer(query_string) | |
| 187 194 | 
             
            		_inds = 0;
         | 
| 188 195 | 
             
            		while ( _cont == 1  )
         | 
| 189 196 | 
             
            			begin
         | 
| 197 | 
            +
            				if ( cs == 0  )
         | 
| 198 | 
            +
            					_cont = 0;
         | 
| 199 | 
            +
            					
         | 
| 200 | 
            +
            				end
         | 
| 190 201 | 
             
            				_have = 0;
         | 
| 191 202 | 
             
            				if ( p == pe  )
         | 
| 192 203 | 
             
            					begin
         | 
| @@ -272,7 +283,7 @@ def self.run_lexer(query_string) | |
| 272 283 | 
             
            							when -2 then
         | 
| 273 284 | 
             
            							begin
         | 
| 274 285 | 
             
            							end
         | 
| 275 | 
            -
            							when  | 
| 286 | 
            +
            							when 14  then
         | 
| 276 287 | 
             
            							begin
         | 
| 277 288 | 
             
            								begin
         | 
| 278 289 | 
             
            									begin
         | 
| @@ -283,13 +294,13 @@ def self.run_lexer(query_string) | |
| 283 294 | 
             
            								end
         | 
| 284 295 |  | 
| 285 296 | 
             
            							end
         | 
| 286 | 
            -
            							when  | 
| 297 | 
            +
            							when 8  then
         | 
| 287 298 | 
             
            							begin
         | 
| 288 299 | 
             
            								begin
         | 
| 289 300 | 
             
            									begin
         | 
| 290 301 | 
             
            										te = p+1;
         | 
| 291 302 | 
             
            										begin
         | 
| 292 | 
            -
            											 | 
| 303 | 
            +
            											emit_string(ts, te, meta, block: false) 
         | 
| 293 304 | 
             
            										end
         | 
| 294 305 |  | 
| 295 306 | 
             
            									end
         | 
| @@ -297,13 +308,27 @@ def self.run_lexer(query_string) | |
| 297 308 | 
             
            								end
         | 
| 298 309 |  | 
| 299 310 | 
             
            							end
         | 
| 300 | 
            -
            							when  | 
| 311 | 
            +
            							when 28  then
         | 
| 301 312 | 
             
            							begin
         | 
| 302 313 | 
             
            								begin
         | 
| 303 314 | 
             
            									begin
         | 
| 304 315 | 
             
            										te = p+1;
         | 
| 305 316 | 
             
            										begin
         | 
| 306 | 
            -
            											emit(: | 
| 317 | 
            +
            											emit(:RCURLY, ts, te, meta, "}") 
         | 
| 318 | 
            +
            										end
         | 
| 319 | 
            +
            										
         | 
| 320 | 
            +
            									end
         | 
| 321 | 
            +
            									
         | 
| 322 | 
            +
            								end
         | 
| 323 | 
            +
            								
         | 
| 324 | 
            +
            							end
         | 
| 325 | 
            +
            							when 26  then
         | 
| 326 | 
            +
            							begin
         | 
| 327 | 
            +
            								begin
         | 
| 328 | 
            +
            									begin
         | 
| 329 | 
            +
            										te = p+1;
         | 
| 330 | 
            +
            										begin
         | 
| 331 | 
            +
            											emit(:LCURLY, ts, te, meta, "{") 
         | 
| 307 332 | 
             
            										end
         | 
| 308 333 |  | 
| 309 334 | 
             
            									end
         | 
| @@ -317,7 +342,7 @@ def self.run_lexer(query_string) | |
| 317 342 | 
             
            									begin
         | 
| 318 343 | 
             
            										te = p+1;
         | 
| 319 344 | 
             
            										begin
         | 
| 320 | 
            -
            											emit(:RPAREN, ts, te, meta) 
         | 
| 345 | 
            +
            											emit(:RPAREN, ts, te, meta, ")") 
         | 
| 321 346 | 
             
            										end
         | 
| 322 347 |  | 
| 323 348 | 
             
            									end
         | 
| @@ -331,7 +356,7 @@ def self.run_lexer(query_string) | |
| 331 356 | 
             
            									begin
         | 
| 332 357 | 
             
            										te = p+1;
         | 
| 333 358 | 
             
            										begin
         | 
| 334 | 
            -
            											emit(:LPAREN, ts, te, meta) | 
| 359 | 
            +
            											emit(:LPAREN, ts, te, meta, "(")
         | 
| 335 360 | 
             
            										end
         | 
| 336 361 |  | 
| 337 362 | 
             
            									end
         | 
| @@ -339,13 +364,13 @@ def self.run_lexer(query_string) | |
| 339 364 | 
             
            								end
         | 
| 340 365 |  | 
| 341 366 | 
             
            							end
         | 
| 342 | 
            -
            							when  | 
| 367 | 
            +
            							when 25  then
         | 
| 343 368 | 
             
            							begin
         | 
| 344 369 | 
             
            								begin
         | 
| 345 370 | 
             
            									begin
         | 
| 346 371 | 
             
            										te = p+1;
         | 
| 347 372 | 
             
            										begin
         | 
| 348 | 
            -
            											emit(:RBRACKET, ts, te, meta) 
         | 
| 373 | 
            +
            											emit(:RBRACKET, ts, te, meta, "]") 
         | 
| 349 374 | 
             
            										end
         | 
| 350 375 |  | 
| 351 376 | 
             
            									end
         | 
| @@ -353,13 +378,13 @@ def self.run_lexer(query_string) | |
| 353 378 | 
             
            								end
         | 
| 354 379 |  | 
| 355 380 | 
             
            							end
         | 
| 356 | 
            -
            							when  | 
| 381 | 
            +
            							when 24  then
         | 
| 357 382 | 
             
            							begin
         | 
| 358 383 | 
             
            								begin
         | 
| 359 384 | 
             
            									begin
         | 
| 360 385 | 
             
            										te = p+1;
         | 
| 361 386 | 
             
            										begin
         | 
| 362 | 
            -
            											emit(:LBRACKET, ts, te, meta) 
         | 
| 387 | 
            +
            											emit(:LBRACKET, ts, te, meta, "[") 
         | 
| 363 388 | 
             
            										end
         | 
| 364 389 |  | 
| 365 390 | 
             
            									end
         | 
| @@ -367,13 +392,13 @@ def self.run_lexer(query_string) | |
| 367 392 | 
             
            								end
         | 
| 368 393 |  | 
| 369 394 | 
             
            							end
         | 
| 370 | 
            -
            							when  | 
| 395 | 
            +
            							when 20  then
         | 
| 371 396 | 
             
            							begin
         | 
| 372 397 | 
             
            								begin
         | 
| 373 398 | 
             
            									begin
         | 
| 374 399 | 
             
            										te = p+1;
         | 
| 375 400 | 
             
            										begin
         | 
| 376 | 
            -
            											emit(:COLON, ts, te, meta) 
         | 
| 401 | 
            +
            											emit(:COLON, ts, te, meta, ":") 
         | 
| 377 402 | 
             
            										end
         | 
| 378 403 |  | 
| 379 404 | 
             
            									end
         | 
| @@ -415,7 +440,7 @@ def self.run_lexer(query_string) | |
| 415 440 | 
             
            									begin
         | 
| 416 441 | 
             
            										te = p+1;
         | 
| 417 442 | 
             
            										begin
         | 
| 418 | 
            -
            											emit(:VAR_SIGN, ts, te, meta) 
         | 
| 443 | 
            +
            											emit(:VAR_SIGN, ts, te, meta, "$") 
         | 
| 419 444 | 
             
            										end
         | 
| 420 445 |  | 
| 421 446 | 
             
            									end
         | 
| @@ -423,13 +448,13 @@ def self.run_lexer(query_string) | |
| 423 448 | 
             
            								end
         | 
| 424 449 |  | 
| 425 450 | 
             
            							end
         | 
| 426 | 
            -
            							when  | 
| 451 | 
            +
            							when 22  then
         | 
| 427 452 | 
             
            							begin
         | 
| 428 453 | 
             
            								begin
         | 
| 429 454 | 
             
            									begin
         | 
| 430 455 | 
             
            										te = p+1;
         | 
| 431 456 | 
             
            										begin
         | 
| 432 | 
            -
            											emit(:DIR_SIGN, ts, te, meta) 
         | 
| 457 | 
            +
            											emit(:DIR_SIGN, ts, te, meta, "@") 
         | 
| 433 458 | 
             
            										end
         | 
| 434 459 |  | 
| 435 460 | 
             
            									end
         | 
| @@ -437,13 +462,13 @@ def self.run_lexer(query_string) | |
| 437 462 | 
             
            								end
         | 
| 438 463 |  | 
| 439 464 | 
             
            							end
         | 
| 440 | 
            -
            							when  | 
| 465 | 
            +
            							when 7  then
         | 
| 441 466 | 
             
            							begin
         | 
| 442 467 | 
             
            								begin
         | 
| 443 468 | 
             
            									begin
         | 
| 444 469 | 
             
            										te = p+1;
         | 
| 445 470 | 
             
            										begin
         | 
| 446 | 
            -
            											emit(:ELLIPSIS, ts, te, meta) 
         | 
| 471 | 
            +
            											emit(:ELLIPSIS, ts, te, meta, "...") 
         | 
| 447 472 | 
             
            										end
         | 
| 448 473 |  | 
| 449 474 | 
             
            									end
         | 
| @@ -451,13 +476,13 @@ def self.run_lexer(query_string) | |
| 451 476 | 
             
            								end
         | 
| 452 477 |  | 
| 453 478 | 
             
            							end
         | 
| 454 | 
            -
            							when  | 
| 479 | 
            +
            							when 21  then
         | 
| 455 480 | 
             
            							begin
         | 
| 456 481 | 
             
            								begin
         | 
| 457 482 | 
             
            									begin
         | 
| 458 483 | 
             
            										te = p+1;
         | 
| 459 484 | 
             
            										begin
         | 
| 460 | 
            -
            											emit(:EQUALS, ts, te, meta) 
         | 
| 485 | 
            +
            											emit(:EQUALS, ts, te, meta, "=") 
         | 
| 461 486 | 
             
            										end
         | 
| 462 487 |  | 
| 463 488 | 
             
            									end
         | 
| @@ -471,7 +496,7 @@ def self.run_lexer(query_string) | |
| 471 496 | 
             
            									begin
         | 
| 472 497 | 
             
            										te = p+1;
         | 
| 473 498 | 
             
            										begin
         | 
| 474 | 
            -
            											emit(:BANG, ts, te, meta) 
         | 
| 499 | 
            +
            											emit(:BANG, ts, te, meta, "!") 
         | 
| 475 500 | 
             
            										end
         | 
| 476 501 |  | 
| 477 502 | 
             
            									end
         | 
| @@ -479,13 +504,13 @@ def self.run_lexer(query_string) | |
| 479 504 | 
             
            								end
         | 
| 480 505 |  | 
| 481 506 | 
             
            							end
         | 
| 482 | 
            -
            							when  | 
| 507 | 
            +
            							when 27  then
         | 
| 483 508 | 
             
            							begin
         | 
| 484 509 | 
             
            								begin
         | 
| 485 510 | 
             
            									begin
         | 
| 486 511 | 
             
            										te = p+1;
         | 
| 487 512 | 
             
            										begin
         | 
| 488 | 
            -
            											emit(:PIPE, ts, te, meta) 
         | 
| 513 | 
            +
            											emit(:PIPE, ts, te, meta, "|") 
         | 
| 489 514 | 
             
            										end
         | 
| 490 515 |  | 
| 491 516 | 
             
            									end
         | 
| @@ -499,7 +524,7 @@ def self.run_lexer(query_string) | |
| 499 524 | 
             
            									begin
         | 
| 500 525 | 
             
            										te = p+1;
         | 
| 501 526 | 
             
            										begin
         | 
| 502 | 
            -
            											emit(:AMP, ts, te, meta) 
         | 
| 527 | 
            +
            											emit(:AMP, ts, te, meta, "&") 
         | 
| 503 528 | 
             
            										end
         | 
| 504 529 |  | 
| 505 530 | 
             
            									end
         | 
| @@ -627,7 +652,7 @@ def self.run_lexer(query_string) | |
| 627 652 | 
             
            								end
         | 
| 628 653 |  | 
| 629 654 | 
             
            							end
         | 
| 630 | 
            -
            							when  | 
| 655 | 
            +
            							when 29  then
         | 
| 631 656 | 
             
            							begin
         | 
| 632 657 | 
             
            								begin
         | 
| 633 658 | 
             
            									begin
         | 
| @@ -642,7 +667,7 @@ def self.run_lexer(query_string) | |
| 642 667 | 
             
            								end
         | 
| 643 668 |  | 
| 644 669 | 
             
            							end
         | 
| 645 | 
            -
            							when  | 
| 670 | 
            +
            							when 30  then
         | 
| 646 671 | 
             
            							begin
         | 
| 647 672 | 
             
            								begin
         | 
| 648 673 | 
             
            									begin
         | 
| @@ -671,7 +696,7 @@ def self.run_lexer(query_string) | |
| 671 696 | 
             
            								end
         | 
| 672 697 |  | 
| 673 698 | 
             
            							end
         | 
| 674 | 
            -
            							when  | 
| 699 | 
            +
            							when 1  then
         | 
| 675 700 | 
             
            							begin
         | 
| 676 701 | 
             
            								begin
         | 
| 677 702 | 
             
            									begin
         | 
| @@ -685,27 +710,19 @@ def self.run_lexer(query_string) | |
| 685 710 | 
             
            								end
         | 
| 686 711 |  | 
| 687 712 | 
             
            							end
         | 
| 688 | 
            -
            							when  | 
| 713 | 
            +
            							when 3  then
         | 
| 689 714 | 
             
            							begin
         | 
| 690 715 | 
             
            								begin
         | 
| 691 716 | 
             
            									begin
         | 
| 692 717 | 
             
            										case  act  
         | 
| 693 718 | 
             
            										when -2 then
         | 
| 694 719 | 
             
            										begin
         | 
| 695 | 
            -
            										end
         | 
| 696 | 
            -
            										when 1  then
         | 
| 697 | 
            -
            										begin
         | 
| 698 | 
            -
            											p = ((te))-1;
         | 
| 699 | 
            -
            											begin
         | 
| 700 | 
            -
            												emit(:INT, ts, te, meta) 
         | 
| 701 | 
            -
            											end
         | 
| 702 | 
            -
            											
         | 
| 703 720 | 
             
            										end
         | 
| 704 721 | 
             
            										when 2  then
         | 
| 705 722 | 
             
            										begin
         | 
| 706 723 | 
             
            											p = ((te))-1;
         | 
| 707 724 | 
             
            											begin
         | 
| 708 | 
            -
            												emit(: | 
| 725 | 
            +
            												emit(:INT, ts, te, meta) 
         | 
| 709 726 | 
             
            											end
         | 
| 710 727 |  | 
| 711 728 | 
             
            										end
         | 
| @@ -713,7 +730,7 @@ def self.run_lexer(query_string) | |
| 713 730 | 
             
            										begin
         | 
| 714 731 | 
             
            											p = ((te))-1;
         | 
| 715 732 | 
             
            											begin
         | 
| 716 | 
            -
            												emit(: | 
| 733 | 
            +
            												emit(:FLOAT, ts, te, meta) 
         | 
| 717 734 | 
             
            											end
         | 
| 718 735 |  | 
| 719 736 | 
             
            										end
         | 
| @@ -721,7 +738,7 @@ def self.run_lexer(query_string) | |
| 721 738 | 
             
            										begin
         | 
| 722 739 | 
             
            											p = ((te))-1;
         | 
| 723 740 | 
             
            											begin
         | 
| 724 | 
            -
            												emit(: | 
| 741 | 
            +
            												emit(:ON, ts, te, meta, "on") 
         | 
| 725 742 | 
             
            											end
         | 
| 726 743 |  | 
| 727 744 | 
             
            										end
         | 
| @@ -729,7 +746,7 @@ def self.run_lexer(query_string) | |
| 729 746 | 
             
            										begin
         | 
| 730 747 | 
             
            											p = ((te))-1;
         | 
| 731 748 | 
             
            											begin
         | 
| 732 | 
            -
            												emit(: | 
| 749 | 
            +
            												emit(:FRAGMENT, ts, te, meta, "fragment") 
         | 
| 733 750 | 
             
            											end
         | 
| 734 751 |  | 
| 735 752 | 
             
            										end
         | 
| @@ -737,7 +754,7 @@ def self.run_lexer(query_string) | |
| 737 754 | 
             
            										begin
         | 
| 738 755 | 
             
            											p = ((te))-1;
         | 
| 739 756 | 
             
            											begin
         | 
| 740 | 
            -
            												emit(: | 
| 757 | 
            +
            												emit(:TRUE, ts, te, meta, "true") 
         | 
| 741 758 | 
             
            											end
         | 
| 742 759 |  | 
| 743 760 | 
             
            										end
         | 
| @@ -745,7 +762,7 @@ def self.run_lexer(query_string) | |
| 745 762 | 
             
            										begin
         | 
| 746 763 | 
             
            											p = ((te))-1;
         | 
| 747 764 | 
             
            											begin
         | 
| 748 | 
            -
            												emit(: | 
| 765 | 
            +
            												emit(:FALSE, ts, te, meta, "false") 
         | 
| 749 766 | 
             
            											end
         | 
| 750 767 |  | 
| 751 768 | 
             
            										end
         | 
| @@ -753,7 +770,7 @@ def self.run_lexer(query_string) | |
| 753 770 | 
             
            										begin
         | 
| 754 771 | 
             
            											p = ((te))-1;
         | 
| 755 772 | 
             
            											begin
         | 
| 756 | 
            -
            												emit(: | 
| 773 | 
            +
            												emit(:NULL, ts, te, meta, "null") 
         | 
| 757 774 | 
             
            											end
         | 
| 758 775 |  | 
| 759 776 | 
             
            										end
         | 
| @@ -761,7 +778,7 @@ def self.run_lexer(query_string) | |
| 761 778 | 
             
            										begin
         | 
| 762 779 | 
             
            											p = ((te))-1;
         | 
| 763 780 | 
             
            											begin
         | 
| 764 | 
            -
            												emit(: | 
| 781 | 
            +
            												emit(:QUERY, ts, te, meta, "query") 
         | 
| 765 782 | 
             
            											end
         | 
| 766 783 |  | 
| 767 784 | 
             
            										end
         | 
| @@ -769,7 +786,7 @@ def self.run_lexer(query_string) | |
| 769 786 | 
             
            										begin
         | 
| 770 787 | 
             
            											p = ((te))-1;
         | 
| 771 788 | 
             
            											begin
         | 
| 772 | 
            -
            												emit(: | 
| 789 | 
            +
            												emit(:MUTATION, ts, te, meta, "mutation") 
         | 
| 773 790 | 
             
            											end
         | 
| 774 791 |  | 
| 775 792 | 
             
            										end
         | 
| @@ -777,7 +794,7 @@ def self.run_lexer(query_string) | |
| 777 794 | 
             
            										begin
         | 
| 778 795 | 
             
            											p = ((te))-1;
         | 
| 779 796 | 
             
            											begin
         | 
| 780 | 
            -
            												emit(: | 
| 797 | 
            +
            												emit(:SUBSCRIPTION, ts, te, meta, "subscription") 
         | 
| 781 798 | 
             
            											end
         | 
| 782 799 |  | 
| 783 800 | 
             
            										end
         | 
| @@ -785,7 +802,7 @@ def self.run_lexer(query_string) | |
| 785 802 | 
             
            										begin
         | 
| 786 803 | 
             
            											p = ((te))-1;
         | 
| 787 804 | 
             
            											begin
         | 
| 788 | 
            -
            												emit(: | 
| 805 | 
            +
            												emit(:SCHEMA, ts, te, meta) 
         | 
| 789 806 | 
             
            											end
         | 
| 790 807 |  | 
| 791 808 | 
             
            										end
         | 
| @@ -793,7 +810,7 @@ def self.run_lexer(query_string) | |
| 793 810 | 
             
            										begin
         | 
| 794 811 | 
             
            											p = ((te))-1;
         | 
| 795 812 | 
             
            											begin
         | 
| 796 | 
            -
            												emit(: | 
| 813 | 
            +
            												emit(:SCALAR, ts, te, meta) 
         | 
| 797 814 | 
             
            											end
         | 
| 798 815 |  | 
| 799 816 | 
             
            										end
         | 
| @@ -801,7 +818,7 @@ def self.run_lexer(query_string) | |
| 801 818 | 
             
            										begin
         | 
| 802 819 | 
             
            											p = ((te))-1;
         | 
| 803 820 | 
             
            											begin
         | 
| 804 | 
            -
            												emit(: | 
| 821 | 
            +
            												emit(:TYPE, ts, te, meta) 
         | 
| 805 822 | 
             
            											end
         | 
| 806 823 |  | 
| 807 824 | 
             
            										end
         | 
| @@ -809,7 +826,7 @@ def self.run_lexer(query_string) | |
| 809 826 | 
             
            										begin
         | 
| 810 827 | 
             
            											p = ((te))-1;
         | 
| 811 828 | 
             
            											begin
         | 
| 812 | 
            -
            												emit(: | 
| 829 | 
            +
            												emit(:EXTEND, ts, te, meta) 
         | 
| 813 830 | 
             
            											end
         | 
| 814 831 |  | 
| 815 832 | 
             
            										end
         | 
| @@ -817,7 +834,7 @@ def self.run_lexer(query_string) | |
| 817 834 | 
             
            										begin
         | 
| 818 835 | 
             
            											p = ((te))-1;
         | 
| 819 836 | 
             
            											begin
         | 
| 820 | 
            -
            												emit(: | 
| 837 | 
            +
            												emit(:IMPLEMENTS, ts, te, meta) 
         | 
| 821 838 | 
             
            											end
         | 
| 822 839 |  | 
| 823 840 | 
             
            										end
         | 
| @@ -825,7 +842,7 @@ def self.run_lexer(query_string) | |
| 825 842 | 
             
            										begin
         | 
| 826 843 | 
             
            											p = ((te))-1;
         | 
| 827 844 | 
             
            											begin
         | 
| 828 | 
            -
            												emit(: | 
| 845 | 
            +
            												emit(:INTERFACE, ts, te, meta) 
         | 
| 829 846 | 
             
            											end
         | 
| 830 847 |  | 
| 831 848 | 
             
            										end
         | 
| @@ -833,7 +850,7 @@ def self.run_lexer(query_string) | |
| 833 850 | 
             
            										begin
         | 
| 834 851 | 
             
            											p = ((te))-1;
         | 
| 835 852 | 
             
            											begin
         | 
| 836 | 
            -
            												emit(: | 
| 853 | 
            +
            												emit(:UNION, ts, te, meta) 
         | 
| 837 854 | 
             
            											end
         | 
| 838 855 |  | 
| 839 856 | 
             
            										end
         | 
| @@ -841,11 +858,19 @@ def self.run_lexer(query_string) | |
| 841 858 | 
             
            										begin
         | 
| 842 859 | 
             
            											p = ((te))-1;
         | 
| 843 860 | 
             
            											begin
         | 
| 844 | 
            -
            												emit(: | 
| 861 | 
            +
            												emit(:ENUM, ts, te, meta) 
         | 
| 845 862 | 
             
            											end
         | 
| 846 863 |  | 
| 847 864 | 
             
            										end
         | 
| 848 865 | 
             
            										when 20  then
         | 
| 866 | 
            +
            										begin
         | 
| 867 | 
            +
            											p = ((te))-1;
         | 
| 868 | 
            +
            											begin
         | 
| 869 | 
            +
            												emit(:INPUT, ts, te, meta) 
         | 
| 870 | 
            +
            											end
         | 
| 871 | 
            +
            											
         | 
| 872 | 
            +
            										end
         | 
| 873 | 
            +
            										when 21  then
         | 
| 849 874 | 
             
            										begin
         | 
| 850 875 | 
             
            											p = ((te))-1;
         | 
| 851 876 | 
             
            											begin
         | 
| @@ -853,35 +878,35 @@ def self.run_lexer(query_string) | |
| 853 878 | 
             
            											end
         | 
| 854 879 |  | 
| 855 880 | 
             
            										end
         | 
| 856 | 
            -
            										when  | 
| 881 | 
            +
            										when 22  then
         | 
| 857 882 | 
             
            										begin
         | 
| 858 883 | 
             
            											p = ((te))-1;
         | 
| 859 884 | 
             
            											begin
         | 
| 860 | 
            -
            												 | 
| 885 | 
            +
            												emit(:REPEATABLE, ts, te, meta, "repeatable") 
         | 
| 861 886 | 
             
            											end
         | 
| 862 887 |  | 
| 863 888 | 
             
            										end
         | 
| 864 | 
            -
            										when  | 
| 889 | 
            +
            										when 30  then
         | 
| 865 890 | 
             
            										begin
         | 
| 866 891 | 
             
            											p = ((te))-1;
         | 
| 867 892 | 
             
            											begin
         | 
| 868 | 
            -
            												emit_string(ts, te, meta, block:  | 
| 893 | 
            +
            												emit_string(ts, te, meta, block: false) 
         | 
| 869 894 | 
             
            											end
         | 
| 870 895 |  | 
| 871 896 | 
             
            										end
         | 
| 872 | 
            -
            										when  | 
| 897 | 
            +
            										when 31  then
         | 
| 873 898 | 
             
            										begin
         | 
| 874 899 | 
             
            											p = ((te))-1;
         | 
| 875 900 | 
             
            											begin
         | 
| 876 | 
            -
            												 | 
| 901 | 
            +
            												emit_string(ts, te, meta, block: true) 
         | 
| 877 902 | 
             
            											end
         | 
| 878 903 |  | 
| 879 904 | 
             
            										end
         | 
| 880 | 
            -
            										when  | 
| 905 | 
            +
            										when 39  then
         | 
| 881 906 | 
             
            										begin
         | 
| 882 907 | 
             
            											p = ((te))-1;
         | 
| 883 908 | 
             
            											begin
         | 
| 884 | 
            -
            												emit(: | 
| 909 | 
            +
            												emit(:IDENTIFIER, ts, te, meta) 
         | 
| 885 910 | 
             
            											end
         | 
| 886 911 |  | 
| 887 912 |  | 
| @@ -894,7 +919,7 @@ def self.run_lexer(query_string) | |
| 894 919 | 
             
            							end
         | 
| 895 920 |  | 
| 896 921 | 
             
            						end
         | 
| 897 | 
            -
            						when  | 
| 922 | 
            +
            						when 19  then
         | 
| 898 923 | 
             
            						begin
         | 
| 899 924 | 
             
            							begin
         | 
| 900 925 | 
             
            								begin
         | 
| @@ -905,7 +930,7 @@ def self.run_lexer(query_string) | |
| 905 930 | 
             
            							end
         | 
| 906 931 | 
             
            							begin
         | 
| 907 932 | 
             
            								begin
         | 
| 908 | 
            -
            									act =  | 
| 933 | 
            +
            									act = 2;
         | 
| 909 934 |  | 
| 910 935 | 
             
            								end
         | 
| 911 936 |  | 
| @@ -923,7 +948,7 @@ def self.run_lexer(query_string) | |
| 923 948 | 
             
            							end
         | 
| 924 949 | 
             
            							begin
         | 
| 925 950 | 
             
            								begin
         | 
| 926 | 
            -
            									act =  | 
| 951 | 
            +
            									act = 3;
         | 
| 927 952 |  | 
| 928 953 | 
             
            								end
         | 
| 929 954 |  | 
| @@ -941,7 +966,7 @@ def self.run_lexer(query_string) | |
| 941 966 | 
             
            							end
         | 
| 942 967 | 
             
            							begin
         | 
| 943 968 | 
             
            								begin
         | 
| 944 | 
            -
            									act =  | 
| 969 | 
            +
            									act = 4;
         | 
| 945 970 |  | 
| 946 971 | 
             
            								end
         | 
| 947 972 |  | 
| @@ -959,14 +984,14 @@ def self.run_lexer(query_string) | |
| 959 984 | 
             
            							end
         | 
| 960 985 | 
             
            							begin
         | 
| 961 986 | 
             
            								begin
         | 
| 962 | 
            -
            									act =  | 
| 987 | 
            +
            									act = 5;
         | 
| 963 988 |  | 
| 964 989 | 
             
            								end
         | 
| 965 990 |  | 
| 966 991 | 
             
            							end
         | 
| 967 992 |  | 
| 968 993 | 
             
            						end
         | 
| 969 | 
            -
            						when  | 
| 994 | 
            +
            						when 55  then
         | 
| 970 995 | 
             
            						begin
         | 
| 971 996 | 
             
            							begin
         | 
| 972 997 | 
             
            								begin
         | 
| @@ -977,7 +1002,7 @@ def self.run_lexer(query_string) | |
| 977 1002 | 
             
            							end
         | 
| 978 1003 | 
             
            							begin
         | 
| 979 1004 | 
             
            								begin
         | 
| 980 | 
            -
            									act =  | 
| 1005 | 
            +
            									act = 6;
         | 
| 981 1006 |  | 
| 982 1007 | 
             
            								end
         | 
| 983 1008 |  | 
| @@ -995,7 +1020,7 @@ def self.run_lexer(query_string) | |
| 995 1020 | 
             
            							end
         | 
| 996 1021 | 
             
            							begin
         | 
| 997 1022 | 
             
            								begin
         | 
| 998 | 
            -
            									act =  | 
| 1023 | 
            +
            									act = 7;
         | 
| 999 1024 |  | 
| 1000 1025 | 
             
            								end
         | 
| 1001 1026 |  | 
| @@ -1013,7 +1038,7 @@ def self.run_lexer(query_string) | |
| 1013 1038 | 
             
            							end
         | 
| 1014 1039 | 
             
            							begin
         | 
| 1015 1040 | 
             
            								begin
         | 
| 1016 | 
            -
            									act =  | 
| 1041 | 
            +
            									act = 8;
         | 
| 1017 1042 |  | 
| 1018 1043 | 
             
            								end
         | 
| 1019 1044 |  | 
| @@ -1031,7 +1056,7 @@ def self.run_lexer(query_string) | |
| 1031 1056 | 
             
            							end
         | 
| 1032 1057 | 
             
            							begin
         | 
| 1033 1058 | 
             
            								begin
         | 
| 1034 | 
            -
            									act =  | 
| 1059 | 
            +
            									act = 9;
         | 
| 1035 1060 |  | 
| 1036 1061 | 
             
            								end
         | 
| 1037 1062 |  | 
| @@ -1049,14 +1074,14 @@ def self.run_lexer(query_string) | |
| 1049 1074 | 
             
            							end
         | 
| 1050 1075 | 
             
            							begin
         | 
| 1051 1076 | 
             
            								begin
         | 
| 1052 | 
            -
            									act =  | 
| 1077 | 
            +
            									act = 10;
         | 
| 1053 1078 |  | 
| 1054 1079 | 
             
            								end
         | 
| 1055 1080 |  | 
| 1056 1081 | 
             
            							end
         | 
| 1057 1082 |  | 
| 1058 1083 | 
             
            						end
         | 
| 1059 | 
            -
            						when  | 
| 1084 | 
            +
            						when 54  then
         | 
| 1060 1085 | 
             
            						begin
         | 
| 1061 1086 | 
             
            							begin
         | 
| 1062 1087 | 
             
            								begin
         | 
| @@ -1067,14 +1092,14 @@ def self.run_lexer(query_string) | |
| 1067 1092 | 
             
            							end
         | 
| 1068 1093 | 
             
            							begin
         | 
| 1069 1094 | 
             
            								begin
         | 
| 1070 | 
            -
            									act =  | 
| 1095 | 
            +
            									act = 11;
         | 
| 1071 1096 |  | 
| 1072 1097 | 
             
            								end
         | 
| 1073 1098 |  | 
| 1074 1099 | 
             
            							end
         | 
| 1075 1100 |  | 
| 1076 1101 | 
             
            						end
         | 
| 1077 | 
            -
            						when  | 
| 1102 | 
            +
            						when 53  then
         | 
| 1078 1103 | 
             
            						begin
         | 
| 1079 1104 | 
             
            							begin
         | 
| 1080 1105 | 
             
            								begin
         | 
| @@ -1085,14 +1110,14 @@ def self.run_lexer(query_string) | |
| 1085 1110 | 
             
            							end
         | 
| 1086 1111 | 
             
            							begin
         | 
| 1087 1112 | 
             
            								begin
         | 
| 1088 | 
            -
            									act =  | 
| 1113 | 
            +
            									act = 12;
         | 
| 1089 1114 |  | 
| 1090 1115 | 
             
            								end
         | 
| 1091 1116 |  | 
| 1092 1117 | 
             
            							end
         | 
| 1093 1118 |  | 
| 1094 1119 | 
             
            						end
         | 
| 1095 | 
            -
            						when  | 
| 1120 | 
            +
            						when 52  then
         | 
| 1096 1121 | 
             
            						begin
         | 
| 1097 1122 | 
             
            							begin
         | 
| 1098 1123 | 
             
            								begin
         | 
| @@ -1103,14 +1128,14 @@ def self.run_lexer(query_string) | |
| 1103 1128 | 
             
            							end
         | 
| 1104 1129 | 
             
            							begin
         | 
| 1105 1130 | 
             
            								begin
         | 
| 1106 | 
            -
            									act =  | 
| 1131 | 
            +
            									act = 13;
         | 
| 1107 1132 |  | 
| 1108 1133 | 
             
            								end
         | 
| 1109 1134 |  | 
| 1110 1135 | 
             
            							end
         | 
| 1111 1136 |  | 
| 1112 1137 | 
             
            						end
         | 
| 1113 | 
            -
            						when  | 
| 1138 | 
            +
            						when 56  then
         | 
| 1114 1139 | 
             
            						begin
         | 
| 1115 1140 | 
             
            							begin
         | 
| 1116 1141 | 
             
            								begin
         | 
| @@ -1121,7 +1146,7 @@ def self.run_lexer(query_string) | |
| 1121 1146 | 
             
            							end
         | 
| 1122 1147 | 
             
            							begin
         | 
| 1123 1148 | 
             
            								begin
         | 
| 1124 | 
            -
            									act =  | 
| 1149 | 
            +
            									act = 14;
         | 
| 1125 1150 |  | 
| 1126 1151 | 
             
            								end
         | 
| 1127 1152 |  | 
| @@ -1139,7 +1164,7 @@ def self.run_lexer(query_string) | |
| 1139 1164 | 
             
            							end
         | 
| 1140 1165 | 
             
            							begin
         | 
| 1141 1166 | 
             
            								begin
         | 
| 1142 | 
            -
            									act =  | 
| 1167 | 
            +
            									act = 15;
         | 
| 1143 1168 |  | 
| 1144 1169 | 
             
            								end
         | 
| 1145 1170 |  | 
| @@ -1157,7 +1182,7 @@ def self.run_lexer(query_string) | |
| 1157 1182 | 
             
            							end
         | 
| 1158 1183 | 
             
            							begin
         | 
| 1159 1184 | 
             
            								begin
         | 
| 1160 | 
            -
            									act =  | 
| 1185 | 
            +
            									act = 16;
         | 
| 1161 1186 |  | 
| 1162 1187 | 
             
            								end
         | 
| 1163 1188 |  | 
| @@ -1175,14 +1200,14 @@ def self.run_lexer(query_string) | |
| 1175 1200 | 
             
            							end
         | 
| 1176 1201 | 
             
            							begin
         | 
| 1177 1202 | 
             
            								begin
         | 
| 1178 | 
            -
            									act =  | 
| 1203 | 
            +
            									act = 17;
         | 
| 1179 1204 |  | 
| 1180 1205 | 
             
            								end
         | 
| 1181 1206 |  | 
| 1182 1207 | 
             
            							end
         | 
| 1183 1208 |  | 
| 1184 1209 | 
             
            						end
         | 
| 1185 | 
            -
            						when  | 
| 1210 | 
            +
            						when 57  then
         | 
| 1186 1211 | 
             
            						begin
         | 
| 1187 1212 | 
             
            							begin
         | 
| 1188 1213 | 
             
            								begin
         | 
| @@ -1193,7 +1218,7 @@ def self.run_lexer(query_string) | |
| 1193 1218 | 
             
            							end
         | 
| 1194 1219 | 
             
            							begin
         | 
| 1195 1220 | 
             
            								begin
         | 
| 1196 | 
            -
            									act =  | 
| 1221 | 
            +
            									act = 18;
         | 
| 1197 1222 |  | 
| 1198 1223 | 
             
            								end
         | 
| 1199 1224 |  | 
| @@ -1211,7 +1236,7 @@ def self.run_lexer(query_string) | |
| 1211 1236 | 
             
            							end
         | 
| 1212 1237 | 
             
            							begin
         | 
| 1213 1238 | 
             
            								begin
         | 
| 1214 | 
            -
            									act =  | 
| 1239 | 
            +
            									act = 19;
         | 
| 1215 1240 |  | 
| 1216 1241 | 
             
            								end
         | 
| 1217 1242 |  | 
| @@ -1229,7 +1254,7 @@ def self.run_lexer(query_string) | |
| 1229 1254 | 
             
            							end
         | 
| 1230 1255 | 
             
            							begin
         | 
| 1231 1256 | 
             
            								begin
         | 
| 1232 | 
            -
            									act =  | 
| 1257 | 
            +
            									act = 20;
         | 
| 1233 1258 |  | 
| 1234 1259 | 
             
            								end
         | 
| 1235 1260 |  | 
| @@ -1247,14 +1272,14 @@ def self.run_lexer(query_string) | |
| 1247 1272 | 
             
            							end
         | 
| 1248 1273 | 
             
            							begin
         | 
| 1249 1274 | 
             
            								begin
         | 
| 1250 | 
            -
            									act =  | 
| 1275 | 
            +
            									act = 21;
         | 
| 1251 1276 |  | 
| 1252 1277 | 
             
            								end
         | 
| 1253 1278 |  | 
| 1254 1279 | 
             
            							end
         | 
| 1255 1280 |  | 
| 1256 1281 | 
             
            						end
         | 
| 1257 | 
            -
            						when  | 
| 1282 | 
            +
            						when 51  then
         | 
| 1258 1283 | 
             
            						begin
         | 
| 1259 1284 | 
             
            							begin
         | 
| 1260 1285 | 
             
            								begin
         | 
| @@ -1265,14 +1290,14 @@ def self.run_lexer(query_string) | |
| 1265 1290 | 
             
            							end
         | 
| 1266 1291 | 
             
            							begin
         | 
| 1267 1292 | 
             
            								begin
         | 
| 1268 | 
            -
            									act =  | 
| 1293 | 
            +
            									act = 22;
         | 
| 1269 1294 |  | 
| 1270 1295 | 
             
            								end
         | 
| 1271 1296 |  | 
| 1272 1297 | 
             
            							end
         | 
| 1273 1298 |  | 
| 1274 1299 | 
             
            						end
         | 
| 1275 | 
            -
            						when  | 
| 1300 | 
            +
            						when 31  then
         | 
| 1276 1301 | 
             
            						begin
         | 
| 1277 1302 | 
             
            							begin
         | 
| 1278 1303 | 
             
            								begin
         | 
| @@ -1283,14 +1308,14 @@ def self.run_lexer(query_string) | |
| 1283 1308 | 
             
            							end
         | 
| 1284 1309 | 
             
            							begin
         | 
| 1285 1310 | 
             
            								begin
         | 
| 1286 | 
            -
            									act =  | 
| 1311 | 
            +
            									act = 30;
         | 
| 1287 1312 |  | 
| 1288 1313 | 
             
            								end
         | 
| 1289 1314 |  | 
| 1290 1315 | 
             
            							end
         | 
| 1291 1316 |  | 
| 1292 1317 | 
             
            						end
         | 
| 1293 | 
            -
            						when  | 
| 1318 | 
            +
            						when 4  then
         | 
| 1294 1319 | 
             
            						begin
         | 
| 1295 1320 | 
             
            							begin
         | 
| 1296 1321 | 
             
            								begin
         | 
| @@ -1301,14 +1326,14 @@ def self.run_lexer(query_string) | |
| 1301 1326 | 
             
            							end
         | 
| 1302 1327 | 
             
            							begin
         | 
| 1303 1328 | 
             
            								begin
         | 
| 1304 | 
            -
            									act =  | 
| 1329 | 
            +
            									act = 31;
         | 
| 1305 1330 |  | 
| 1306 1331 | 
             
            								end
         | 
| 1307 1332 |  | 
| 1308 1333 | 
             
            							end
         | 
| 1309 1334 |  | 
| 1310 1335 | 
             
            						end
         | 
| 1311 | 
            -
            						when  | 
| 1336 | 
            +
            						when 23  then
         | 
| 1312 1337 | 
             
            						begin
         | 
| 1313 1338 | 
             
            							begin
         | 
| 1314 1339 | 
             
            								begin
         | 
| @@ -1319,7 +1344,7 @@ def self.run_lexer(query_string) | |
| 1319 1344 | 
             
            							end
         | 
| 1320 1345 | 
             
            							begin
         | 
| 1321 1346 | 
             
            								begin
         | 
| 1322 | 
            -
            									act =  | 
| 1347 | 
            +
            									act = 39;
         | 
| 1323 1348 |  | 
| 1324 1349 | 
             
            								end
         | 
| 1325 1350 |  | 
| @@ -1345,6 +1370,10 @@ def self.run_lexer(query_string) | |
| 1345 1370 |  | 
| 1346 1371 | 
             
            					end
         | 
| 1347 1372 | 
             
            				end
         | 
| 1373 | 
            +
            				if ( cs == 0  )
         | 
| 1374 | 
            +
            					_cont = 0;
         | 
| 1375 | 
            +
            					
         | 
| 1376 | 
            +
            				end
         | 
| 1348 1377 | 
             
            				if ( _cont == 1  )
         | 
| 1349 1378 | 
             
            					p += 1;
         | 
| 1350 1379 |  | 
| @@ -1368,11 +1397,11 @@ end | |
| 1368 1397 |  | 
| 1369 1398 | 
             
            def self.record_comment(ts, te, meta)
         | 
| 1370 1399 | 
             
            token = GraphQL::Language::Token.new(
         | 
| 1371 | 
            -
             | 
| 1372 | 
            -
             | 
| 1373 | 
            -
             | 
| 1374 | 
            -
             | 
| 1375 | 
            -
             | 
| 1400 | 
            +
            :COMMENT,
         | 
| 1401 | 
            +
            meta[:data][ts, te - ts].pack(PACK_DIRECTIVE).force_encoding(UTF_8_ENCODING),
         | 
| 1402 | 
            +
            meta[:line],
         | 
| 1403 | 
            +
            meta[:col],
         | 
| 1404 | 
            +
            meta[:previous_token],
         | 
| 1376 1405 | 
             
            )
         | 
| 1377 1406 |  | 
| 1378 1407 | 
             
            meta[:previous_token] = token
         | 
| @@ -1380,13 +1409,14 @@ meta[:previous_token] = token | |
| 1380 1409 | 
             
            meta[:col] += te - ts
         | 
| 1381 1410 | 
             
            end
         | 
| 1382 1411 |  | 
| 1383 | 
            -
            def self.emit(token_name, ts, te, meta)
         | 
| 1412 | 
            +
            def self.emit(token_name, ts, te, meta, token_value = nil)
         | 
| 1413 | 
            +
            token_value ||= meta[:data][ts, te - ts].pack(PACK_DIRECTIVE).force_encoding(UTF_8_ENCODING)
         | 
| 1384 1414 | 
             
            meta[:tokens] << token = GraphQL::Language::Token.new(
         | 
| 1385 | 
            -
             | 
| 1386 | 
            -
             | 
| 1387 | 
            -
             | 
| 1388 | 
            -
             | 
| 1389 | 
            -
             | 
| 1415 | 
            +
            token_name,
         | 
| 1416 | 
            +
            token_value,
         | 
| 1417 | 
            +
            meta[:line],
         | 
| 1418 | 
            +
            meta[:col],
         | 
| 1419 | 
            +
            meta[:previous_token],
         | 
| 1390 1420 | 
             
            )
         | 
| 1391 1421 | 
             
            meta[:previous_token] = token
         | 
| 1392 1422 | 
             
            # Bump the column counter for the next token
         | 
| @@ -1415,33 +1445,42 @@ UTF_8_ENCODING = "UTF-8" | |
| 1415 1445 |  | 
| 1416 1446 | 
             
            def self.emit_string(ts, te, meta, block:)
         | 
| 1417 1447 | 
             
            quotes_length = block ? 3 : 1
         | 
| 1418 | 
            -
            ts  | 
| 1419 | 
            -
            value = meta[:data][ts...te - quotes_length].pack(PACK_DIRECTIVE).force_encoding(UTF_8_ENCODING)
         | 
| 1448 | 
            +
            value = meta[:data][ts + quotes_length, te - ts - 2 * quotes_length].pack(PACK_DIRECTIVE).force_encoding(UTF_8_ENCODING) || ''
         | 
| 1420 1449 | 
             
            line_incr = 0
         | 
| 1421 | 
            -
            if block
         | 
| 1450 | 
            +
            if block && !value.empty?
         | 
| 1422 1451 | 
             
            line_incr = value.count("\n")
         | 
| 1423 1452 | 
             
            value = GraphQL::Language::BlockString.trim_whitespace(value)
         | 
| 1424 1453 | 
             
            end
         | 
| 1425 1454 | 
             
            # TODO: replace with `String#match?` when we support only Ruby 2.4+
         | 
| 1426 1455 | 
             
            # (It's faster: https://bugs.ruby-lang.org/issues/8110)
         | 
| 1427 | 
            -
            if value  | 
| 1456 | 
            +
            if !value.valid_encoding? || !value.match?(VALID_STRING)
         | 
| 1428 1457 | 
             
            meta[:tokens] << token = GraphQL::Language::Token.new(
         | 
| 1429 | 
            -
             | 
| 1430 | 
            -
            value | 
| 1431 | 
            -
             | 
| 1432 | 
            -
             | 
| 1433 | 
            -
             | 
| 1458 | 
            +
            :BAD_UNICODE_ESCAPE,
         | 
| 1459 | 
            +
            value,
         | 
| 1460 | 
            +
            meta[:line],
         | 
| 1461 | 
            +
            meta[:col],
         | 
| 1462 | 
            +
            meta[:previous_token],
         | 
| 1434 1463 | 
             
            )
         | 
| 1435 1464 | 
             
            else
         | 
| 1436 1465 | 
             
            replace_escaped_characters_in_place(value)
         | 
| 1437 1466 |  | 
| 1438 | 
            -
             | 
| 1439 | 
            -
             | 
| 1440 | 
            -
             | 
| 1441 | 
            -
             | 
| 1442 | 
            -
             | 
| 1443 | 
            -
             | 
| 1444 | 
            -
             | 
| 1467 | 
            +
            if !value.valid_encoding?
         | 
| 1468 | 
            +
            	meta[:tokens] << token = GraphQL::Language::Token.new(
         | 
| 1469 | 
            +
            	:BAD_UNICODE_ESCAPE,
         | 
| 1470 | 
            +
            	value,
         | 
| 1471 | 
            +
            	meta[:line],
         | 
| 1472 | 
            +
            	meta[:col],
         | 
| 1473 | 
            +
            	meta[:previous_token],
         | 
| 1474 | 
            +
            	)
         | 
| 1475 | 
            +
            	else
         | 
| 1476 | 
            +
            	meta[:tokens] << token = GraphQL::Language::Token.new(
         | 
| 1477 | 
            +
            	:STRING,
         | 
| 1478 | 
            +
            	value,
         | 
| 1479 | 
            +
            	meta[:line],
         | 
| 1480 | 
            +
            	meta[:col],
         | 
| 1481 | 
            +
            	meta[:previous_token],
         | 
| 1482 | 
            +
            	)
         | 
| 1483 | 
            +
            	end
         | 
| 1445 1484 | 
             
            end
         | 
| 1446 1485 |  | 
| 1447 1486 | 
             
            meta[:previous_token] = token
         |