h&E̥      !"#$%&'()*+,-./0123456789:;<=>?@AB C D E F G H I J K L M N O P Q R S TU V WXY Z [ \ ] ^ _ ` a b c d e f g h i j klmnopq r s t uvwxyz{|}~                                                                                                                                                                                                                                                                ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " "                                 # # # # # # # # # $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $                               % % % % % % % % % % % % % % % % % % % % % % % % % % % % % & & & & & & & & & & & & & & & & & & & & & & & & & & & & ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ) ) ) ) ) ) ) ) ) ) * * * * * * * * * * * + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , -                                 ......................................................../////////////////////////////////////0000011  222222222222222222227None: "#$%&'(+-./12356789:<=>?*lorentz A Generic  HasAnnotation implementationlorentzThis class defines the type and field annotations for a given type. Right now the type annotations come from names in a named field, and field annotations are generated from the record fields.lorentzUsed in  as a flag to track whether or not field/constructor annotations should be generated.lorentzUsed in  and  as a flag to track whether or not it directly follows an entrypoint to avoid introducing extra entrypoints.lorentzAllow customization of field annotation generated for a type when declaring its  instance.lorentzDrops the field name prefix from a field. We assume a convention of the prefix always being lower case, and the first letter of the actual field name being uppercase. It also accepts another function which will be applied directly after dropping the prefix.lorentzappendTo suffix fields field appends the given suffix to field if the field exists in the fields list.lorentzUse this in the instance of  HasAnnotation1 when field annotations should not be generated.012>210>None: "#$%&'(+-./12356789:<=>?-elorentzConstraint applied to any type, to check if Michelson representation (if exists) of this type is Comparable. In case it is not prints human-readable error messagelorentz3Constraint applied to any part of a parameter type.Use 3 instead when you need to know the contract's entrypoints at compile-time.lorentz/Ensure given type does not contain "operation".lorentz2Gathers constraints, commonly required for values.**None: "#$%&'(+-./12356789:<=>?03lorentz%Ensure that given type is a sum type.This helps to prevent attempts to apply a function to, for instance, a pair.lorentzUsed to understand whether a type can potentially declare any entrypoints.lorentzA special type which wraps over a primitive type and states that it has entrypoints (one).Assuming that any type can have entrypoints makes use of Lorentz entrypoints too annoying, so for declaring entrypoints for not sum types we require an explicit wrapper.None: "#$%&'(+-./12356789:<=>?M+lorentzNo entrypoints declared, parameter type will serve as argument type of the only existing entrypoint (default one).lorentzCheck that the given entrypoint has some fields inside. This interface allows for an abstraction of contract parameter so that it requires some *minimal* specification, but not a concrete one.lorentzChecks that the given parameter consists of some specific entrypoint. Similar as > but ensures that the argument matches the following datatype.lorentz$This wrapper allows to pass untyped  and bypass checking that entrypoint with given name and type exists.lorentz. constraint specialized to default entrypoint.lorentzWhen we call a Lorentz contract we should pass entrypoint name and corresponding argument. Ideally we want to statically check that parameter has entrypoint with given name and argument. Constraint defined by this type class holds for contract with parameter cp that have entrypoint matching name with type arg.In order to check this property statically, we need to know entrypoint name in compile time,  type serves this purpose. If entrypoint name is not known, one can use  wrapper to take responsibility for presence of this entrypoint.If you want to call a function which has this constraint, you have two options: 1. Pass contract parameter cp using type application, pass  as a value and pass entrypoint argument. Type system will check that cp; has an entrypoint with given reference and type. 2. Pass  wrapped into  and entrypoint argument. In this case passing contract parameter is not necessary, you do not even have to know it.lorentz;Data returned by this method may look somewhat arbitrary.  is obviously needed because name can be  or . Dict is returned because in  case we get this evidence for free and don't want to use it. We seem to always need it anyway.lorentzUniversal entrypoint lookup.lorentz3Constraint on type-level entrypoint name specifier.lorentzWhich entrypoint to call.We intentionally distinguish default and non-default cases because this makes API more details-agnostic.lorentzCall the default entrypoint, or root if no explicit default is assigned.lorentzCall the given entrypoint; calling default is not treated specially. You have to provide entrypoint name via passing it as type argument.Unfortunatelly, here we cannot accept a label because in most cases our entrypoints begin from capital letter (being derived from constructor name), while labels must start from a lower-case letter, and there is no way to make a conversion at type-level.lorentz Similar to , but in a version which the compiler can work with (and which produces errors confusing for users :/)lorentz6Ensure that there is no explicit "default" entrypoint.lorentz:Get type of entrypoint with given name, fail if not found.lorentz:Get type of entrypoint with given name, fail if not found.lorentz#Lookup for entrypoint type by name.4Does not treat default entrypoints in a special way.lorentz+Get all entrypoints declared for parameter.lorentz Version of  which we actually use in function signatures. When given type is sum type or newtype, we refer to 9, otherwise we suppose that no entrypoints are declared.lorentz$Parameter declares some entrypoints.This is a version of  which we actually use in constraints. When given type is a sum type or newtype, we refer to 5 instance, otherwise this instance is not necessary.lorentz+Which entrypoints given parameter declares.Note that usually this function should not be used as constraint, use  for this purpose.lorentz&Wrap into constructor with given name.lorentz%How one of the entrypoints is called.Type arguments are name of the constructor which eventually gave name to the entrypoint and this entrypoint's argument.lorentzEntrypoint argument type.lorentzName of assigned entrypoint.lorentzIf we emulated entrypoints calling via just wrapping an argument into constructors until getting the full parameter, how would it look like. Steps are enlisted in reversed order - top-level constructors go last.lorentz*Result of entrypoint lookup at term level.lorentz0Ensure that all declared entrypoints are unique.lorentzDefines a generalized way to declare entrypoints for various parameter types.8When defining instances of this typeclass, set concrete deriv argument and leave variable cp argument. Also keep in mind, that in presence of explicit default entrypoint, all other  arms should be callable, though you can put this burden on user if very necessary.Methods of this typeclass aim to better type-safety when making up an implementation and they may be not too convenient to use; users should exploit their counterparts.lorentzName and argument of each entrypoint. This may include intermediate ones, even root if necessary.%Touching this type family is costly (O(N^2)), don't use it often.Note [order of entrypoints children]: If this contains entrypoints referring to indermediate nodes (not leaves) in or tree, then each such entrypoint should be mentioned eariler than all of its children.lorentz Get entrypoint argument by name.lorentzConstruct parameter annotations corresponding to expected entrypoints set.This method is implementation detail, for actual notes construction use .lorentzConstruct entrypoint caller.This does not treat calls to default entrypoint in a special way.This method is implementation detail, for actual entrypoint lookup use .lorentz:Description of how each of the entrypoints is constructed.lorentz Version of  which we actually use in code. It hides derivations stuff inside, and treats primitive types specially like  does.lorentz Version of  which we actually use in code. It hides derivations stuff inside, and treats primitive types specially like  does.lorentz Version of  which we actually use in code. It hides derivations stuff inside, and treats primitive types specially like  does.lorentz;Descriptions of how each of the entrypoints is constructed. Similar to , but includes default entrypoint disregard whether it is explicit or not, while  includes it only if it is explicit. Also this returns list, not 8, for simplicity.Note that [order of entrypoints children] property still holds here.lorentz'Derive annotations for given parameter.lorentz!Prepare call to given entrypoint.This does not treat calls to default entrypoint in a special way. To call default entrypoint properly use .lorentzCall the default entrypoint.lorentzCall root entrypoint safely.lorentzUniversal entrypoint calling.550None: "#$%&'(+-./12356789:<=>?N_   )(!"#'-345'3 )( #!"45- None: "#$%&'(+-./12356789:<=>?U' lorentz)Interface of a single view at term-level.lorentzMap views to get their names.lorentzConstraint indicating that presence of the view with the specified parameters is implied by the views descriptor.lorentz#Reveal views and find a view there.lorentz"Find a view in a contract by name.lorentzA views descriptor that directly carries the full list of views.lorentz+Get a list of views by a descriptor object.The problem this type family solves: it is unpleasant to carry around a list of views because it may be large, and if we merely hide this list under a type alias, error messages will still mention the type alias expanded. We want e.g.  Contract Parameter Storage Views to be carried as-is.  Parameter and Storage5 are usually datatypes and they are fine, while for Views? to be not automatically expanded we have to take special care."You can still provide the list of s to this type family using , but generally prefer creating a dedicated datatype that would expand to a views list.lorentzNeat constructor for .*type View = "view" ?:: Integer >-> Naturallorentz$Type-level information about a view.lorentz/Demote view name from type level to term level.lorentzDemote s to s.lorentzDemote views descriptor to s.lorentzCheck that the given set of views covers the given view interfaces. Extra views in the set, that do not appear in the interface, are fine.53None: "#$%&'(+-./12356789:<=>?XlorentzRequire views set referred by the given views descriptor to be proper.lorentzRequire views set to be proper.lorentz+Tells whether given type is dupable or not.lorentz-Constraint applied to a whole parameter type.lorentzCheck whether given value is dupable, returning a proof of that when it is.This lets defining methods that behave differently depending on whether given value is dupable or not. This may be suitable when for the dupable case you can provide a more efficient implementation, but you also want your implementation to be generic.Example: code = case decideOnDupable @a of IsDupable -> do dup; ... IsNotDupable -> ... 4None: "#$%&'(+-./12356789:<=>?Y[!*None: "#$%&'(+-./12356789:<=>?a`lorentz*Applicable for wrappers over Lorentz code.lorentz'Modify all the code under given entity.lorentz An alias for ':.We discourage its use as this hinders reading error messages (the compiler inserts unnecessary parentheses and indentation).lorentzCompiled Lorentz contract.Note, that the views argument (views descriptor) is added comparing to the Michelson. In Michelson, ability to call a view is fully checked at runtime, but in Lorentz we want to make calls safer at compile-time.lorentzReady contract code.lorentz%Contract that contains documentation.We have to keep it separately, since optimizer is free to destroy documentation blocks. Also, it is not  5: but Lorentz code because the latter is easier to modify.lorentz Alias for 3, seems to make signatures more readable sometimes.:Let's someday decide which one of these two should remain.lorentzAlias for instruction which hides inner types representation via T.lorentz4Wrap Lorentz instruction with variable annotations, annots list has to be non-empty, otherwise this function raises an error.lorentzDemote Lorentz  to Michelson typed .lorentz&Function composition for instructions.Note that, unlike Morley's 67 operator,  is left-associative.lorentzParse textual representation of a Michelson value and turn it into corresponding Haskell value.Note: it won't work in some complex cases, e. g. if there is a lambda which uses an instruction which depends on current contract's type. Obviously it can not work, because we don't have any information about a contract to which this value belongs (there is no such contract at all).lorentzLorentz version of .lorentzLorentz version of .  2118None: "#$%&'(+-./12356789:<=>?eglorentzInclude a value at given position on stack into comment produced by .  stackRef @0 includesthe top of the stacklorentz-Print a comment. It will be visible in tests. printComment "Hello world!" printComment $ "On top of the stack I see " <> stackRef @0lorentz,Test an invariant, fail if it does not hold.This won't be included into production contract and is executed only in tests.lorentz2Fix the current type of the stack to be given one. stackType @'[Natural] stackType @(Integer : Natural : s) stackType @'["balance" :! Integer, "toSpend" :! Integer, BigMap Address Integer]3Note that you can omit arbitrary parts of the type. >stackType @'["balance" :! Integer, "toSpend" :! _, BigMap _ _]None: "#$%&'(+-./12356789:<=>?g1lorentz Version of  which accepts no argument.lorentz Single entrypoint of a contract.#Note that we cannot make it return [[Operation], store]5 because such entrypoint should've been followed by pair, and this is not possible if entrypoint implementation ends with 8. None: "#$%&'(+-./12356789:<=>?or lorentzConvert something from q in Haskell world.lorentzConvert something to q in Haskell world.lorentzConvert something referring to a contract (not specific entrypoint) to  in Haskell world.lorentzConvert something to  in Haskell world.Use this when you want to access state of the contract and are not interested in calling it.lorentz!Address associated with value of  contract arg type. Places where q can appear are now severely limited, this type gives you type-safety of q but still can be used everywhere. This type is not a full-featured one rather a helper; in particular, once pushing it on stack, you cannot return it back to Haskell world.Note that it refers to an entrypoint of the contract, not just the contract as a whole. In this sense this type differs from . Unlike with q, having this type you still cannot be sure that the referred contract exists and need to perform a lookup before calling it.lorentz%Something coercible to 'TAddress cp'.lorentzAddress which remembers the parameter and views types of the contract it refers to.It differs from Michelson's contract type because it cannot contain entrypoint, and it always refers to entire contract parameter even if this contract has explicit default entrypoint.lorentzFor a contract and an address of its instance, construct a typed address.lorentzTurn  to q in Haskell world.This is an analogy of address to contract convertion in Michelson world, thus you have to supply an entrypoint (or call the default one explicitly).lorentzSpecification of  to call the default entrypoint.lorentzGeneralization of  to any typed address.lorentzGeneralization of  to any typed address.lorentzCast something appropriate to .!SYZ[\qrst!YZ[\qrstSNone: "#$%&'(+-./12356789:<=>?slorentzDeclares that it is safe to wrap an inner type to the given wrapper type. Can be provided in addition to .You can declare this instance when your wrapper exists just to make type system differentiate the two types. Example: !newtype TokenId = TokenId Natural.Do not define this instance for wrappers that provide some invariants. Example: UStore type from morley-upgradeable. is similar to lens Wrapped class without the method.lorentzDeclares that this type is just a wrapper over some other type and it can be safely unwrapped to that inner type.Inspired by lens Wrapped.lorentz2The type we unwrap to (inner type of the newtype).Used in constraint for Lorentz instruction wrapping into a Haskell newtype and vice versa.None; "#$%&'(+-./12356789:<=>?ulorentzValue returned by  READ_TICKET instruction.lorentzLike Fixed but with a Natural value inside constructorlorentz6Datatypes, representing base of the fixed-point valueslorentz Provides 5 instance that prints Lorentz value via Michelson's X.7Result won't be very pretty, but this avoids requiring   or  instances. %$+,:;<=@ASTWXYZ[\mnopqrstuvwyxz{|}~Xvwyx;YZ[\nopmWqrst{|}~Tuz%$:S +,<=None: "#$%&'(+-./12356789:<=>?y lorentzLifted .lorentzLifted .lorentzLifted .lorentzLifted .lorentzLifted .4This could be just a constraint alias, but to avoid  types appearance in error messages we make a full type class with concrete instances.lorentzLifted .lorentzLifted .lorentz-A useful property which holds for reasonable  instances.It's a separate thing from  because it mentions b type parameter.lorentzLifted .None: "#$%&'(+-./12356789:<=>? lorentzBuild  by parameter type.lorentzEntrypoints tree - skeleton on  tree later used to distinguish between constructors-entrypoints and constructors which consolidate a whole pack of entrypoints.lorentz6We are in the intermediate node and need to go deeper.lorentzWe reached entrypoint argument.lorentzWe reached complex parameter part and will need to ask how to process it.lorentz Extension of , , and < which allow specifying root annotation for the parameters.lorentz Extension of : on parameters being defined as several nested datatypes.In particular, it will traverse the immediate sum type, and require another  for the inner complex datatypes. Only those inner types are considered which are the only fields in their respective constructors. Inner types should not themselves declare default entrypoint, we enforce this for better modularity. Each top-level constructor will be treated as entrypoint even if it contains a complex datatype within, in such case that would be an entrypoint corresponding to intermediate node in or tree. Comparing to  this gives you more control over where and how entrypoints will be derived.lorentz Extension of : on parameters being defined as several nested datatypes.In particular, this will traverse sum types recursively, stopping at Michelson primitives (like =) and constructors with number of fields different from one.2It does not assign names to intermediate nodes of  tree, only to the very leaves.)If some entrypoint arguments have custom v instance, this derivation way will not work. As a workaround, you can wrap your argument into some primitive (e.g. 9).lorentzImplementation of  which fits for case when your contract exposes multiple entrypoints via having sum type as its parameter.In particular, each constructor would produce a homonymous entrypoint with argument type equal to type of constructor field (each constructor should have only one field). Constructor called +' will designate the default entrypoint.  None: "#$%&'(+-./12356789:<=>?}lorentz5Helper typeclass that provides default definition of .lorentzLifted .lorentz5Helper typeclass that provides default definition of .lorentzLifted .  None: "#$%&'(+-./12356789:<=>?vlorentzWrap parameter into this to locally assign a way to derive entrypoints for it.:None: "#$%&'(+-./12356789:<=>?--None: "#$%&'(+-./12356789:<=>? lorentz!Require several stacks to comply  constraint.lorentz"Zipping stack into tuple and back.lorentz-A type which contains the whole stack zipped.lorentz6Fold given stack into single value in typed Michelson.lorentz:Unfold given stack from a single value in typed Michelson.lorentz#Fold given stack into single value.lorentz'Unfold given stack from a single value.lorentz'Flatten both ends of instruction stack.lorentz)Unflatten both ends of instruction stack.lorentzSuch definition seems the only possible one we can support efficiently.   None: "#$%&'(+-./12356789:<=>? lorentz,Renders to documentation of view descriptor.lorentz,Provides documentation for views descriptor.Note that views descriptors may describe views that do not belong to the current contract, e.g. TAddress may refer to an external contract provided by the user in which we want to call a view.lorentz1Renders to a line mentioning the view's argument.lorentz1Renders to a line mentioning the view's argument.lorentzRenders to a view section.lorentz)Modify the example value of an entrypointlorentzPut a document item.lorentzGroup documentation built in the given piece of code into block dedicated to one thing, e.g. to one entrypoint.)Examples of doc items you can pass here: , .lorentzInsert documentation of the contract storage type. The type should be passed using type applications.lorentzGive a name to given contract. Apply it to the whole contract code.lorentzTakes an instruction that inserts documentation items with general information about the contract. Inserts it into general section. See .lorentzInserts general information about the contract using the default format.This includes git revision and some other information common for all contracts. Git revision is left unknown in the library code and is supposed to be updated in an executable using e.g. .lorentz1Leave only instructions related to documentation.This function is useful when your method executes a lambda coming from outside, but you know its properties and want to propagate its documentation to your contract code.BCDEFGHIJKLMNOPQR]^_`abdcefghijE]^FdcefghijabP_`GDLNOKBQHIJMCRNone9 "#$%&'(+-/12356789:<=>?lorentz'Documentation item for hash algorithms.lorentzHash algorithm used in Tezos.lorentz Hash of type t evaluated from data of type a.lorentz9Represents a signature, where signed data has given type.Since we usually sign a packed data, a common pattern for this type is  TSignature ( signedData). If you don't want to use  , use plain TSignature ByteString instead.lorentz Represents a ( resulting from packing a value of type a.This is not+ guaranteed to keep some packed value, and unpack can fail. We do so because often we need to accept values of such type from user, and also because there is no simple way to check validity of packed data without performing full unpack. So this wrapper is rather a hint for users.lorentz0Everything which is represented as bytes inside.lorentzSign data using lorentzEvaluate hash in Haskell world.None: "#$%&'(+-./12356789:<=>?lorentz-This function transforms Lorentz values into  script_expr. script_expr is used in RPC as an argument in entrypoint designed for getting value by key from the big_map in Babylon. In order to convert value to the  script_expr9 we have to pack it, take blake2b hash and add specific expr prefix. Take a look at  https://gitlab.com/tezos/tezos/blob/6e25ae8eb385d9975a30388c7a7aa2a9a65bf184/src/proto_005_PsBabyM1/lib_protocol/script_expr_hash.ml and  https://gitlab.com/tezos/tezos/blob/6e25ae8eb385d9975a30388c7a7aa2a9a65bf184/src/proto_005_PsBabyM1/lib_protocol/contract_services.ml#L136 for more information.lorentz Similar to , but for values encoded as s. This is only used in tests.None: "#$%&'(+-./12356789:<=>?jlorentz Drop top n elements from the stack.lorentzCopies a stack argument.Hit the  constraint? Polymorphism and abstractions do not play very well with this constraint, you can enjoy suffering from the linear types feature under various sauces: -The most trivial option is to just propagate % constraint when you want to use , this suits for case when you are not planning to work with non-dupable types like tickets."Sometimes it is possible to avoid . and use other instructions instead (e.g. ' allows splitting a pair without using s,  allows accessing a map value without implicit duplication). But you may have to learn to write code in a completely different way, and the result may be less efficient comparing to the option with using dup.Use  to provide two code paths - when type is dupable and when it is not.lorentz Version of  which uses Peano number. It is intended for internal usage in Lorentz.lorentz Version of  which uses Peano number. It is intended for internal usage in Lorentz.lorentz Similar to  but works for lambdas with arbitrary size of input and output.Note that this instruction has its arguments flipped, lambda goes first. This seems to be the only reasonable way to achieve good inference.lorentz Version of  that works for lambdas with arbitrary length input and output.lorentz Version of  which uses Peano number. It is intended for internal usage in Lorentz.lorentzManual variation of VIEW2 instruction. It is pretty much like Michelson's VIEW, you must make sure that the compiler can infer the argument and return types of the view.In most cases prefer $; instead.lorentz(Get a reference to the current contract.Note that, similar to  instruction, in Michelson  instruction can accept an entrypoint as field annotation, and without annotation specified it creates a contract* value which calls the default entrypoint.2This particular function carries the behaviour of SELF before introduction of lightweight entrypoints feature. Thus the contract must not6 have explicit "default" entrypoint for this to work.If you are going to call a specific entrypoint of the contract, see .lorentzMake a reference to the current contract, maybe a specific entrypoint.Note that, since information about parameter of the current contract is not carried around, in this function you need to specify parameter type p explicitly.lorentz-Get a reference to a contract by its address.*This instruction carries the behaviour of CONTRACT before introduction of lightweight entrypoints feature. The contract must not5 have explicit "default" entrypoint for this to work.If you are going to call a specific entrypoint of the contract, see .lorentz?mlorentz3Duplicate an element of stack referring it by type.If stack contains multiple entries of this type, compile error is raised.lorentzDip repeatedly until element of the given type is on top of the stack.If stack contains multiple entries of this type, compile error is raised.lorentz2Remove element with the given type from the stack. None< "#$%&'(+-./12356789:;<=>?h.lorentz Documentation for custom errors.,Mentions that entrypoint throws given error.lorentz(Mentions that contract uses given error.lorentz/What should happen for this error to be raised.lorentzBrief version of . This will appear along with the error when mentioned in entrypoint description.?By default, the first sentence of the full description is used.lorentz Error class.By default this returns "unknown error" class; though you should provide explicit implementation in order to avoid a warning.lorentz(Clarification of error argument meaning.?Provide when it's not obvious, e.g. argument is not named with 9.NOTE: This should not; be an entire sentence, rather just the semantic backbone.Bad: * 9Error argument stands for the previous value of approval. Good: * the previous value of approval * pair, first argument of which is one thing, and the second is anotherlorentz=Error class on how the error should be handled by the client.lorentzNormal expected error. Examples: "insufficient balance", "wallet does not exist".lorentzInvalid argument passed to entrypoint. Examples: your entrypoint accepts an enum represented as nat, and unknown value is provided. This includes more complex cases which involve multiple entrypoints. E.g. API provides iterator interface, middleware should care about using it hiding complex details and exposing a simpler API to user; then an attempt to request non-existing element would also correspond to an error from this class.lorentzUnexpected error. Most likely it means that there is a bug in the contract or the contract has been deployed incorrectly.lorentz/It's possible to leave error class unspecified.lorentz3Typeclass implements various method that work with .lorentzHow & is actually represented in Michelson.lorentzTo be used as ErrorArg) instances. This is equivalent to using () but using  UnitErrorArg is preferred since ()* behavior could be changed in the future.lorentzTo be used as ErrorArg$ instance when failing with just a string instead of  pair string xlorentzMaterial custom error.:Use this in pattern matches against error (e.g. in tests).lorentz"Declares a custom error, defining error name - error argument relation.=If your error is supposed to carry no argument, then provide ().Note that this relation is defined globally rather than on per-contract basis, so define errors accordingly. If your error has argument specific to your contract, call it such that error name reflects its belonging to this contract.!This is the basic [error format].lorentzType wrapper for an IsError.lorentzUse this error when sure that failing at the current position is possible in no curcumstances (including invalid user input or misconfigured storage).To use this as error, you have to briefly specify the reason why the error scenario is impossible (experimental feature).lorentz!Use this type as replacement for () when you really( want to leave error cause unspecified. lorentzConstraints which we require in a particular instance. You are not oblidged to often instantiate this correctly, it is only useful for some utilities. lorentz?Name of error as it appears in the corresponding section title. lorentz/What should happen for this error to be raised. lorentzBrief version of  .This will appear along with the error when mentioned in entrypoint description. By default, the first sentence of the full description is used. lorentz)How this error is represented in Haskell. lorentz Error class. lorentz8Which definitions documentation for this error mentions. lorentzCaptured constraints which we require in a particular instance. This is a way to encode a bidirectional instance in the nowaday Haskell, for (class MyConstraint => ErrorHasDoc MyType instance it lets deducing  MyConstraint by ErrorHasDoc MyType.You are not oblidged to always instantiate, it is only useful for some utilities which otherwise would not compile. lorentz Haskell type representing error. lorentzConverts a Haskell error into Value representation. lorentz Converts a Value into Haskell error. lorentz"Fail with the given Haskell value. lorentzSince 008 it's prohibited to fail with non-packable values and with the 'Contract t' type values, which is equivalent to our  ConstantScope constraint. See  ;https://gitlab.com/tezos/tezos/-/issues/1093#note_496066354 for more information. lorentzImplementation of   via v. lorentzImplementation of   via v. lorentzBasic implementation for  . lorentzFail, providing a reference to the place in the code where this function is called.Like 5? in Haskell code, this instruction is for internal errors only. lorentzDemote error tag to term level. lorentzFail with given custom error. lorentzFail with given custom error. lorentzSpecialization of   for unit-arg errors. lorentz3Whether given error class is about internal errors.Internal errors are not enlisted on per-entrypoint basis, only once for the entire contract. lorentzImplementation of g (of d typeclass) for Haskell types which sole purpose is to be error. lorentz)This instance cannot be implemented, use   instance instead. lorentzIf  constructor is not provided its argument, we assume that this is unit-arg error and interpret the passed value as complete. lorentz"Use this for internal errors only."Normal" error scenarios should use the mechanism of custom errors, see below.; ;      None: "#$%&'(+-./12356789:<=>?΄ lorentz!QuasiQuote that helps generating ParameterHasEntrypoints instance.Usage: [entrypointDoc| Parameter |] [entrypointDoc| Parameter plain |] [entrypointDoc| Parameter plain "root"|]  See this  ,https://indigo-lang.gitlab.io/contract-docs/tutorial! which includes this quasiquote. lorentz!QuasiQuote that helps generating CustomErrorHasDoc instance.Usage: [errorDoc| |] [errorDoc| "errorName" exception "Error description" |]  See this  ,https://indigo-lang.gitlab.io/contract-docs/tutorial! which includes this quasiquote. lorentz!QuasiQuote that helps generating  TypeHasDoc instance.Usage: [typeDoc| |] [typeDoc| Storage "This is storage description" |]  See this  ,https://indigo-lang.gitlab.io/contract-docs/tutorial! which includes this quasiquote.  None: "#$%&'(+-./12356789:<=>? lorentzTags excluded from map. lorentzThis is a bidirectional map with correspondence between numeric and textual error tags. lorentz6Find all textual error tags that are used in typical FAILWITH patterns within given instruction. Map them to natural numbers. lorentz#Add more error tags to an existing  . It is useful when your contract consists of multiple parts (e. g. in case of contract upgrade), you have existing map for some part and want to add tags from another part to it. You can pass empty map as existing one if you just want to build  ! from a set of textual tags. See  . lorentzBuild   from a set of textual tags. lorentzRemove some error tags from map. This way you say to remain these string tags intact, while others will be converted to numbers when this map is applied.2Note that later you have to apply this map using  %, otherwise an error would be raised. lorentzFor each typical  that uses a string to represent error tag this function changes error tag to be a number using the supplied conversion map. It assumes that supplied map contains all such strings (and will error out if it does not). It will always be the case if you gather all error tags using   and build   from them using  . lorentz Similar to  >, but for case when you have excluded some tags from map via  . Needed, because both   and this function do not tolerate unknown errors in contract code (for your safety). lorentzThis function implements the simplest scenario of using this module's functionality: 1. Gather all error tags from a single instruction. 2. Turn them into error conversion map. 3. Apply this conversion. lorentz?' lorentz!Replacement for uninhabited type. lorentz)Witness of that this code is unreachable.lorentzSomeone constructed   type.  !None: "#$%&'(+-./12356789:<=>? lorentzCoercions between a to b are permitted and safe. lorentzCoercion from a to b is permitted and safe. lorentzExplicitly allowed coercions.a   b proclaims that a can be casted to b& without violating any invariants of b.This relation is reflexive; it may be symmetric or not. It tends to be composable: casting complex types usually requires permission to cast their respective parts; for such types consider using  4 as implementation of the method of this typeclass.For cases when a cast from a to b requires some validation, consider rather making a dedicated function which performs the necessary checks and then calls  . lorentzAn optional method which helps passing -Wredundant-constraints check. Also, you can set specific implementation for it with specific sanity checks. lorentz9Whether two types have the same Michelson representation. lorentzCoercion for Haskell world.We discourage using this function on Lorentz types, consider using <= instead. One of the reasons for that is that in Lorentz it's common to declare types as newtypes consisting of existing primitives, and  forcedCoerce tends to ignore all phantom type variables of newtypes thus violating their invariants. lorentzConvert between values of types that have the same representation.This function is not safe in a sense that this allows * breaking invariants of casted type (example: UStore from morley-upgradeable), or * may stop compile on code changes (example: coercion of pair to a datatype with two fields will break if new field is added). Still, produced Michelson code will always be valid.=Prefer using one of more specific functions from this module. lorentz'Convert between two stacks via failing. lorentzSpecialized version of   to unwrap a haskell newtype. lorentzSpecialized version of   to wrap a haskell newtype. Works under  constraint, thus is not safe. lorentzSpecialized version of   to wrap into a haskell newtype. Requires  constraint. lorentz"Lift given value to a named value. lorentzUnpack named value. lorentz)Coercion in Haskell world which respects  . lorentzCoerce between types which have an explicit permission for that in the face of   constraint. lorentz4Pretends that the top item of the stack was coerced. lorentzLocally provide given   instance. lorentzLocally provide bidirectional   instance. lorentzImplementation of   for types composed from smaller types. It helps to ensure that all necessary constraints are requested in instance head.  "None; "#$%&'(+-./012356789:<=>? lorentz0Information to be provided for documenting some   x. lorentzImplementation for j of the corresponding  Extensible. lorentzImplementation for e of the corresponding  Extensible. lorentz!Overall description of this type. lorentz'Errors related to fromExtVal conversion lorentzConverts a value from a Haskell representation to its extensible Michelson representation (i.e. (Natural, Bytestring) pair). lorentzConverts a value from an extensible Michelson representation to its Haskell sum-type representation. Fails if the Michelson representation points to a nun-existent constructor, or if we failed to unpack the argument. lorentzWraps an argument on top of the stack into an Extensible representation  None; "#$%&'(+-./12356789:<=>? lorentzProvides "case" arrow which works on different wrappers for clauses. lorentz#Lift an instruction to case clause.You should write out constructor name corresponding to the clause explicitly. Prefix constructor name with "c" letter, otherwise your label will not be recognized by Haskell parser. Passing constructor name can be circumvented but doing so is not recomended as mentioning contructor name improves readability and allows avoiding some mistakes. lorentzLorentz analogy of , it works on plain  types. lorentz/This marker typeclass is a requirement for the   (where it is imposed on the datatype4), and it is supposed to be satisfied in two cases: The entire datatype is ;When the datatype has non-dupable fields, they are located so that   remains efficient.?The problem we are trying to solve here: without special care,  - may become multiple times more costly, see  for the explanation. And this typeclass imposes an invariant: if we ever use   on a datatype, then we have to pay attention to the datatype's Michelson representation and ensure   remains optimal.%When you are developing a contract: Lorentz.Layouts.NonDupable module contains utilities to help you provide the necessary Michelson layout. In case you want to use your custom layout but still allow   for it, you can define an instance for your type manually as an assurance that Michelson layout is optimal enough to use   on this type..When you are developing a library: Note that   resolves to  by default, and when propagating this constraint you can switch to  anytime but this will also make your code unusable in the presence of {s and other non-dupable types. lorentzShortcut for multiple   constraints. lorentzA pair of field name and type. lorentzLike  &, but allows constrainting field type. lorentz%Allows field access and modification. lorentzExtract a field of a datatype replacing the value of this datatype with the extracted field.For this and the following functions you have to specify field name which is either record name or name attached with (:!) operator. lorentzLike  , but leaves field named. lorentzExtract a field of a datatype, leaving the original datatype on stack. lorentzLike  , but leaves field named. lorentzSet a field of a datatype. lorentz)Apply given modifier to a datatype field. lorentz"Open" version of  4, an advanced method suitable for chaining getters.It accepts two continuations accepting the extracted field, one that leaves the field on stack (and does a duplication of res inside) and another one that consumes the field. Normally these are just getField and toField for some nested field.'Unlike the straightforward chaining of  /  methods,  getFieldOpen does not require the immediate field to be dupable; rather, in the best case only res has to be dupable. lorentz"Open" version of  4, an advanced method suitable for chaining setters.It accepts a continuation accepting the field extracted for the update and the new value that is being set. Normally this continuation is just setField for some nested field. lorentzMake up a datatype. You provide a pack of individual fields constructors.Each element of the accepted record should be an instruction wrapped with   function. This instruction will have access to the stack at the moment of calling  construct. Instructions have to output fields of the built datatype, one per instruction; instructions order is expected to correspond to the order of fields in the datatype. lorentz Version of  + which accepts tuple of field constructors. lorentz-Construct an object from fields on the stack. lorentz*Decompose a complex object into its fields lorentz)Lift an instruction to field constructor. lorentz0Wrap entry in constructor. Useful for sum types. lorentz=Wrap entry in single-field constructor. Useful for sum types. lorentz$Pattern match on the given sum type.You have to provide a 8; containing case branches. To construct a case branch use   operator. lorentzLike  ;, accepts a tuple of clauses, which may be more convenient.If user is experiencing problems with wierd errors about tuples while using this function, he should take look at Morley.Util.TypeTuple.Instances and ensure that his tuple isn't bigger than generated instances, if so, he should probably extend number of generated instances. lorentz?Unwrap a constructor with the given name. Useful for sum types.%./876kl % lk876./  0 0#None; "#$%&'(+-./12356789:<=>? lorentz Version of   for multiple variables. type HasContext = HasNamedVars s ["x" := Integer, "f" := Lambda MText MText] lorentzIndicates that stack s contains a  name :! var or  name :? var value. lorentzRequires type x to be an unnamed variable. When e.g.   sees a polymorphic variable, it can't judge whether is it a variable we are seeking for or not;  VarIsUnnamed helps to assure the type system that given variable won't be named. lorentz Version of  ' that leaves a named variable on stack. lorentz>Take the element with given label on stack and copy it on top.If there are multiple variables with given label, the one closest to the top of the stack is picked.  $None: "#$%&'(+-./12356789:<=>? e1 lorentz(Retain the value only if it is not zero. lorentzNewtype over void result type used in tests to distinguish successful void result from other errors.;Usage example: lExpectFailWith (== VoidResult roleMaster)`This error is special - it can contain arguments of different types depending on entrypoint which raises it. lorentzvoid! type synonym as described in A1. lorentzEntry point argument. lorentzType of result reported via . lorentzview! type synonym as described in A1. lorentzConstraint for updateN that combines kind-agnostic constraint for Lorentz (Haskell) types and for our typed Michelson. lorentzConstraint for replaceN that combines kind-agnostic constraint for Lorentz (Haskell) types and for our typed Michelson. lorentzInsert given element into map. lorentzInsert given element into map, ensuring that it does not overwrite any existing entry.=As first argument accepts container name (for error message). lorentzDelete element from the map. lorentz!An instruction that always fails. lorentzAnalog of the FAIL macro in Michelson. Its usage is discouraged because it doesn't carry any information about failure. lorentzCustom Lorentz macro that drops element with given index (starting from 0) from the stack. lorentzDuplicate the top of the stack n times.For example, `cloneX @3` has type `a : s :-> a : a : a : a : s`. lorentzDUU+P macro. For example, duupX 3 is DUUUP@, it puts the 3-rd (starting from 1) element to the top of the stack. Note that DUU+P has since been added as the DUP n= instruction and so this macro is defined simply as follows: duupX = dupN @n lorentz Version of  which accepts number of elements on input stack which should be preserved.You can treat this macro as calling a Michelson function with given number of arguments.Given a stack of 3 elements, >>> arg = (1 :: Integer, (2 :: Integer, 3 :: Integer))framedN will have access to exactly the number of elements specified, >>> framedN "1 drop -$ arg (2,3) >>> framedN 1 (drop # drop) -$ arg ... ... error: ... Couldn't match type @'[]@ with @Integer : o'0@ ...When the number of elements is larger than the size of the stack, framedN will have access to all of them: >>> framedN @5 (drop # drop) -$ arg 3But not more than there are on stack: >>> framedN @5 (drop # drop # drop # drop) -$ arg ... ... error: ... Couldn't match type @Integer@ with @(a0, (a1, out))@ ... lorentzpapair == pair # pairTruepapair -$ (True, (1, ())) ((True,1),()) lorentzppaiir == dip pair # pairTrueppaiir -$ (True, (1, ())) (True,(1,())) lorentzcdar == cdr # carTruecdar -$ (True, (1, ()))1 lorentzcddr == cdr # cdrTruecddr -$ (True, (1, ()))() lorentzcaar == car # carTruecaar -$ ((True, 1), ())True lorentzcadr == car # cdrTruecadr -$ ((True, 1), ())1 lorentzsetCar == cdr # swap # pairTruesetCar -$ ((True, 1), ())((),1) lorentzsetCdr == car # pairTruesetCdr -$ ((True, 1), ()) (True,()) lorentz1mapCar (not @Bool) == unpair # (not @Bool) # pairTruemapCar not -$ (True, 1) (False,1) lorentz5mapCdr (not @Bool) == unpair # dip (not @Bool) # pairTruemapCdr not -$ (1, True) (1,False) lorentzifRight (not @Bool) (dup @Integer # compare # eq0) == ifLeft (dup @Integer # compare # eq0) (not @Bool)TrueifRight not (dup # compare # eq0) -$ (Right True :: Either Integer Bool)FalseifRight not (dup # compare # eq0) -$ (Left 1 :: Either Integer Bool)True lorentzifSome (dup @Integer # compare # eq0) (push False) == ifNone (push False) (dup @Integer # compare # eq0)TrueifSome (dup # compare # eq0) (push False) -$ (Just 1 :: Maybe Integer)TrueifSome (dup # compare # eq0) (push False) -$ (Nothing :: Maybe Integer)False lorentzwhen_ (push 5 # add @Integer @Integer) == if_ (push 5 # add @Integer @Integer) nopTrue*when_ (push 5 # add @Integer) -$ (True, 3)8+when_ (push 5 # add @Integer) -$ (False, 3)3 lorentzunless_ (push 5 # add @Integer @Integer) == if_ nop (push 5 # add @Integer @Integer)True,unless_ (push 5 # add @Integer) -$ (True, 3)3-unless_ (push 5 # add @Integer) -$ (False, 3)8 lorentz whenSome drop == ifSome drop nopTrue.whenSome drop -$ (Just 1 :: Maybe Integer, ())() lorentz.whenNone (push True) == ifNone (push True) nopTrue/whenNone (push 1) -$ (Nothing :: Maybe Integer)1 lorentzInsert given element into set.!This is a separate function from 4 because stacks they operate with differ in length. lorentzInsert given element into set, ensuring that it does not overwrite any existing entry.)As first argument accepts container name. lorentz"Delete given element from the set. lorentzReplace nth element (0-indexed) with the one on the top of the stack. For example, `replaceN 93` replaces the 3rd element with the 0th one. `replaceN 0` is not a valid operation (and it is not implemented). `replaceN 1` is equivalent to `swap # drop` (and is the only one implemented like this). In all other cases `replaceN $n` will drop the nth element (`dipN 6n drop`) and then put the 0th one in its place (`dug (n-1)`). lorentzReplaces the nth element (0-indexed) with the result of the given "updating" instruction (binary with the return type equal to the second argument) applied to the 0th element and the nth element itself. For example, updateN @3 cons. replaces the 3rd element with the result of cons2 applied to the topmost element and the 3rd one. updateN @0 instr8 is not a valid operation (and it is not implemented). updateN @1 instr is equivalent to instr (and so is implemented). updateN @2 instr is equivalent to swap # dip instr. (and so is implemented). In all other cases updateN @n instr8 will put the topmost element right above the nth one ( dug @(n-1)1) and then apply the function to them in place (dipN @(n-1) instr). lorentzPolymorphic version of   constructor. lorentz*Wrap internal representation of view into   itself. 8 is part of public standard and should not change often. lorentzUnwrap  " into its internal representation. 8 is part of public standard and should not change often. lorentz*Wrap internal representation of void into   itself. 8 is part of public standard and should not change often. lorentzUnwrap  " into its internal representation. 8 is part of public standard and should not change often. lorentzPush a value of contract type.Doing this via  instruction is not possible, so we need to perform extra actions here. Aside from contract value itself you will need to specify which error to throw in case this value is not valid. lorentz0Duplicate two topmost items on top of the stack. lorentz5Retain the value if it is not equal to the given one. non 0 -$ 5Just 5 non 0 -$ 0Nothing lorentz Version of   with a custom predicate. non' eq0 -$ 5Just 5 non' eq0 -$ 0Nothing lorentz!Check whether container is empty. lorentz Call a view.Accepts the view name via a type annotation. This internally asserts the view to be present, as if the supplied TAddress argument is valid, the view is guaranteed to be called successfully.    None: "#$%&'(+-./12356789:<=>?' lorentz!Everything that can be put after if keyword.The first type argument stands for the condition type, and all other type arguments define stack types around/within the  if then else8 construction. For semantics of each type argument see  . lorentzDefines semantics of if ... then ... else ... construction. lorentzThe most basic predicate for if ... then .. else ... construction, defines a kind of operation applied to the top elements of the current stack."Type arguments mean: 1. Input of if 2. Left branch input 3. Right branch input 4. Output of branches 5. Output of if lorentzExplicitly named binary condition, to ensure proper order of stack arguments. lorentz"Provide the compared arguments to if branches. lorentz Aliases for  used by do-blocks. lorentzNamed version of  .In this and similar operators you provide names of accepted stack operands as a safety measure of that they go in the expected order. lorentzNamed version of  . lorentzNamed version of  . lorentzNamed version of  . lorentzNamed version of  . lorentzNamed version of  . lorentzCondition modifier, makes stack operands of binary comparison to be available within if branches.#&9 #  9& 4 4 4 4 4 4%None; "#$%&'(+-./012356789:<=>?* lorentzClass that allows casting Fixed values to Integer in vice versa lorentzClass that enables support of rounding operations for Lorentz non-integer values Note: Round is implemented using "banker's rounding" strategy, rounding half-way values towards nearest even value lorentzOperation that represents division of two values with a given result &None: "#$%&'(+-./12356789:<=>?5 lorentz2Expression is just an instruction accepting stack inp and producing stack out with evaluation result res at the top. lorentzConsume an element at the top of stack. This is just an alias for nop. lorentz9Lift an instruction to an unary operation on expressions. lorentz An alias for  . lorentz9Lift an instruction to a binary operation on expressions. lorentzExpressions addition. lorentzExpressions subtraction. lorentzExpressions multiplication. lorentzExpressions comparison. lorentzExpressions comparison. lorentzExpressions comparison. lorentzExpressions comparison. lorentzExpressions comparison. lorentzExpressions comparison. lorentzBitwise/logical AND on expressions. lorentzBitwise/logical OR on expressions.2In case you find this operator looking weird, see  lorentz An alias for  . lorentzBitwise/logical XOR on expressions. lorentzLeft shift on expressions. lorentzRight shift on expressions. lorentz on expressions. ,one :: a : s :-> [a] : s one = take |:| nil lorentzConstruct a simple pair. trivialContract :: ((), storage) :-> ([Operation], Storage) trivialContract = nil |@| cdr This is useful as pair appears even in simple contracts. For more advanced types, use >. lorentz An alias for  . trivialContract :: ((), storage) :-> ([Operation], Storage) trivialContract = pairE ( nil , cdr ) lorentz8Construct a list given the constructor for each element. lorentz Version of < instruction that accepts all the arguments as expressions. transferTokensE ! #arg L.unit ! #amount (push zeroMutez) ! #contract take |:| nil You can provide arguments in arbitrary order, but direction of stack changes flow is fixed: stack change in arg( expression affects stack available in amount" expression, and stack changes in amount% expression affect stack changes in contract expression. lorentz Version of < instruction that accepts all the arguments as expressions. createContractE ! #delegate none ! #balance (push zeroMutez) ! #storage unit ! #contract myContract Note that this returns an operation, and pushes the address of the newly created contract as a side-effect. lorentz Version of  ; instruction that accepts all the arguments as expressions. viewE @"myview" ! #arg (push zeroMutez) ! #address (push addr) lorentzAn expression producing  can be placed as condition to 'if'.   9  6 6 7 4 4 4 4 4 4 2 1 1 3 8 8 1 0'None: "#$%&'(+,-./2356789:<=>?G lorentzA ticket kept in storage.The common pattern of use here is 1. A ticket that permits spending few tokens comes in, it is partially validated and this   type is produced. 2. This type can repeatedly be used to consume up to the amount of permitted tokens.So in order to count allowed tokens, in storage you usually put this type, not bare {.The action type parameter serves to distinguish tickets for different actions at type level and usually just matches the value in ticket data:)If the data in ticket is validated to be "pause"*, then the result of validation can be STicket "pause" ..."; This is the preferred option.If the data in ticket has enum type, and the value is validated to be some  PauseAction!, then validation can produce STicket PauseAction ....*CAUTION: when working with this type, you must ensure that the expected ticket emitter (the one you validate tickets against, e.g. admin address) is constant for the lifetime of the   value. Otherwise, tickets arithmetics (provided via methods below) won't work. So do one of0Either never change the expected ticket emitter;%Or, when it is changed, wipe all the  ; values validated against the old ticketer from storage;Or keep ticket values in a map where key is the currently expected ticket emitter.Note some specificity of this type - its values mostly always appear optionally, either in a map, or in / (this is clear from the potential use cases). lorentzVerifies a ticket. This is an extremely generified  , allows providing verifiers for all the ticket's parts. Provided just in case. lorentzGeneric method for verifying tickets that authorize some action. For concrete example of use see  . lorentz*Generic method for verifying the ticketer. lorentzCheck data in a ticket when it carries target contract address and some other data that is to be verified with the given handler. lorentzCheck data in a ticket when it solely carries target contract address. lorentz?Verifies the given ticket value that permits running an action. /Ticketer is checked to match the given address.6Tokens amount in the ticket is checked to be equal to 1.Ticket data is checked with the provided handler. In case the data contains target contract, consider using   or  . lorentzConstructs an  .This also emits the ticketer address and ticket data for further use. You are oblidged to do something with both of them:8Either validate against the expected value, you can use  ,   and   helpers here.Or use as key in a map where   should be put to as a value.-This way you can be sure that arithmetics on STickets works smoothly and there are no, for instance, attempts to join two tickets from different emitters. lorentzRead contents of  . lorentzRead tokens amount in  . lorentzConsume given amount of tokens from the ticket, failing with given handler if amount of tokens in the ticket is insufficient.We do not provide a ready error for this case since it will probably depend on particular tokens that the given STicket serves to permit.Note that you may want to run isSome nonZero none& on the result to save storage space. lorentz Similar to  , but without Maybe.You may want to run  1 after this function call to save storage space. lorentz,Adds tokens permitted by an incoming ticket.Useful when someone permits you to spend even more tokens than you already have been allowed to spend.This assumes that the ticket being added has already been verified. The passed tickets must be verified against the same ticket data and ticket emitter. lorentz Similar to  , but without Maybe. lorentzTicket emitter verifierlorentzTicket tokens verifierlorentzTicket data verifier lorentzTicket tokens verifierlorentzTicket data verifier  (None: "#$%&'(+-./12356789:<=>?M lorentz'Some error with a numeric tag attached. lorentzHandler which changes documentation for one particular error type. lorentz Errors for  lorentz0Adds a section which explains error tag mapping. lorentz=Describes where the error tag map is defined in Haskell code. lorentz:Modify documentation generated for given code so that all  mention not their textual error tag rather respective numeric one from the given map.If some documented error is not present in the map, it remains unmodified. This function may fail with 5- if contract uses some uncommon errors, see   for details. lorentzExtended version of   which accepts error handlers.In most cases that function should be enough for your purposes, but it uses a fixed set of base handlers which may be not enough in case when you define your own errors. In this case define and pass all the necessary handlers to this function.It fails with 5 if some of the errors used in the contract cannot be handled with given handlers. lorentzHandler for all s. lorentz Handler for  . lorentz3Handlers for most common errors defined in Lorentz. ?None: "#$%&'(+-./12356789:<=>?M )None: "#$%&'(+-./12356789:<=>?N` lorentzLorentz version of +.  *None: "#$%&'(+-./12356789:<=>?R lorentzLorentz version of Control.Lens.Iso. lorentzInvert an isomorphism. lorentz2Given a function that is its own inverse, make an   using it in both directions. lorentzThe isomorphism between two values with identical representation and semantics. lorentzThe isomorphism between two values with identical representation.The same precautions as for   apply here. lorentz,The isomorphism between raw and named value. lorentzAbsence of value on the left hand side is associated with the given value on the right hand side. lorentzAbsence of value on the left hand side is associated with the default value on the right hand side. This is more general version of  nonIso ldef) since it can work with e.g. containers. +None< "#$%&'(+-./12356789:<=>?- lorentzConcise way to write down constraints with expected content of a storage.Use it like follows: type StorageConstraint store = StorageContains store [ "fieldInt" := Int , "fieldNat" := Nat , "epsToNat" := Int ::-> Nat , "balances" := Address ~> Int ] Note that this won't work with complex field references, they have to be included using e.g.   manually. lorentz-Indicates a stored entrypoint with the given param and store types. lorentz2Indicates a submap with given key and value types. lorentzKind-restricted version of  # to work solely with string labels. lorentzAlias for a field reference.This allows creating _custom_ field references; you will have to define the respective   and   instances manually. Since this type occupies a different "namespace" than string labels and  ., no overlappable instances will be necessary.Example: -- Shortcut for a deeply nested field X data FieldX instance StoreHasField Storage (FieldAlias FieldX) Integer where ... accessX = stToField (stAlias @FieldX)  Note that alias1 type argument allows instantiations of any kind. lorentz,Refer to no particular field, access itself. lorentz#Refer to a nested entry in storage. Example: stToField (#a :-| #b) fetches field b in the type under field a.Change field operations so that they work on a modified field.For instance, to go from $StoreFieldOps Storage "name" Integer to /StoreFieldOps Storage "name" (value :! Integer) you can use "mapStoreFieldOps (namedIso #value) lorentz=Change submap operations so that they work on a modified key. lorentz?Change submap operations so that they work on a modified value. lorentz.Chain two implementations of field operations.Suits for a case when your store does not contain its fields directly rather has a nested structure. lorentz5Chain implementations of field and submap operations.This requires Dupable substore for simplicity, in most cases it is possible to use a different chaining (nameInStore :-| mname :-| this) to avoid that constraint. If this constraint is still an issue, please create a ticket. lorentzChain implementations of two submap operations sets. Used to provide shortcut access to a nested submap.This is very inefficient since on each access to substore it has to be serialized/deserialized. Use this implementation only if due to historical reasons migrating storage is difficult.LIso (Maybe substore) substore argument describes how to get substore value if it was absent in map and how to detect when it can be safely removed.Example of use: sequenceStoreSubmapOps #mySubmap nonDefIso storeSubmapOps storeSubmapOps lorentzTurn submap operations into operations on a part of the submap value.Normally, if you need this set of operations, it would be better to split your submap into several separate submaps, each operating with its own part of the value. This set of operations is pretty inefficient and exists only as a temporary measure, if due to historical reasons you have to leave storage format intact.0This implementation puts no distinction between value == Nothing and value == Just defValue cases. Getters, when notice a value equal to the default value, report its absence. Setters tend to remove the value from submap when possible.LIso (Maybe value) value and LIso (Maybe subvalue) subvalue arguments describe how to get a value if it was absent in map and how to detect when it can be safely removed from map.Example of use: zoomStoreSubmapOps #mySubmap nonDefIso nonDefIso storeSubmapOps storeFieldOpsADT lorentzUtility to create  s from an entrypoint name (epName ) and an   implementation. Note that you need to merge multiple of these (with 9) if your field contains more than one entrypoint lambda. lorentz An alias for  . Examples:4push 5 # stMem this -$ (mempty :: Map Integer MText)False(stGetField this # pair -$ (5 :: Integer)(5,5) lorentzProvides alternative variadic interface for deep entries access. Example: stToField (stNested #a #b #c) lorentz!Construct an alias at term level.4This requires passing the alias via type annotation. lorentz Version of   adopted to labels. lorentz7Provides access to the submap via the respective field.Tricky storages that consolidate submaps in a non-trivial way can define instances overlapping this one.  9  9  8 8,None: "#$%&'(+-./12356789:<=>?6 lorentz Alias for  .This makes nested field access look just like in other languages.Though it may collide with the dot operator from Haskell world, for instance, in tests, so we do not yet provide it directly in Lorentz.StoreClass.   8-None: "#$%&'(+-./12356789:<=>? lorentzProduce   instance for a datatype containing non-dupable and plain dupable elements so that operations on this datatype (like getField) remain optimal in average.$Derivation strategies available for  suffer from a problem: getField is non-optimal as long as during its recursive descend it operates with a non-dupable pairs subtree.   tries to keep all dupable elements in the left subtree of the root (speeding up getField> on them), and all non-dupable elements in the right subtree.(Prerequisites for calling this function: All the fields of dupable types must locate before all the fields of non-dupable types.*You have to supply the expected number of  non-dupable fields as an argument. We expect this number, not the number of dupable fields, since non-dupable elements are rare and so are supposed to be updated less often.Unfortunatelly, there seems to be no decent way to see whether a type is dupable or not at TH time, so we have to accept some information explicitly. To ensure that this information is up to date, each time calling this function (we encourage the user to also add a test using utilities from Lorentz.Test.DupableScan module.  @None: "#$%&'(+-./12356789:<=>?%@A None: "#$%&'(+-./12356789:<=>?' lorentz6Provides arror for convenient entrypoint documentation lorentzLift entrypoint implementation.+Entrypoint names should go with "e" prefix. lorentzConstraint for . lorentzPick a type documentation from . lorentz$Describes argument of an entrypoint. lorentz!Argument of the entrypoint. Pass  if no argument is required. lorentzDescribes a way to lift an entrypoint argument into full parameter which can be passed to the contract.Steps are supposed to be applied in the order opposite to one in which they are given. E.g. suppose that an entrypoint is called as Run (Service1 arg); then the first step (actual last) should describe wrapping into Run constructor, and the second step (actual first) should be about wrapping into Service1 constructor. lorentz1Entrypoint argument type in typed representation. lorentz$Describes a parameter building step.This can be wrapping into (Haskell) constructor, or a more complex transformation. lorentzWraps something into constructor with given name. Constructor should be the one which corresponds to an entrypoint defined via field annotation, for more complex cases use  . lorentz;Directly call an entrypoint marked with a field annotation. lorentz Other action. lorentzThis entrypoint cannot be called, which is possible when an explicit default entrypoint is present. This is not a true entrypoint but just some intermediate node in or tree and neither it nor any of its parents are marked with a field annotation.It contains dummy  s which were assigned before entrypoints were taken into account. lorentz'Plain english description of this step. lorentz+How to construct parameter in Haskell code. lorentz4How to construct parameter working on raw Michelson. lorentzWhen describing the way of parameter construction - piece of incremental builder for this description. lorentzArgument stands for previously constructed parameter piece, and returned value - a piece constructed after our step. lorentz.Inserts a reference to an existing entrypoint.This helps to avoid duplication in the generated documentation, in order not to overwhelm the reader. lorentz=Describes the behaviour common for entrypoints of given kind.This has very special use cases, like contracts with mix of upgradeable and permanent entrypoints. lorentz3Describes the behaviour common for all entrypoints.For instance, if your contract runs some checks before calling any entrypoint, you probably want to wrap those checks into entrypointSection "Prior checks" (Proxy @CommonContractBehaviourKind). lorentzDefault value for  type argument. lorentz4Describes location of entrypoints of the given kind.All such entrypoints will be placed under the same "entrypoints" section, and this instance defines characteristics of this section. lorentzPosition of the respective entrypoints section in the doc. This shares the same positions space with all other doc items.lorentz+Name of the respective entrypoints section.lorentz2Description in the respective entrypoints section.lorentz,Gathers information about single entrypoint.We assume that entry points might be of different kinds, which is designated by phantom type parameter. For instance, you may want to have several groups of entry points corresponding to various parts of a contract - specifying different kind type argument for each of those groups will allow you defining different 9 instances with appropriate custom descriptions for them.lorentz"Pattern that checks whether given  hides " inside (of any entrypoint kind).0In case a specific kind is necessary, use plain (cast -> Just DEntrypoint{..}) construction instead.lorentzDefault implementation of  for entrypoints.lorentz0Mark code as part of entrypoint with given name.This is automatically called at most of the appropriate situations, like  calls.lorentzMake a   that tells about wrapping an argument into a constructor with given name and uses given  # as description of Michelson part.lorentz5Go over contract code and update every occurrence of   documentation item, adding the given step to its "how to build parameter" description.lorentzLike  >, to be used for pattern-matching on a parameter or its part.Modifies documentation accordingly. Including description of entrypoints' arguments, thus for them you will need to supply d instance.lorentz Version of  for tuples.lorentzWrapper for documenting single entrypoint which parameter isn't going to be unwrapped from some datatype. entryCase unwraps a datatype, however, sometimes we want to have entrypoint parameter to be not wrapped into some datatype.lorentzModify param building steps with respect to entrypoints that given parameter declares.Each contract with entrypoints should eventually call this function, otherwise, in case if contract uses built-in entrypoints feature, the resulting parameter building steps in the generated documentation will not consider entrypoints and thus may be incorrect.9Calling this twice over the same code is also prohibited.This method is for internal use, if you want to apply it to a contract manually, use .lorentzVersion of 'finalizeParamCallingDoc'' more convenient for manual call in a contract.lorentzWhether ) has already been applied to these steps.lorentz Version of  for contracts with flat parameter, use it when you need only one & all over the contract implementation.;?]^ ;   ]^ ?  .None: "#$%&'(+-./12356789:<=>?%lorentz1Entry points template derived from given ADT sum.lorentzConstraint required by .lorentz#Make up a "case" over entry points.lorentz=An action invoked when user-provided entrypoint is not found.lorentz%Implementations of some entry points.,Note that this thing inherits properties of 8, e.g. you can Data.Vinyl.Core.rappend implementations for two entrypoint sets when assembling scattered parts of a contract.lorentz"This class is needed to implement .lorentzTurn  into a Haskell value. Since we don't know its type in compile time, we have to erase it using . The user of this function can require arbitrary constraint to hold (depending on how they want to use the result).lorentzThis type can store any value that satisfies a certain constraint.lorentz>Ensure that given entry points do no contain duplicated names.lorentz,Get type of entrypoint argument by its name.lorentzHomomorphic version of , forgets the exact interface.lorentzPseudo value for  type variable.lorentzEncapsulates parameter for one of entry points. It keeps entrypoint name and corresponding argument serialized.In Haskell world, we keep an invariant of that contained value relates to one of entry points from entries list.lorentz6A convenient alias for type-level name-something pair.lorentzAn entrypoint is described by two types: its name and type of argument.lorentz Construct a  safely.lorentz-Helper instruction which extracts content of .lorentzDefault implementation for , simply reports an error.lorentzPattern-match on given UParam entries.You have to provide all case branches and a fallback action on case when entrypoint is not found.lorentzLike (, but accepts a tuple of clauses, not a 8.lorentzMake up  from ADT sum.'Entry points template will consist of '(constructorName, constructorFieldType) pairs. Each constructor is expected to have exactly one field.lorentz:Note that calling given entrypoints involves constructing .lorentzAllows casts only between  and ./None: "#$%&'(+-./12356789:<=>?ulorentzSingle contract view.lorentzCode for a contract along with compilation options for the Lorentz compiler.It is expected that a  is one packaged entity, wholly controlled by its author. Therefore the author should be able to set all options that control contract's behavior.This helps ensure that a given contract will be interpreted in the same way in all environments, like production and testing.Raw 2 should not be used for distribution of contracts.lorentzThe contract itself.lorentzContract views.lorentz5General compilation options for the Lorentz compiler.lorentz4Options to control Lorentz to Michelson compilation.lorentzConfig for Michelson optimizer.lorentz(Function to transform strings with. See .lorentz-Function to transform byte strings with. See .lorentzFlag which defines whether compiled Michelson contract will have CAST (which drops parameter annotations) as a first instruction. Note that when flag is false, there still may be no CAST3 (in case when parameter type has no annotations).lorentzRuns Michelson optimizer with default config and does not touch strings and bytes.lorentz?Leave contract without any modifications. For testing purposes.lorentz%For use outside of Lorentz. Will use .lorentzCompile Lorentz code, optionally running the optimizer, string and byte transformers.lorentz'Construct and compile Lorentz contract.This is an alias for .lorentz'Construct and compile Lorentz contract.Note that this accepts code with initial and final stacks unpaired for simplicity.lorentz Version of ) that accepts custom compilation options.lorentzConstruct a view. 6mkView @"add" @(Integer, Integer) do car; unpair; addlorentzCompile contract with .lorentz&Compile a whole contract to Michelson.Note that compiled contract can be ill-typed in terms of Michelson code when some of the compilation options are used (e.g. when  is True, resulted contract can be ill-typed). However, compilation with  should be valid.lorentzSet all the contract's views. compileLorentzContract $ defaultContractData do ... & setViews ( mkView  "myView" () do ... , mkView "anotherView" Integer do ... ) lorentz Version of  that accepts a 8.May be useful if you have too many views or want to combine views sets.lorentzRestrict type of , ) or other similar type to have no views.lorentzInterpret a Lorentz instruction, for test purposes. Note that this does not run the optimizer.lorentzLike 9, but works on lambda rather than arbitrary instruction.lorentzLorentz version of analyzer.((0None: "#$%&'(+-./12356789:<=>?lorentzRun a lambda with given input.Note that this always returns one value, but can accept multiple input values (in such case they are grouped into nested pairs).'For testing and demonstration purposes.lorentzLike &, assumes that no failure is possible.For testing and demonstration purposes. Note, that here types of variables are specified, because the result type of arithmetic operations depends on them.nop -$ 55'sub -$ ((3 :: Integer), (2 :: Integer))1 push 9 -$ ()9?add # add -$ ((1 :: Integer), ((2 :: Integer), (3 :: Integer)))6lorentz(Version of (-$?) with arguments flipped.lorentz'Version of (-$) with arguments flipped.lorentz1Version of (-$) applicable to a series of values.222221None: "#$%&'(+-./12356789:<=>?lorentz.Pretty-print a Haskell value as Michelson one.lorentz4Pretty-print a Lorentz contract into Michelson code. None: "#$%&'(+-./12356789:<=>?slorentzEstimate code operation size.lorentzEstimate value operation size.UVUV2None: "#$%&'(+-./12356789:<=>? lorentz actions parsed from CLI.lorentz-Specifies how to parse initial storage value.Normally you pass some user data and call a function that constructs storage from that data.If storage is simple and can be easilly constructed manually, you can use .lorentzRewrite annotations in storage. We don't won't to uncoditionally override storage notes since after #20 we require notes to be non-empty, so we wrap them into .lorentzRun an action operating with .None: "#$%&'(+-./12356789:<=>?    &()!"#%$'*+,-./0123458769:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdjihgfceklmnopqrstuvxwywz{|}~      &()!"#%$'*+,-./0123458769:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdjihgfceklmnopqrstuvxwywz{|}~  ANone; "#$%&'(+-./12356789:<=>?ҷBCDBEFBCGBHIBCJBCKBCLBCMBCNBOPQRSQRTBUVBWXBCYBCZQ[\]^_B`aBbcBdeQ[fBbgBbhQ[iBdjBdklmnopqorsBCtBOuBOvBwxBwxyz{B|}B|~BBBCBC9D55                              3                                                                                           8                                                                                      ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " "                      >          # # # # # # # # # $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $;$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $                               % % % % % % % % % % % % % % % % % % % % % % % % % % % % % & & & & & & & & & & & & & & & & & & & & & & & & & & & & ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ) ) ) ) ) ) ) ) ) ) * * * * * * * * * * * + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++,t-........ ...................... ........................../////////////////////////////////////0000011  2222222222222222222266 6 Q[$AAAAAAAAlorentz-0.13.3-inplaceLorentz.PreludeLorentz.Rebinded Lorentz.ValueLorentz.Constraints.Scopes Lorentz.ADTLorentz.AnnotationLorentz.Entrypoints.DocLorentz Lorentz.DocLorentz.AddressLorentz.OpSizeLorentz.ErrorsLorentz.ViewBaseLorentz.Entrypoints.HelpersLorentz.Entrypoints.CoreLorentz.Constraints.Derivative Lorentz.Base Lorentz.ExtLorentz.CommonLorentz.WrappableLorentz.PolymorphicLorentz.Entrypoints.Impl Lorentz.ArithLorentz.Entrypoints.Manual Lorentz.Zip Lorentz.Bytes Lorentz.Pack Lorentz.InstrLorentz.ReferencedLorentz.Util.THLorentz.Errors.Numeric.Contract Lorentz.EmptyLorentz.CoercionsLorentz.ExtensibleLorentz.ReferencedByName Lorentz.MacroLorentz.FixedArith Lorentz.ExprLorentz.TicketsLorentz.Errors.Numeric.DocLorentz.Default Lorentz.IsoLorentz.StoreClassLorentz.StoreClass.ExtraLorentz.Layouts.NonDupableLorentz.UParam Lorentz.RunLorentz.Run.Simple Lorentz.PrintLorentz.ContractRegistryNiceParameterFullLorentz.Constraints ContractDocMorley.Michelson.Typed.Instr:#failWith:!Lorentz.Entrypointsview Data.Coercecoerce constructTLorentz.Errors.NumericLorentz.Layouts Paths_lorentzbaseGHC.Base$GHC.Numnegatereturn Data.String fromString<>memptymappendmconcatpureGHC.EnumBoundedghc-prim GHC.ClassesEqOrdGHC.ShowShow GHC.GenericsGeneric SemigroupMonoid GHC.TypesBoolinteger-wired-inGHC.Integer.TypeInteger GHC.NaturalNatural GHC.MaybeMaybe Data.EitherEitherFalseNothingJustTrueLeftRightbytestring-0.10.12.0Data.ByteString.Internal ByteStringcontainers-0.6.5.1Data.Set.InternalSetData.Map.InternalMap.minBoundmaxBound Data.ProxyProxy text-1.2.4.1Data.Text.InternalText Data.FixedMkFixedFixedGHC.OverloadedLabels fromLabel Data.Function&stimessconcatconstraints-0.13-e8a6f13ecba0b6f1486296b2382b79affde8473873a3642a297ae72415e2fba5Data.ConstraintwithDictdata-default-class-0.1.2.0-c02137f3b596e844bef779396d9ce63da3b73a41d5018ec31fdc9e34ace10009Data.Default.ClassDefaultdefnamed-0.3.0.1-484aadecace38291a086d469fe6414099e1ae3d82a1ce3378c0e11e58aafb6aeNamed.Internal!:?text-manipulate-0.3.0.0-e3c5d2e843d224664fa14fba4b4479a42f7ca07ef6bbc51a53b7538648267bdaData.Text.ManipulatetoSnaketoPascaltoCameluniversum-1.7.2-af609ca3ac8592df9ecf14b5efda63c9b7df4598952b990f97dac145f3b5d635Universum.TypeOpsUniversum.Debug undefinederrorvinyl-0.13.3-d96d162508b08f77a10d8e3ff99f1e1d6998bf6cdcf45236b8b90cf872f0d54cData.Vinyl.Core:&RNilRecmorley-prelude-0.5.1-inplaceUnsafe fromIntegermorley-1.16.3-inplaceMorley.Michelson.TextmtMTextMorley.Util.LabelLabel!Morley.Michelson.Typed.Annotation insertTypeAnnmkUType,Morley.Michelson.Typed.Haskell.CompatibilityligoCombLayout ligoLayout"Morley.Michelson.Typed.Haskell.DocconcreteTypeDocHaskellRepconcreteTypeDocMichelsonRepcustomTypeDocMdReferencedStoragedTypeDepgenericTypeDocDependencieshaskellAddNewtypeFieldhaskellRepNoFieldshaskellRepStripFieldPrefixhomomorphicTypeDocHaskellRephomomorphicTypeDocMdReferencehomomorphicTypeDocMichelsonReppoly1TypeDocMdReferencepoly2TypeDocMdReferencetypeDocBuiltMichelsonRepunsafeConcreteTypeDocHaskellRep!unsafeConcreteTypeDocMichelsonRep$Morley.Michelson.Typed.Haskell.ValuecoerceContractRef$Morley.Michelson.Untyped.Entrypoints DefEpNameMorley.Michelson.Untyped.OpSizeopSizeHardLimitsmallTransferOpSizeMorley.Michelson.Typed.Aliases OperationValue"Morley.Michelson.Typed.Entrypoints EpAddress eaAddress eaEntrypointDTypeHaveCommonTypeCtor IsHomomorphicSomeTypeWithDocTypeDocFieldDescriptions TypeHasDoctypeDocDependenciestypeDocHaskellReptypeDocMdDescriptiontypeDocMdReferencetypeDocMichelsonRep typeDocName,Morley.Michelson.Typed.Haskell.Instr.ProductConstructorFieldTypesInstrConstructCBigMapBigMapId unBigMapId ContractRef crAddress crEntrypointEntrypointCallIsoValueToTfromValtoValSomeEntrypointCallTickettAmounttData tTicketermkBigMapWellTypedIsoValueMorley.Michelson.Typed.Scope ConstantScopeEpNameOpSizeunOpSizeMorley.Michelson.Untyped.ViewViewNameUnsafeViewName unViewNameMorley.Tezos.AddressAddressMorley.Tezos.Crypto.BLS12381 Bls12381Fr Bls12381G1 Bls12381G2Morley.Tezos.CoreChainIdMorley.Tezos.Crypto.TimelockChestChestKeyMorley.Tezos.CryptoKeyHashMutez PublicKey Signature TimestamponeMuteztimestampFromSecondstimestampFromUTCTimetimestampQuotetoMuteztz zeroMutezMorley.Michelson.Doc ContainsDoc SomeDocItemSubDoc DocItemPos DocSectionContainsUpdateableDocSomeDocDefinitionItem DGitRevisionDocItemGHasAnnotationgGetAnnotation HasAnnotation getAnnotation annOptionsGenerateFieldAnnFlagGenerateFieldAnnNotGenerateFieldAnnFollowEntrypointFlagFollowEntrypointNotFollowEntrypoint AnnOptionsfieldAnnModifierdefaultAnnOptionsdropPrefixThenappendToctorNameToAnnWithOptionsgGetAnnotationNoField$fGHasAnnotation:*:$fGHasAnnotation:+:$fGHasAnnotationM1$fGHasAnnotationM10$fGHasAnnotationM11$fGHasAnnotationM12$fGHasAnnotationU1 DocGroupingattachDocCommonsbuildDocbuildMarkdownDoccontractDocToMarkdowndocDefinitionRefdocItemPositiondocItemSectionRef finalizedAsIs mdTocFromRefmkDGitRevision modifyDocmorleyRepoSettingssubDocToMarkdownbuildDocUnfinalizedmodifyDocEntirely cdContentscdDefinitionIds cdDefinitionscdDefinitionsSetDAnchorDComment DDescriptionDGeneralInfoSectionDGitRevisionKnownDGitRevisionUnknownDNameDocElemdeItemdeSubDocItemPlacementDocItemReferenceddocItemDependencies docItemPos docItemRefdocItemSectionDescriptiondocItemSectionNamedocItemSectionNameStyledocItemToMarkdown docItemToToc docItemsOrder DocItemIdDocItemPlacementKindDocItemInDefinitionsDocItemInlined DocItemRef DocItemNoRefDocItemRefInlinedDocSectionNameStyleDocSectionNameBigDocSectionNameSmallGitRepoSettingsgrsMkGitRevisionWithFinalizedDocMorley.Util.MarkdownMarkdown$fGHasAnnotationK1$fHasAnnotation(,,,,,,)$fHasAnnotation(,,,,,)$fHasAnnotation(,,,,)$fHasAnnotation(,,,)$fHasAnnotation(,,)$fHasAnnotation(,)$fHasAnnotationEither$fHasAnnotationChestKey$fHasAnnotationChest$fHasAnnotationOperation'$fHasAnnotation[]$fHasAnnotationSet$fHasAnnotationBigMapId$fHasAnnotationBigMap$fHasAnnotationMap$fHasAnnotationTicket$fHasAnnotationContractRef$fHasAnnotationChainId$fHasAnnotationSignature$fHasAnnotationPublicKey$fHasAnnotationTimestamp$fHasAnnotationKeyHash$fHasAnnotationEpAddress$fHasAnnotationAddress$fHasAnnotationMutez$fHasAnnotationByteString$fHasAnnotationBool$fHasAnnotationMText$fHasAnnotationNatural$fHasAnnotationInteger$fHasAnnotation()$fHasAnnotationMaybe$fHasAnnotationNamedF$fHasAnnotationNamedF0 NiceNoBigMapNiceComparable NiceViewableNiceUntypedValueNiceFullPackedValueNiceUnpackedValueNicePackedValueDupable NiceConstantNiceStorageFull NiceStorage NiceParameter CanHaveBigMapNoBigMapNoContractType NoOperation KnownValueniceParameterEviniceStorageEviniceConstantEvi dupableEvinicePackedValueEviniceUnpackedValueEviniceUntypedValueEviniceViewableEvi $fKnownValuea$fNoOperationa$fNoContractTypea $fNoBigMapa$fCanHaveBigMapaMorley.Util.CustomGenerichaskellBalancedGenericStrategyRequireSumTypeCanHaveEntrypointsShouldHaveEntrypointsunHasEntrypoints ctorNameToAnn ctorNameToEp!$fHasRPCReprShouldHaveEntrypoints$fGenericShouldHaveEntrypoints$fIsoValueShouldHaveEntrypointsEpdNoneParameterContainsEntrypoints:>HasEntrypointOfType TrustEpNameHasDefEntrypointArgHasEntrypointArguseHasEntrypointArgGetEntrypointArgCustomNiceEntrypointName EntrypointRef CallDefaultCallNoExplicitDefaultEntrypointForbidExplicitDefaultEntrypointGetDefaultEntrypointArgGetEntrypointArgLookupParameterEntrypointAllParameterEntrypointsGetParameterEpDerivationParameterDeclaresEntrypointsParameterHasEntrypointsParameterEntrypointsDerivation EpCallingStep EpsWrapIn EpCallingDescepcdArgepcdEntrypoint epcdStepsEpConstructionRes EpConstructedEpConstructionFailedRequireAllUniqueEntrypointsRequireAllUniqueEntrypoints'EntrypointsDerivationEpdAllEntrypointsEpdLookupEntrypointepdNotesepdCallepdDescspepNotespepCallpepDescspepDescsWithDefparameterEntrypointsToNotesparameterEntrypointCallparameterEntrypointCallDefaultsepcCallRootCheckedeprNameparameterEntrypointCallCustom#$fHasEntrypointArgkcpTrustEpNamearg$$fEntrypointsDerivationTYPEEpdNonecp($fHasEntrypointArgTYPEcpEntrypointRefarg$fShowEpCallingStep$fEqEpCallingStep$fShowEpCallingDescViewInterfaceMatchErrorVIMViewNotFoundVIMViewArgMismatchVIMViewRetMismatchDemoteViewsDescriptor ViewInterfaceviNameviArgviRet ViewsNamesHasViewLookupRevealView LookupView ViewsList RevealViews>->?:: ViewTyInfodemoteViewNamedemoteViewTyInfosdemoteViewsDescriptorcheckViewsCoverInterface$fDemoteViewTyInfo:$fDemoteViewTyInfo[]"$fExceptionViewInterfaceMatchError"$fBuildableViewInterfaceMatchError$fShowViewInterfaceMatchError$fEqViewInterfaceMatchErrorNiceViewsDescriptor NiceViewsDupableDecision IsDupable IsNotDupabledecideOnDupableMapLorentzInstrmapLorentzInstrLambdaContractcMichelsonContractcDocumentedCodeViewCodeSomeContractCode ContractCode ContractOut%>:-> LorentzInstrunLorentzInstrFII iGenericIfiAnyCodeiNonFailingCode iMapAnyCode iForceNotFailiWithVarAnnotationstoMichelsonContract#parseLorentzValuetransformStringsLorentztransformBytesLorentzoptimizeLorentzWithConfoptimizeLorentz $fMonoid:->$fSemigroup:-> $fNFData:->$fRenderDoc:->$fBuildable:->$fToExpressionContract$fNFDataContract$fBuildableParseLorentzError$fMapLorentzInstr:->$fShowParseLorentzError$fEqParseLorentzError $fShow:->$fEq:-> $fEqContract$fShowContractstackRef printComment justCommentcommentcommentAroundFuncommentAroundStmt testAssert stackType Entrypoint_ EntrypointFromContractReffromContractRef ToContractRef toContractRef ToTAddress toTAddress ToAddress toAddressFutureContractunFutureContract ToTAddress_TAddress unTAddress asAddressOf asAddressOf_callingTAddresscallingDefTAddresscallingAddresscallingDefAddress toTAddress_convertContractRef$fHasRPCReprTAddress$fHasRPCReprFutureContract$fHasAnnotationFutureContract$fIsoValueFutureContract$fToAddressContractRef$fToAddressFutureContract$fToAddressTAddress$fToAddressEpAddress$fToAddressAddress$fToTAddresscpvdTAddress$fToTAddresscpvdAddress$fToContractRefargTAddress$fToContractRefcpFutureContract$fToContractRefcpContractRef$fFromContractRefcpAddress$fFromContractRefcpEpAddress!$fFromContractRefcpFutureContract$fFromContractRefcpContractRef$fGenericTAddress$fShowTAddress $fEqTAddress $fOrdTAddress$fBuildableTAddress$fIsoValueTAddress$fHasAnnotationTAddress Wrappable Unwrappable Unwrappabled$fUnwrappableFixed$fUnwrappableNamedF$fUnwrappableNamedF0$fWrappableNamedF$fWrappableNamedF0 rightCombalphabeticallyforbidUnnamedFieldscstr customGenericcustomGeneric'deriveFullTypefldfromDepthsStrategyfromDepthsStrategy'leaveUnnamedFields leftBalancedleftCombmakeRightBalDepths reifyDataTypereorderingConstrsreorderingDatareorderingFields rightBalanced withDepths ReadTicket rtTicketerrtDatartAmountNeverList$fTypeHasDocNever$fHasRPCReprNever$fHasAnnotationNever$fBuildableNever$fShowReadTicket$fEqReadTicket$fOrdReadTicket$fGenericNever $fShowNever $fEqNever $fOrdNever$fIsoValueNever $fNFDataNever OpenChestNFixedMkNFixedBinBaseDecBase PrintAsValue$fGenericReadTicket$fBuildablePrintAsValue$fHasResolutionTYPEDecBase$fHasResolutionTYPEBinBase$fUnwrappableNFixed$fIsoValueNFixed$fFractionalNFixed $fNumNFixed $fShowNFixed$fTypeHasDocOpenChest$fHasRPCReprOpenChest$fGenericOpenChest$fShowOpenChest $fEqOpenChest$fIsoValueOpenChest$fHasAnnotationOpenChest $fEqNFixed $fOrdNFixed$fIsoValueReadTicket SliceOpHs ConcatOpHsGetOpHs GetOpKeyHs GetOpValHsUpdOpHs UpdOpKeyHs UpdOpParamsHsSizeOpHsIterOpHs IterOpElHsMapOpHs MapOpInpHs MapOpResHs IsoMapOpResMemOpHs MemOpKeyHs$fMemOpHsBigMap $fMemOpHsMap $fMemOpHsSet$fMapOpHsMaybe $fMapOpHs[] $fMapOpHsMap $fIterOpHsSet $fIterOpHs[] $fIterOpHsMap $fSizeOpHsMap $fSizeOpHs[] $fSizeOpHsSet$fSizeOpHsByteString$fSizeOpHsMText $fUpdOpHsSet$fUpdOpHsBigMap $fUpdOpHsMap$fGetOpHsBigMap $fGetOpHsMap$fConcatOpHsByteString$fConcatOpHsMText$fSliceOpHsByteString$fSliceOpHsMText BuildEPTreeEPTreeEPNodeEPLeaf EPDelegatePlainEntrypointsC EpdWithRoot EpdDelegate EpdRecursiveEpdPlain $fGEntrypointsNotesmodeEPLeaf:*:$fGEntrypointsNotesmodeEPLeafU1*$fGEntrypointsNotesEpdDelegateEPDelegateK1$fGEntrypointsNotesmodeepM1$fGEntrypointsNotesmodeEPNodeM1 $fGEntrypointsNotesmodeEPNode:+:$fGEntrypointsNotesmodeepM10#$fGEntrypointsNotesEpdRecursiveepK1($fEntrypointsDerivationTYPEEpdWithRootcp($fEntrypointsDerivationTYPEEpdDelegatecp)$fEntrypointsDerivationTYPEEpdRecursivecp%$fEntrypointsDerivationTYPEEpdPlaincp#$fGEntrypointsNotesmodeEPDelegateM1$fGEntrypointsNotesmodeEPLeafM1ToIntegerArithOpHs evalToIntOpHsDefUnaryArithOpdefUnaryArithOpHsUnaryArithOpHsUnaryArithResHsevalUnaryArithOpHs DefArithOp defEvalOpHs ArithOpHs evalArithOpHs$fDefArithOpTYPEEDiv$fDefArithOpTYPELsr$fDefArithOpTYPELsl$fDefArithOpTYPEXor$fDefArithOpTYPEOr$fDefArithOpTYPEAnd$fDefArithOpTYPEMul$fDefArithOpTYPESub$fDefArithOpTYPEAdd$fArithOpHsLsrNaturalNaturalr$fArithOpHsLslNaturalNaturalr$fArithOpHsXorBoolBoolr$fArithOpHsXorNaturalNaturalr$fArithOpHsAndBoolBoolr$fArithOpHsAndNaturalNaturalr$fArithOpHsAndIntegerNaturalr$fArithOpHsOrBoolBoolr$fArithOpHsOrNaturalNaturalr$fArithOpHsLsrNFixedNaturalr$fArithOpHsLslNFixedNaturalr$fArithOpHsEDivMutezNaturalr$fArithOpHsEDivMutezMutezr$fArithOpHsEDivIntegerIntegerr$fArithOpHsEDivNaturalNaturalr$fArithOpHsEDivIntegerNaturalr$fArithOpHsEDivNaturalIntegerr$fArithOpHsMulFixedNFixedFixed$fArithOpHsMulNFixedFixedFixed$fArithOpHsMulFixedNFixedFixed0$fArithOpHsMulNFixedFixedFixed0$fArithOpHsMulNaturalNFixedr$fArithOpHsMulIntegerNFixedr$fArithOpHsMulNFixedNaturalr$fArithOpHsMulNFixedIntegerr $fArithOpHsMulNFixedNFixedNFixed!$fArithOpHsMulNFixedNFixedNFixed0$fArithOpHsMulNaturalFixedr$fArithOpHsMulIntegerFixedr$fArithOpHsMulFixedNaturalr$fArithOpHsMulFixedIntegerr$fArithOpHsMulFixedFixedFixed$fArithOpHsMulFixedFixedFixed0#$fArithOpHsMulBls12381FrBls12381G2r#$fArithOpHsMulBls12381FrBls12381G1r#$fArithOpHsMulBls12381G2Bls12381Frr#$fArithOpHsMulBls12381G1Bls12381Frr#$fArithOpHsMulBls12381FrBls12381Frr $fArithOpHsMulBls12381FrNaturalr $fArithOpHsMulBls12381FrIntegerr $fArithOpHsMulNaturalBls12381Frr $fArithOpHsMulIntegerBls12381Frr$fArithOpHsMulMutezNaturalr$fArithOpHsMulNaturalMutezr$fArithOpHsMulIntegerIntegerr$fArithOpHsMulNaturalNaturalr$fArithOpHsMulIntegerNaturalr$fArithOpHsMulNaturalIntegerr$fArithOpHsSubNFixedFixedr$fArithOpHsSubFixedNFixedr$fArithOpHsSubNaturalNFixedr$fArithOpHsSubIntegerNFixedr$fArithOpHsSubNFixedNaturalr$fArithOpHsSubNFixedIntegerr$fArithOpHsSubNFixedNFixedr$fArithOpHsSubNaturalFixedr$fArithOpHsSubIntegerFixedr$fArithOpHsSubFixedNaturalr$fArithOpHsSubFixedIntegerr$fArithOpHsSubFixedFixedr!$fArithOpHsSubTimestampTimestampr$fArithOpHsSubTimestampIntegerr$fArithOpHsSubIntegerIntegerr$fArithOpHsSubNaturalNaturalr$fArithOpHsSubIntegerNaturalr$fArithOpHsSubNaturalIntegerr$fArithOpHsAddNFixedFixedr$fArithOpHsAddFixedNFixedr$fArithOpHsAddNaturalNFixedr$fArithOpHsAddIntegerNFixedr$fArithOpHsAddNFixedNaturalr$fArithOpHsAddNFixedIntegerr$fArithOpHsAddNFixedNFixedr$fArithOpHsAddNaturalFixedr$fArithOpHsAddIntegerFixedr$fArithOpHsAddFixedNaturalr$fArithOpHsAddFixedIntegerr$fArithOpHsAddFixedFixedr#$fArithOpHsAddBls12381G2Bls12381G2r#$fArithOpHsAddBls12381G1Bls12381G1r#$fArithOpHsAddBls12381FrBls12381Frr$fArithOpHsAddMutezMutezr$fArithOpHsAddIntegerTimestampr$fArithOpHsAddTimestampIntegerr$fArithOpHsAddIntegerIntegerr$fArithOpHsAddNaturalNaturalr$fArithOpHsAddIntegerNaturalr$fArithOpHsAddNaturalIntegerr$fDefUnaryArithOpTYPENeg$fDefUnaryArithOpTYPEGe$fDefUnaryArithOpTYPEGt$fDefUnaryArithOpTYPELe$fDefUnaryArithOpTYPELt$fDefUnaryArithOpTYPENeq$fDefUnaryArithOpTYPEEq'$fDefUnaryArithOpTYPEAbs$fDefUnaryArithOpTYPENot$fUnaryArithOpHsGeInteger$fUnaryArithOpHsLeInteger$fUnaryArithOpHsGtInteger$fUnaryArithOpHsLtInteger$fUnaryArithOpHsNeqInteger$fUnaryArithOpHsEq'Integer$fUnaryArithOpHsNotBool$fUnaryArithOpHsNotNatural$fUnaryArithOpHsNotInteger$fUnaryArithOpHsAbsInteger$fUnaryArithOpHsNegNFixed$fUnaryArithOpHsNegFixed$fUnaryArithOpHsNegBls12381G2$fUnaryArithOpHsNegBls12381G1$fUnaryArithOpHsNegBls12381Fr$fUnaryArithOpHsNegNatural$fUnaryArithOpHsNegInteger$fToIntegerArithOpHsBls12381Fr$fToIntegerArithOpHsNFixed$fToIntegerArithOpHsNatural$fUnaryArithOpHsGeNatural$fUnaryArithOpHsLeNatural$fUnaryArithOpHsGtNatural$fUnaryArithOpHsLtNatural$fUnaryArithOpHsNeqNatural$fUnaryArithOpHsEq'NaturalParameterWrapperunParameterWraper$fHasRPCReprParameterWrapper)$fParameterHasEntrypointsParameterWrapper2$fEntrypointsDerivationTYPEPwDerivParameterWrapper$fGenericParameterWrapper$fIsoValueParameterWrapper$fUnwrappableParameterWrapper$fWrappableParameterWrapper ZipInstrsZipInstr ZippedStack zipInstrTypedunzipInstrTypedzipInstr unzipInstr zippingStackunzippingStack$fHasRPCRepr:->$fHasAnnotation:-> $fIsoValue:-> $fZipInstr: $fZipInstr:0 $fZipInstr[] DViewDescViewsDescriptorHasDocviewsDescriptorNamerenderViewsDescriptorDocDViewRetDViewArgDViewdvNamedvSubDEntrypointExampledocdocGroup docStorage contractNamebuildLorentzDoccontractGeneralcontractGeneralDefaultbuildLorentzDocWithGitRevrenderLorentzDocrenderLorentzDocWithGitRevcutLorentzNonDocmkDEntrypointExample$fTypeHasDocFutureContract$fTypeHasDoc:->$fContainsUpdateableDocContract$fContainsDocContract$fContainsUpdateableDoc:->$fContainsDoc:->$fDocItemDEntrypointExample$fDocItemDView$fDocItemDViewArg$fDocItemDViewRet$fRenderViewsImpl:$fRenderViewsImpl[]$fDocItemDViewDesc$fOrdDViewDesc $fEqDViewDesc$fTypeHasDocTAddress OpenChestT ChestContentTChestOpenFailedTChestTunChestTKeccakSha3Blake2bSha512Sha256DHashAlgorithmKnownHashAlgorithmhashAlgorithmName computeHashtoHashHash UnsafeHashunHash TSignature unTSignaturePackedunPacked BytesLiketoByteslSigntoHashHs openChestT$fBytesLikeByteString$fTypeHasDocPacked$fHasRPCReprPacked$fBuildablePacked$fTypeHasDocTSignature$fHasRPCReprTSignature$fBuildableTSignature$fHasRPCReprHash$fBuildableHash$fDocItemDHashAlgorithm$fOrdDHashAlgorithm$fEqDHashAlgorithm$fKnownHashAlgorithmSha256$fKnownHashAlgorithmSha512$fKnownHashAlgorithmBlake2b$fTypeHasDocHash$fKnownHashAlgorithmSha3$fKnownHashAlgorithmKeccak$fTypeHasDocChestT$fHasRPCReprChestT$fTypeHasDocOpenChestT$fHasRPCReprOpenChestT$fGenericOpenChestT$fShowOpenChestT$fEqOpenChestT$fIsoValueOpenChestT$fHasAnnotationOpenChestT$fIsoValueChestT$fHasAnnotationChestT$fGenericChestT $fShowHash$fEqHash $fOrdHash $fGenericHash$fIsoValueHash$fHasAnnotationHash$fBytesLikeHash$fShowTSignature$fGenericTSignature$fIsoValueTSignature$fHasAnnotationTSignature $fShowPacked $fEqPacked $fOrdPacked$fGenericPacked$fIsoValuePacked$fHasAnnotationPacked$fBytesLikePacked lPackValueRawlUnpackValueRaw lPackValue lUnpackValue lEncodeValuevalueToScriptExprexpressionToScriptExprLorentzFunctorlmapConstraintDIPNLorentz PairUpdateHsConstraintPairUpdateLorentz PairGetHsConstraintPairGetLorentzConstraintDUGLorentzConstraintDIGLorentzConstraintDUPNLorentznopdropdropNdup dupNPeanodupNswapdigPeanodigdugPeanodugpushsomenoneunitifNonepaircarcdrunpairleftrightifLeftnilconsifConssizeemptySetemptyMap emptyBigMapmapitermemgetpairGetupdate getAndUpdate pairUpdateif_looploopLeftlambdaexecexecuteapply applicatedip dipNPeanodipNcastpackunpackpackRaw unpackRawconcatconcat'sliceisNataddsubrsubsubMutez rsubMutezmuledivabsneglsllsrorandxornotcompareeq0neq0lt0gt0le0ge0intview'self selfCallingcontractcontractCallingunsafeContractCallingrunFutureContractepAddressToContracttransferTokens setDelegatecreateContractimplicitAccountnowamountbalance votingPowertotalVotingPowercheckSignaturesha256sha512blake2Bsha3keccakhashKey pairingChecksourcesenderaddresschainIdlevel selfAddressneverticket readTicket splitTicketsplitTicketNamed joinTickets openChestframedfailingWhenPresent updateNew$fLorentzFunctorMaybedupTdipTdropT$fDupTorigSta:$fDupTorigSta:0$fDupTorigSta[]$fDipTorigSta:dipInpdipOutout1$fDipTorigSta:dipInpdipOutout$fDipTorigSta[]dipInpdipOutoutDThrowsDErrorCustomErrorHasDoccustomErrDocMdCausecustomErrDocMdCauseInEntrypointcustomErrClasscustomErrArgumentSemantics ErrorClassErrClassActionExceptionErrClassBadArgumentErrClassContractInternalErrClassUnknownMustHaveErrorArgIsCustomErrorArgRepverifyErrorTagcustomErrorRepDocDepscustomErrorHaskellRepCustomErrorRep UnitErrorArg NoErrorArg CustomErrorceTagceArgErrorArg SomeError ImpossibleUnspecifiedError ErrorHasDocErrorRequirements errorDocNameerrorDocMdCauseerrorDocMdCauseInEntrypointerrorDocHaskellRep errorDocClasserrorDocDependencieserrorDocRequirementsIsError errorToVal errorFromVal failUsing ErrorScope isoErrorToValisoErrorFromValsimpleFailUsingfailUnexpectederrorTagToMTexterrorTagToText failCustomfailCustomNoArg failCustom_isInternalErrorClass typeDocMdDescriptionReferToError$fShow->$fEq->$fIsoValueCustomError$fBuildableCustomError$fBuildableErrorClass$fReadErrorClass$fErrorHasDoc->$fErrorHasDocImpossible$fErrorHasDocUnspecifiedError$fErrorHasDoc()$fErrorHasDocMText $fIsError->$fIsErrorImpossible$fIsErrorUnspecifiedError $fIsError()$fIsErrorMText$fShowSomeError$fBuildableSomeError $fEqSomeError$fErrorHasDocCustomError$fIsErrorCustomError$fIsCustomErrorArgRep(,)$fIsCustomErrorArgRepMText$fDocItemDError $fOrdDError $fEqDError$fDocItemDThrows $fEqDThrows$fLiftLiftedRepErrorClass$fGenericUnspecifiedError$fIsoValueUnspecifiedError$fShowCustomError$fEqCustomError entrypointDocerrorDoctypeDocErrorTagExclusions ErrorTagMapgatherErrorTagsaddNewErrorTagsbuildErrorTagMapexcludeErrorTagsapplyErrorTagMapapplyErrorTagMapWithExclusionsuseNumericErrorserrorFromValNumericerrorToValNumericEmptyabsurd_"$fCustomErrorHasDoc"emptySupplied"$fTypeHasDocEmpty$fHasRPCReprEmpty$fGenericEmpty$fIsoValueEmpty$fHasAnnotationEmpty Coercible_ Castable_ CanCastTo castDummyMichelsonCoercible forcedCoerce forcedCoerce_gForcedCoerce_ fakeCoerce fakeCoercing coerceUnwrapunsafeCoerceWrap coerceWraptoNamed fromNamed checkedCoercecheckedCoerce_checkedCoercing_allowCheckedCoerceToallowCheckedCoerce castDummyG$fCanCastToTYPETYPEHashHash'$fCanCastToTYPETYPETSignatureTSignature$fCanCastToTYPETYPEPackedPacked!$fCanCastToTYPETYPEHashByteString'$fCanCastToTYPETYPETSignatureByteString#$fCanCastToTYPETYPEPackedByteString*$fCanCastToTYPETYPEFutureContractEpAddress"$fCanCastToTYPETYPEAddressTAddress"$fCanCastToTYPETYPETAddressAddress!$fCanCastToTYPETYPE(,,,,,)(,,,,,)$fCanCastToTYPETYPE(,,,,)(,,,,)$fCanCastToTYPETYPE(,,,)(,,,)$fCanCastToTYPETYPE(,,)(,,)$fCanCastToTYPETYPE(,)(,)$fCanCastToTYPETYPENamedFNamedF)$fCanCastToTYPETYPEContractRefContractRef$fCanCastToTYPETYPE:->:->$fCanCastToTYPETYPEBigMapBigMap$fCanCastToTYPETYPEMapMap$fCanCastToTYPETYPESetSet$fCanCastToTYPETYPEEitherEither$fCanCastToTYPETYPEMaybeMaybe$fCanCastToTYPETYPE[][]$fCanCastTokkaaExtensibleHasDocextensibleDocNameextensibleDocDependenciesextensibleDocMdDescriptionExtConversionErrorConstructorIndexNotFoundArgumentUnpackFailedWrapExtCExtVal ExtensibletoExtVal fromExtValwrapExt$fHasRPCReprExtensible$fWrapExtNoFields$fWrapExtOneField$fBuildableExtConversionError$fGExtValkt:+:$fGExtValTYPEtM1$fGExtValTYPEtM10 $fGExtValktM1$fTypeHasDocExtensible$fDocumentCtorCtor$fEqExtConversionError$fShowExtConversionError$fGenericExtensible$fEqExtensible$fShowExtensible$fIsoValueExtensible$fHasAnnotationExtensible$fUnwrappableExtensibleCaseTC CaseArrow/-> CaseClauseLHasDupableGettersHasFieldsOfType:= NamedFieldHasFieldOfTypeHasFieldtoField toFieldNamedgetField getFieldNamedsetField modifyField getFieldOpen setFieldOpen constructconstructStack deconstruct fieldCtorwrap_wrapOnecase_caseT unsafeUnwrap_$fHasDupableGettersTYPEa$fCaseArrownamebodyCaseClauseL HasNamedVars HasNamedVar VarIsUnnamed dupLNameddupL$fHasNamedVar[]namevar$fElemHasNamedVar:namevarFalse$fElemHasNamedVar:namevarTrue$fHasNamedVar:namevarNonZerononZero VoidResult unVoidResultVoid_ voidParam voidResProxyView_ viewParamviewCallbackToUpdateN updateNImplConstraintUpdateNLorentzReplaceN replaceNImplConstraintReplaceNLorentz mapInsert mapInsertNew deleteMapErrInstreqneqgtlegeltifEq0ifNeq0ifLt0ifGt0ifLe0ifGe0ifEqifNeqifLtifGtifLeifGefail_assert assertEq0 assertNeq0 assertLt0 assertGt0 assertLe0 assertGe0assertEq assertNeqassertLtassertGtassertLeassertGe assertNone assertSome assertLeft assertRight assertUsingdropXcloneXduupXframedNcarNcdrNpapairppaiircdarcddrcaarcadrsetCarsetCdrmapCarmapCdrifRightifSomewhen_unless_whenSomewhenNone setInsert setInsertNew setDeletereplaceNupdateNbuildViewTuple_ buildView_mkView_ wrapView_ unwrapView_view_ voidResultTagmkVoidvoid_wrapVoid unwrapVoidaddressToEpAddresspushContractRefdupTop2 fromOptionisSomenonnon'isEmpty$fCustomErrorHasDoc"no_view" $fCloneXSas $fCloneXZas$fMapInstrsBigMap$fMapInstrsMap$fReplaceN[][]Ssamidtail$fReplaceNkkSsamidtail$fUpdateN[][]Ssabmidtail$fUpdateNk[]Ssabmidtail$fUpdateNk[]Ssabmidtail0$fBuildableView_$fBuildableView_0$fTypeHasDocView_$fHasRPCReprView_$fCanCastToTYPETYPEView_View_$fBuildableVoid_$fTypeHasDocVoid_$fHasRPCReprVoid_$fCanCastToTYPETYPEVoid_Void_$fIsoValueVoidResult$fErrorHasDocVoidResult$fIsErrorVoidResult$fTypeHasDocVoidResult$fNonZeroTicket$fNonZeroNatural$fNonZeroInteger$fGenericVoidResult$fEqVoidResult$fGenericVoid_ $fShowVoid_$fHasAnnotationVoid_ $fEqView_ $fShowView_$fGenericView_$fHasAnnotationView_$fIsoValueVoid_$fIsoValueView_ IsCondition ifThenElse ConditionHoldsIsSomeIsNoneIsLeftIsRightIsConsIsNilNotIsZero IsNotZeroIsEqIsNeqIsLtIsGtIsLeIsGeNamedBinConditionPreserveArgsBinCondition>><.>.<=.>=.==./=. keepIfArgs-$fIsConditionConditionarg0argl0argr0outb0out0LorentzFixedCast fromFixedtoFixedLorentzRoundinground_ceil_floor_divcastNFixedToFixedcastFixedToNFixed$fArithOpHsEDivNFixedNaturalr$fArithOpHsEDivNFixedIntegerr$fArithOpHsEDivNFixedNaturalr0$fArithOpHsEDivNFixedIntegerr0$fArithOpHsEDivFixedNaturalr$fArithOpHsEDivFixedIntegerr$fArithOpHsEDivFixedNaturalr0$fArithOpHsEDivFixedIntegerr0$fLorentzRoundingNFixedNFixed$fLorentzRoundingNFixedNFixed0$fLorentzFixedCastNFixed$fLorentzFixedCastFixed$fLorentzFixedCastFixed0$fArithOpHsDivNFixedNFixedMaybe $fArithOpHsDivNFixedNFixedMaybe0$fArithOpHsDivFixedFixedMaybe$fArithOpHsDivFixedFixedMaybe0$fLorentzRoundingFixedFixed$fLorentzRoundingFixedFixed0Exprtake unaryExpr$: binaryExpr|+||-||*||==||/=||<||>||<=||>=||&|||||.|.||^||<<||>>||:||@|pairElistEtransferTokensEcreateContractEviewE"$fIsCondition:->argarglargroutboutSTicketverifyTicketGeneric'verifyTicketGenericverifyTicketerverifyTargetContractAndverifyTargetContractauthorizeAction toSTicket readSTicket sTicketAmountsubtractSTicketsubtractSTicketPlain addSTicketaddSTicketPlain,$fCustomErrorHasDoc"nOT_SINGLE_TICKET_TOKEN"&$fCustomErrorHasDoc"nOT_TICKET_TARGET"#$fCustomErrorHasDoc"wRONG_TICKETER"$fTypeHasDocSTicket$fNonZeroSTicket!$fCanCastToTYPETYPESTicketSTicket$fGenericSTicket$fUnwrappableSTicket$fHasAnnotationSTicket$fIsoValueSTicketNumericErrorWrapperNumericErrorDocHandlerNumericErrorDocHandlerErrorDDescribeErrorTagMap detmSrcLocapplyErrorTagToErrorsDocapplyErrorTagToErrorsDocWithcustomErrorDocHandlervoidResultDocHandlerbaseErrorDocHandlers$fDocItemDDescribeErrorTagMap$fErrorHasDocNumericTextError$fErrorHasNumericDocVoidResult$fErrorHasNumericDocCustomError $fErrorHasDocNumericErrorWrapper$fEqDDescribeErrorTagMap$fOrdDDescribeErrorTagMapLDefaultldeflIsDef $fLDefault(,)$fLDefaultNamedF $fLDefaultMap $fLDefaultSet $fLDefault[]$fLDefaultNatural$fLDefaultIntegerLIsoliToliFrom invertIso involutedIsocheckedCoerceIsoforcedCoerceIsonamedIsononIso nonDefIsoStorageContains::->~> FieldNickname FieldAliasSelfRef:-|StoreHasEntrypoint storeEpOpsStoreEntrypointOps sopToEpLambdasopSetEpLambda sopToEpStore sopSetEpStoreEntrypointsFieldEntrypointLambdaStoreHasSubmapstoreSubmapOpsStoreSubmapOpssopMemsopGet sopUpdatesopGetAndUpdate sopDelete sopInsert StoreHasField storeFieldOps StoreFieldOps sopToFieldsopGetFieldOpensopSetFieldOpenFieldRefHasFinalNameFieldRefFinalNamefieldRefFinalName FieldSymRef FieldNameFieldRef KnownFieldRefFieldRefObject mkFieldRef FieldRefTag FieldRefKindfieldNameToLabelfieldNameFromLabel sopGetField sopSetField stToField stGetFieldstToFieldNamedstGetFieldNamed stSetFieldstMemstGetstUpdatestGetAndUpdatestDeletestInsert stInsertNew stEntrypoint stToEpLambda stGetEpLambda stSetEpLambda stToEpStore stGetEpStore stSetEpStorestoreFieldOpsADTstoreEntrypointOpsADTstoreEntrypointOpsFieldsstoreEntrypointOpsSubmapFieldstoreFieldOpsDeeperstoreSubmapOpsDeeperstoreEntrypointOpsDeeperstoreSubmapOpsReferTostoreFieldOpsReferTostoreEntrypointOpsReferTomapStoreFieldOpsmapStoreSubmapOpsKeymapStoreSubmapOpsValuecomposeStoreFieldOpscomposeStoreSubmapOpssequenceStoreSubmapOpscomposeStoreEntrypointOpszoomStoreSubmapOps mkStoreEpthisstNestedstAlias stNickname$fKnownFieldRefSymbolname$fIsLabelnamex $fFieldRefHasFinalNameSymbolname$$fStoreHasFieldSymbolstorefnameftype"$fStoreHasSubmap->store:-|keyvalue$fStoreHasField->store:-|ty$fFieldRefHasFinalName->:-|$fKnownFieldRef->:-|!$fStoreHasSubmap->SetSelfRefkey()$$fStoreHasSubmap->MapSelfRefkeyvalue'$fStoreHasSubmap->BigMapSelfRefkeyvalue"$fStoreHasField->storeSelfRefstore$fKnownFieldRef->SelfRef'$fStoreHasSubmapSymbolstorenamekeyvalue$fStNestedImplk->acc$fStNestedImplkresacc$fKnownFieldRef->FieldAliasderiveSemiDupableGenericRequireFlatEpDerivationRequireFlatParamEps EntryArrow#->DocumentEntrypointsDeriveCtorFieldDocderiveCtorFieldDocDEntrypointArgepaArg epaBuildingSomeEntrypointArgParamBuildingStep PbsWrapInPbsCallEntrypoint PbsCustom PbsUncallableParamBuildingDesc pbdEnglish pbdHaskell pbdMichelson ParamBuilderunParamBuilderDEntrypointReferenceCommonEntrypointsBehaviourKindCommonContractBehaviourKindPlainEntrypointsKindEntrypointKindHasDocentrypointKindPosentrypointKindSectionName entrypointKindSectionDescription DEntrypointdepNamedepSubDEntrypointDocItemdiEntrypointToMarkdownentrypointSection mkPbsWrapInconstructDEpArg emptyDEpArg mkDEpUTypemkDEntrypointArgSimpleclarifyParamBuildingSteps entryCase_ entryCasedocumentEntrypointfinalizeParamCallingDoc'finalizeParamCallingDocareFinalizedParamBuildingStepsentryCaseSimple_entryCaseSimple$fDocItemDEntrypoint*$fEntrypointKindHasDocPlainEntrypointsKind1$fEntrypointKindHasDocCommonContractBehaviourKind4$fEntrypointKindHasDocCommonEntrypointsBehaviourKind$fDocItemDEntrypointReference$fEqParamBuilder$fShowParamBuilder$fBuildableParamBuilder$fBuildableParamBuildingStep$fDocItemDEntrypointArg$fDeriveCtorFieldDocconOneField$fDeriveCtorFieldDocconNoFields$fGDocumentEntrypointskindM1$fGDocumentEntrypointskind:+:$fGDocumentEntrypointskindM10$fEntryArrowTYPEkindnamebody$fShowParamBuildingStep$fEqParamBuildingStep$fShowParamBuildingDesc$fEqParamBuildingDescUParamLinearizedUParamLinearize CaseUParamUParamFallbackEntrypointsImplEntrypointLookupErrorNoSuchEntrypoint UnpackUParam unpackUParamConstrainedSomeRequireUniqueEntrypointsLookupEntrypointUParam_ SomeInterfaceUParam UnsafeUParam?:EntrypointKindmkUParam unwrapUParamuparamFallbackFail caseUParam caseUParamT uparamFromAdt pbsUParam/$fCustomErrorHasDoc"uparamArgumentUnpackFailed"+$fCustomErrorHasDoc"uparamNoSuchEntrypoint"$fBuildableCustomError0$fTypeHasDocUParam$fHasRPCReprUParam$fCanCastToTYPETYPEUParamUParam$fBuildableConstrainedSome$fShowConstrainedSome$fCaseArrowname'bodyCaseClauseU $fBuildableEntrypointLookupError$fUnpackUParamc:$fUnpackUParamc[] $fCaseUParam:$fCaseUParam[]$fGUParamLinearizeM1$fGUParamLinearizeM10$fGUParamLinearizeM11$fGUParamLinearize:+:$fGUParamLinearizeM12$fGenericEntrypointLookupError$fEqEntrypointLookupError$fShowEntrypointLookupError$fGenericUParam $fEqUParam $fShowUParam$fIsoValueUParam$fHasAnnotationUParam$fUnwrappableUParam ContractView ContractDatacdCodecdViewscdCompilationOptionsCompilationOptionscoOptimizerConfcoStringTransformercoBytesTransformercoDisableInitialCastdefaultCompilationOptionsintactCompilationOptionscompileLorentzcompileLorentzWithOptionsdefaultContract mkContractmkContractWithmkViewdefaultContractDatacompileLorentzContractsetViews setViewsRecnoViewsinterpretLorentzInstrinterpretLorentzLambdaanalyzeLorentz#$fContainsUpdateableDocContractData$fContainsDocContractDatacoBytesTransformerLcoDisableInitialCastLcoOptimizerConfLcoStringTransformerLcdCodeLcdCompilationOptionsL-$?-$&?-&-<-$>printLorentzValueprintLorentzContractcontractOpSize valueOpSize CmdLnArgsPrintDocumentAnalyze PrintStorageContractRegistryunContractRegistry ContractInfo ciContractciIsDocumentedciStorageParserciStorageNotesprintContractFromRegistryDoc argParserrunContractRegistry$fBuildableContractRegistryMorley.Michelson.Typed.ArithOrMorley.Michelson.PreprocesstransformStringstransformBytesformatting-7.1.3-08684a626cf92d9926d6cc487bcc156f7714ceee29490992e2dace6272caa4b7Formatting.Buildable Buildable"Morley.Michelson.Typed.PolymorphicSliceOpConcatOpGetOpUpdOpSizeOpMorley.Michelson.Typed.TTIterOpMapOpMemOpKeyTOr UnaryArithOpArithOp SecretKeyMorley.Micheline.Expression ExpressionCONTRACTSELFCustomErrorArgRepFAILWITHD:R:ErrorArg"emptySupplied"(Morley.Michelson.Typed.Haskell.Instr.Sum CaseClauseType instrGetField mapUpdatedocumentEntrypoints CtorFieldversion getBinDir getLibDir getDynLibDir getDataDir getLibexecDir getSysconfDirgetDataFileName