UNPKG

ton-assembly

Version:

TON assembler and disassembler

1,868 lines 133 kB
import * as $ from "./util"; import * as G from "@ton/core"; export declare const PUSHNAN: (loc?: $.Loc) => PUSHNAN; export type PUSHNAN = { $: "PUSHNAN"; loc: $.Loc | undefined; }; export declare const ADD: (loc?: $.Loc) => ADD; export type ADD = { $: "ADD"; loc: $.Loc | undefined; }; export declare const SUB: (loc?: $.Loc) => SUB; export type SUB = { $: "SUB"; loc: $.Loc | undefined; }; export declare const SUBR: (loc?: $.Loc) => SUBR; export type SUBR = { $: "SUBR"; loc: $.Loc | undefined; }; export declare const NEGATE: (loc?: $.Loc) => NEGATE; export type NEGATE = { $: "NEGATE"; loc: $.Loc | undefined; }; export declare const INC: (loc?: $.Loc) => INC; export type INC = { $: "INC"; loc: $.Loc | undefined; }; export declare const DEC: (loc?: $.Loc) => DEC; export type DEC = { $: "DEC"; loc: $.Loc | undefined; }; export declare const MUL: (loc?: $.Loc) => MUL; export type MUL = { $: "MUL"; loc: $.Loc | undefined; }; export declare const POW2: (loc?: $.Loc) => POW2; export type POW2 = { $: "POW2"; loc: $.Loc | undefined; }; export declare const AND: (loc?: $.Loc) => AND; export type AND = { $: "AND"; loc: $.Loc | undefined; }; export declare const OR: (loc?: $.Loc) => OR; export type OR = { $: "OR"; loc: $.Loc | undefined; }; export declare const XOR: (loc?: $.Loc) => XOR; export type XOR = { $: "XOR"; loc: $.Loc | undefined; }; export declare const NOT: (loc?: $.Loc) => NOT; export type NOT = { $: "NOT"; loc: $.Loc | undefined; }; export declare const FITSX: (loc?: $.Loc) => FITSX; export type FITSX = { $: "FITSX"; loc: $.Loc | undefined; }; export declare const UFITSX: (loc?: $.Loc) => UFITSX; export type UFITSX = { $: "UFITSX"; loc: $.Loc | undefined; }; export declare const BITSIZE: (loc?: $.Loc) => BITSIZE; export type BITSIZE = { $: "BITSIZE"; loc: $.Loc | undefined; }; export declare const UBITSIZE: (loc?: $.Loc) => UBITSIZE; export type UBITSIZE = { $: "UBITSIZE"; loc: $.Loc | undefined; }; export declare const MIN: (loc?: $.Loc) => MIN; export type MIN = { $: "MIN"; loc: $.Loc | undefined; }; export declare const MAX: (loc?: $.Loc) => MAX; export type MAX = { $: "MAX"; loc: $.Loc | undefined; }; export declare const MINMAX: (loc?: $.Loc) => MINMAX; export type MINMAX = { $: "MINMAX"; loc: $.Loc | undefined; }; export declare const ABS: (loc?: $.Loc) => ABS; export type ABS = { $: "ABS"; loc: $.Loc | undefined; }; export declare const QADD: (loc?: $.Loc) => QADD; export type QADD = { $: "QADD"; loc: $.Loc | undefined; }; export declare const QSUB: (loc?: $.Loc) => QSUB; export type QSUB = { $: "QSUB"; loc: $.Loc | undefined; }; export declare const QSUBR: (loc?: $.Loc) => QSUBR; export type QSUBR = { $: "QSUBR"; loc: $.Loc | undefined; }; export declare const QNEGATE: (loc?: $.Loc) => QNEGATE; export type QNEGATE = { $: "QNEGATE"; loc: $.Loc | undefined; }; export declare const QINC: (loc?: $.Loc) => QINC; export type QINC = { $: "QINC"; loc: $.Loc | undefined; }; export declare const QDEC: (loc?: $.Loc) => QDEC; export type QDEC = { $: "QDEC"; loc: $.Loc | undefined; }; export declare const QMUL: (loc?: $.Loc) => QMUL; export type QMUL = { $: "QMUL"; loc: $.Loc | undefined; }; export declare const QPOW2: (loc?: $.Loc) => QPOW2; export type QPOW2 = { $: "QPOW2"; loc: $.Loc | undefined; }; export declare const QAND: (loc?: $.Loc) => QAND; export type QAND = { $: "QAND"; loc: $.Loc | undefined; }; export declare const QOR: (loc?: $.Loc) => QOR; export type QOR = { $: "QOR"; loc: $.Loc | undefined; }; export declare const QXOR: (loc?: $.Loc) => QXOR; export type QXOR = { $: "QXOR"; loc: $.Loc | undefined; }; export declare const QNOT: (loc?: $.Loc) => QNOT; export type QNOT = { $: "QNOT"; loc: $.Loc | undefined; }; export declare const QFITSX: (loc?: $.Loc) => QFITSX; export type QFITSX = { $: "QFITSX"; loc: $.Loc | undefined; }; export declare const QUFITSX: (loc?: $.Loc) => QUFITSX; export type QUFITSX = { $: "QUFITSX"; loc: $.Loc | undefined; }; export declare const QBITSIZE: (loc?: $.Loc) => QBITSIZE; export type QBITSIZE = { $: "QBITSIZE"; loc: $.Loc | undefined; }; export declare const QUBITSIZE: (loc?: $.Loc) => QUBITSIZE; export type QUBITSIZE = { $: "QUBITSIZE"; loc: $.Loc | undefined; }; export declare const QMIN: (loc?: $.Loc) => QMIN; export type QMIN = { $: "QMIN"; loc: $.Loc | undefined; }; export declare const QMAX: (loc?: $.Loc) => QMAX; export type QMAX = { $: "QMAX"; loc: $.Loc | undefined; }; export declare const QMINMAX: (loc?: $.Loc) => QMINMAX; export type QMINMAX = { $: "QMINMAX"; loc: $.Loc | undefined; }; export declare const QABS: (loc?: $.Loc) => QABS; export type QABS = { $: "QABS"; loc: $.Loc | undefined; }; export declare const SGN: (loc?: $.Loc) => SGN; export type SGN = { $: "SGN"; loc: $.Loc | undefined; }; export declare const LESS: (loc?: $.Loc) => LESS; export type LESS = { $: "LESS"; loc: $.Loc | undefined; }; export declare const EQUAL: (loc?: $.Loc) => EQUAL; export type EQUAL = { $: "EQUAL"; loc: $.Loc | undefined; }; export declare const LEQ: (loc?: $.Loc) => LEQ; export type LEQ = { $: "LEQ"; loc: $.Loc | undefined; }; export declare const GREATER: (loc?: $.Loc) => GREATER; export type GREATER = { $: "GREATER"; loc: $.Loc | undefined; }; export declare const NEQ: (loc?: $.Loc) => NEQ; export type NEQ = { $: "NEQ"; loc: $.Loc | undefined; }; export declare const GEQ: (loc?: $.Loc) => GEQ; export type GEQ = { $: "GEQ"; loc: $.Loc | undefined; }; export declare const CMP: (loc?: $.Loc) => CMP; export type CMP = { $: "CMP"; loc: $.Loc | undefined; }; export declare const ISNAN: (loc?: $.Loc) => ISNAN; export type ISNAN = { $: "ISNAN"; loc: $.Loc | undefined; }; export declare const CHKNAN: (loc?: $.Loc) => CHKNAN; export type CHKNAN = { $: "CHKNAN"; loc: $.Loc | undefined; }; export declare const QSGN: (loc?: $.Loc) => QSGN; export type QSGN = { $: "QSGN"; loc: $.Loc | undefined; }; export declare const QLESS: (loc?: $.Loc) => QLESS; export type QLESS = { $: "QLESS"; loc: $.Loc | undefined; }; export declare const QEQUAL: (loc?: $.Loc) => QEQUAL; export type QEQUAL = { $: "QEQUAL"; loc: $.Loc | undefined; }; export declare const QLEQ: (loc?: $.Loc) => QLEQ; export type QLEQ = { $: "QLEQ"; loc: $.Loc | undefined; }; export declare const QGREATER: (loc?: $.Loc) => QGREATER; export type QGREATER = { $: "QGREATER"; loc: $.Loc | undefined; }; export declare const QNEQ: (loc?: $.Loc) => QNEQ; export type QNEQ = { $: "QNEQ"; loc: $.Loc | undefined; }; export declare const QGEQ: (loc?: $.Loc) => QGEQ; export type QGEQ = { $: "QGEQ"; loc: $.Loc | undefined; }; export declare const QCMP: (loc?: $.Loc) => QCMP; export type QCMP = { $: "QCMP"; loc: $.Loc | undefined; }; export declare const SEMPTY: (loc?: $.Loc) => SEMPTY; export type SEMPTY = { $: "SEMPTY"; loc: $.Loc | undefined; }; export declare const SDEMPTY: (loc?: $.Loc) => SDEMPTY; export type SDEMPTY = { $: "SDEMPTY"; loc: $.Loc | undefined; }; export declare const SREMPTY: (loc?: $.Loc) => SREMPTY; export type SREMPTY = { $: "SREMPTY"; loc: $.Loc | undefined; }; export declare const SDFIRST: (loc?: $.Loc) => SDFIRST; export type SDFIRST = { $: "SDFIRST"; loc: $.Loc | undefined; }; export declare const SDLEXCMP: (loc?: $.Loc) => SDLEXCMP; export type SDLEXCMP = { $: "SDLEXCMP"; loc: $.Loc | undefined; }; export declare const SDEQ: (loc?: $.Loc) => SDEQ; export type SDEQ = { $: "SDEQ"; loc: $.Loc | undefined; }; export declare const SDPFX: (loc?: $.Loc) => SDPFX; export type SDPFX = { $: "SDPFX"; loc: $.Loc | undefined; }; export declare const SDPFXREV: (loc?: $.Loc) => SDPFXREV; export type SDPFXREV = { $: "SDPFXREV"; loc: $.Loc | undefined; }; export declare const SDPPFX: (loc?: $.Loc) => SDPPFX; export type SDPPFX = { $: "SDPPFX"; loc: $.Loc | undefined; }; export declare const SDPPFXREV: (loc?: $.Loc) => SDPPFXREV; export type SDPPFXREV = { $: "SDPPFXREV"; loc: $.Loc | undefined; }; export declare const SDSFX: (loc?: $.Loc) => SDSFX; export type SDSFX = { $: "SDSFX"; loc: $.Loc | undefined; }; export declare const SDSFXREV: (loc?: $.Loc) => SDSFXREV; export type SDSFXREV = { $: "SDSFXREV"; loc: $.Loc | undefined; }; export declare const SDPSFX: (loc?: $.Loc) => SDPSFX; export type SDPSFX = { $: "SDPSFX"; loc: $.Loc | undefined; }; export declare const SDPSFXREV: (loc?: $.Loc) => SDPSFXREV; export type SDPSFXREV = { $: "SDPSFXREV"; loc: $.Loc | undefined; }; export declare const SDCNTLEAD0: (loc?: $.Loc) => SDCNTLEAD0; export type SDCNTLEAD0 = { $: "SDCNTLEAD0"; loc: $.Loc | undefined; }; export declare const SDCNTLEAD1: (loc?: $.Loc) => SDCNTLEAD1; export type SDCNTLEAD1 = { $: "SDCNTLEAD1"; loc: $.Loc | undefined; }; export declare const SDCNTTRAIL0: (loc?: $.Loc) => SDCNTTRAIL0; export type SDCNTTRAIL0 = { $: "SDCNTTRAIL0"; loc: $.Loc | undefined; }; export declare const SDCNTTRAIL1: (loc?: $.Loc) => SDCNTTRAIL1; export type SDCNTTRAIL1 = { $: "SDCNTTRAIL1"; loc: $.Loc | undefined; }; export declare const NEWC: (loc?: $.Loc) => NEWC; export type NEWC = { $: "NEWC"; loc: $.Loc | undefined; }; export declare const ENDC: (loc?: $.Loc) => ENDC; export type ENDC = { $: "ENDC"; loc: $.Loc | undefined; }; export declare const ENDCST: (loc?: $.Loc) => ENDCST; export type ENDCST = { $: "ENDCST"; loc: $.Loc | undefined; }; export declare const STBREF: (loc?: $.Loc) => STBREF; export type STBREF = { $: "STBREF"; loc: $.Loc | undefined; }; export declare const STB: (loc?: $.Loc) => STB; export type STB = { $: "STB"; loc: $.Loc | undefined; }; export declare const STREFR: (loc?: $.Loc) => STREFR; export type STREFR = { $: "STREFR"; loc: $.Loc | undefined; }; export declare const STBREFR: (loc?: $.Loc) => STBREFR; export type STBREFR = { $: "STBREFR"; loc: $.Loc | undefined; }; export declare const STSLICER: (loc?: $.Loc) => STSLICER; export type STSLICER = { $: "STSLICER"; loc: $.Loc | undefined; }; export declare const STBR: (loc?: $.Loc) => STBR; export type STBR = { $: "STBR"; loc: $.Loc | undefined; }; export declare const STREFQ: (loc?: $.Loc) => STREFQ; export type STREFQ = { $: "STREFQ"; loc: $.Loc | undefined; }; export declare const STBREFQ: (loc?: $.Loc) => STBREFQ; export type STBREFQ = { $: "STBREFQ"; loc: $.Loc | undefined; }; export declare const STSLICEQ: (loc?: $.Loc) => STSLICEQ; export type STSLICEQ = { $: "STSLICEQ"; loc: $.Loc | undefined; }; export declare const STBQ: (loc?: $.Loc) => STBQ; export type STBQ = { $: "STBQ"; loc: $.Loc | undefined; }; export declare const STREFRQ: (loc?: $.Loc) => STREFRQ; export type STREFRQ = { $: "STREFRQ"; loc: $.Loc | undefined; }; export declare const STBREFRQ: (loc?: $.Loc) => STBREFRQ; export type STBREFRQ = { $: "STBREFRQ"; loc: $.Loc | undefined; }; export declare const STSLICERQ: (loc?: $.Loc) => STSLICERQ; export type STSLICERQ = { $: "STSLICERQ"; loc: $.Loc | undefined; }; export declare const STBRQ: (loc?: $.Loc) => STBRQ; export type STBRQ = { $: "STBRQ"; loc: $.Loc | undefined; }; export declare const ENDXC: (loc?: $.Loc) => ENDXC; export type ENDXC = { $: "ENDXC"; loc: $.Loc | undefined; }; export declare const BDEPTH: (loc?: $.Loc) => BDEPTH; export type BDEPTH = { $: "BDEPTH"; loc: $.Loc | undefined; }; export declare const BBITS: (loc?: $.Loc) => BBITS; export type BBITS = { $: "BBITS"; loc: $.Loc | undefined; }; export declare const BREFS: (loc?: $.Loc) => BREFS; export type BREFS = { $: "BREFS"; loc: $.Loc | undefined; }; export declare const BBITREFS: (loc?: $.Loc) => BBITREFS; export type BBITREFS = { $: "BBITREFS"; loc: $.Loc | undefined; }; export declare const BREMBITS: (loc?: $.Loc) => BREMBITS; export type BREMBITS = { $: "BREMBITS"; loc: $.Loc | undefined; }; export declare const BREMREFS: (loc?: $.Loc) => BREMREFS; export type BREMREFS = { $: "BREMREFS"; loc: $.Loc | undefined; }; export declare const BREMBITREFS: (loc?: $.Loc) => BREMBITREFS; export type BREMBITREFS = { $: "BREMBITREFS"; loc: $.Loc | undefined; }; export declare const BCHKREFS: (loc?: $.Loc) => BCHKREFS; export type BCHKREFS = { $: "BCHKREFS"; loc: $.Loc | undefined; }; export declare const BCHKBITREFS: (loc?: $.Loc) => BCHKBITREFS; export type BCHKBITREFS = { $: "BCHKBITREFS"; loc: $.Loc | undefined; }; export declare const BCHKREFSQ: (loc?: $.Loc) => BCHKREFSQ; export type BCHKREFSQ = { $: "BCHKREFSQ"; loc: $.Loc | undefined; }; export declare const BCHKBITREFSQ: (loc?: $.Loc) => BCHKBITREFSQ; export type BCHKBITREFSQ = { $: "BCHKBITREFSQ"; loc: $.Loc | undefined; }; export declare const STZEROES: (loc?: $.Loc) => STZEROES; export type STZEROES = { $: "STZEROES"; loc: $.Loc | undefined; }; export declare const STONES: (loc?: $.Loc) => STONES; export type STONES = { $: "STONES"; loc: $.Loc | undefined; }; export declare const STSAME: (loc?: $.Loc) => STSAME; export type STSAME = { $: "STSAME"; loc: $.Loc | undefined; }; export declare const CTOS: (loc?: $.Loc) => CTOS; export type CTOS = { $: "CTOS"; loc: $.Loc | undefined; }; export declare const ENDS: (loc?: $.Loc) => ENDS; export type ENDS = { $: "ENDS"; loc: $.Loc | undefined; }; export declare const LDREF: (loc?: $.Loc) => LDREF; export type LDREF = { $: "LDREF"; loc: $.Loc | undefined; }; export declare const LDREFRTOS: (loc?: $.Loc) => LDREFRTOS; export type LDREFRTOS = { $: "LDREFRTOS"; loc: $.Loc | undefined; }; export declare const SDCUTFIRST: (loc?: $.Loc) => SDCUTFIRST; export type SDCUTFIRST = { $: "SDCUTFIRST"; loc: $.Loc | undefined; }; export declare const SDSKIPFIRST: (loc?: $.Loc) => SDSKIPFIRST; export type SDSKIPFIRST = { $: "SDSKIPFIRST"; loc: $.Loc | undefined; }; export declare const SDCUTLAST: (loc?: $.Loc) => SDCUTLAST; export type SDCUTLAST = { $: "SDCUTLAST"; loc: $.Loc | undefined; }; export declare const SDSKIPLAST: (loc?: $.Loc) => SDSKIPLAST; export type SDSKIPLAST = { $: "SDSKIPLAST"; loc: $.Loc | undefined; }; export declare const SDSUBSTR: (loc?: $.Loc) => SDSUBSTR; export type SDSUBSTR = { $: "SDSUBSTR"; loc: $.Loc | undefined; }; export declare const SCUTFIRST: (loc?: $.Loc) => SCUTFIRST; export type SCUTFIRST = { $: "SCUTFIRST"; loc: $.Loc | undefined; }; export declare const SSKIPFIRST: (loc?: $.Loc) => SSKIPFIRST; export type SSKIPFIRST = { $: "SSKIPFIRST"; loc: $.Loc | undefined; }; export declare const SCUTLAST: (loc?: $.Loc) => SCUTLAST; export type SCUTLAST = { $: "SCUTLAST"; loc: $.Loc | undefined; }; export declare const SSKIPLAST: (loc?: $.Loc) => SSKIPLAST; export type SSKIPLAST = { $: "SSKIPLAST"; loc: $.Loc | undefined; }; export declare const SUBSLICE: (loc?: $.Loc) => SUBSLICE; export type SUBSLICE = { $: "SUBSLICE"; loc: $.Loc | undefined; }; export declare const SPLIT: (loc?: $.Loc) => SPLIT; export type SPLIT = { $: "SPLIT"; loc: $.Loc | undefined; }; export declare const SPLITQ: (loc?: $.Loc) => SPLITQ; export type SPLITQ = { $: "SPLITQ"; loc: $.Loc | undefined; }; export declare const XCTOS: (loc?: $.Loc) => XCTOS; export type XCTOS = { $: "XCTOS"; loc: $.Loc | undefined; }; export declare const XLOAD: (loc?: $.Loc) => XLOAD; export type XLOAD = { $: "XLOAD"; loc: $.Loc | undefined; }; export declare const XLOADQ: (loc?: $.Loc) => XLOADQ; export type XLOADQ = { $: "XLOADQ"; loc: $.Loc | undefined; }; export declare const SCHKBITS: (loc?: $.Loc) => SCHKBITS; export type SCHKBITS = { $: "SCHKBITS"; loc: $.Loc | undefined; }; export declare const SCHKREFS: (loc?: $.Loc) => SCHKREFS; export type SCHKREFS = { $: "SCHKREFS"; loc: $.Loc | undefined; }; export declare const SCHKBITREFS: (loc?: $.Loc) => SCHKBITREFS; export type SCHKBITREFS = { $: "SCHKBITREFS"; loc: $.Loc | undefined; }; export declare const SCHKBITSQ: (loc?: $.Loc) => SCHKBITSQ; export type SCHKBITSQ = { $: "SCHKBITSQ"; loc: $.Loc | undefined; }; export declare const SCHKREFSQ: (loc?: $.Loc) => SCHKREFSQ; export type SCHKREFSQ = { $: "SCHKREFSQ"; loc: $.Loc | undefined; }; export declare const SCHKBITREFSQ: (loc?: $.Loc) => SCHKBITREFSQ; export type SCHKBITREFSQ = { $: "SCHKBITREFSQ"; loc: $.Loc | undefined; }; export declare const PLDREFVAR: (loc?: $.Loc) => PLDREFVAR; export type PLDREFVAR = { $: "PLDREFVAR"; loc: $.Loc | undefined; }; export declare const SBITS: (loc?: $.Loc) => SBITS; export type SBITS = { $: "SBITS"; loc: $.Loc | undefined; }; export declare const SREFS: (loc?: $.Loc) => SREFS; export type SREFS = { $: "SREFS"; loc: $.Loc | undefined; }; export declare const SBITREFS: (loc?: $.Loc) => SBITREFS; export type SBITREFS = { $: "SBITREFS"; loc: $.Loc | undefined; }; export declare const LDZEROES: (loc?: $.Loc) => LDZEROES; export type LDZEROES = { $: "LDZEROES"; loc: $.Loc | undefined; }; export declare const LDONES: (loc?: $.Loc) => LDONES; export type LDONES = { $: "LDONES"; loc: $.Loc | undefined; }; export declare const LDSAME: (loc?: $.Loc) => LDSAME; export type LDSAME = { $: "LDSAME"; loc: $.Loc | undefined; }; export declare const SDEPTH: (loc?: $.Loc) => SDEPTH; export type SDEPTH = { $: "SDEPTH"; loc: $.Loc | undefined; }; export declare const CDEPTH: (loc?: $.Loc) => CDEPTH; export type CDEPTH = { $: "CDEPTH"; loc: $.Loc | undefined; }; export declare const CLEVEL: (loc?: $.Loc) => CLEVEL; export type CLEVEL = { $: "CLEVEL"; loc: $.Loc | undefined; }; export declare const CLEVELMASK: (loc?: $.Loc) => CLEVELMASK; export type CLEVELMASK = { $: "CLEVELMASK"; loc: $.Loc | undefined; }; export declare const CHASHIX: (loc?: $.Loc) => CHASHIX; export type CHASHIX = { $: "CHASHIX"; loc: $.Loc | undefined; }; export declare const CDEPTHIX: (loc?: $.Loc) => CDEPTHIX; export type CDEPTHIX = { $: "CDEPTHIX"; loc: $.Loc | undefined; }; export declare const EXECUTE: (loc?: $.Loc) => EXECUTE; export type EXECUTE = { $: "EXECUTE"; loc: $.Loc | undefined; }; export declare const JMPX: (loc?: $.Loc) => JMPX; export type JMPX = { $: "JMPX"; loc: $.Loc | undefined; }; export declare const RET: (loc?: $.Loc) => RET; export type RET = { $: "RET"; loc: $.Loc | undefined; }; export declare const RETALT: (loc?: $.Loc) => RETALT; export type RETALT = { $: "RETALT"; loc: $.Loc | undefined; }; export declare const RETBOOL: (loc?: $.Loc) => RETBOOL; export type RETBOOL = { $: "RETBOOL"; loc: $.Loc | undefined; }; export declare const CALLCC: (loc?: $.Loc) => CALLCC; export type CALLCC = { $: "CALLCC"; loc: $.Loc | undefined; }; export declare const JMPXDATA: (loc?: $.Loc) => JMPXDATA; export type JMPXDATA = { $: "JMPXDATA"; loc: $.Loc | undefined; }; export declare const CALLXVARARGS: (loc?: $.Loc) => CALLXVARARGS; export type CALLXVARARGS = { $: "CALLXVARARGS"; loc: $.Loc | undefined; }; export declare const RETVARARGS: (loc?: $.Loc) => RETVARARGS; export type RETVARARGS = { $: "RETVARARGS"; loc: $.Loc | undefined; }; export declare const JMPXVARARGS: (loc?: $.Loc) => JMPXVARARGS; export type JMPXVARARGS = { $: "JMPXVARARGS"; loc: $.Loc | undefined; }; export declare const CALLCCVARARGS: (loc?: $.Loc) => CALLCCVARARGS; export type CALLCCVARARGS = { $: "CALLCCVARARGS"; loc: $.Loc | undefined; }; export declare const RETDATA: (loc?: $.Loc) => RETDATA; export type RETDATA = { $: "RETDATA"; loc: $.Loc | undefined; }; export declare const RUNVMX: (loc?: $.Loc) => RUNVMX; export type RUNVMX = { $: "RUNVMX"; loc: $.Loc | undefined; }; export declare const IFRET: (loc?: $.Loc) => IFRET; export type IFRET = { $: "IFRET"; loc: $.Loc | undefined; }; export declare const IFNOTRET: (loc?: $.Loc) => IFNOTRET; export type IFNOTRET = { $: "IFNOTRET"; loc: $.Loc | undefined; }; export declare const IF: (loc?: $.Loc) => IF; export type IF = { $: "IF"; loc: $.Loc | undefined; }; export declare const IFNOT: (loc?: $.Loc) => IFNOT; export type IFNOT = { $: "IFNOT"; loc: $.Loc | undefined; }; export declare const IFJMP: (loc?: $.Loc) => IFJMP; export type IFJMP = { $: "IFJMP"; loc: $.Loc | undefined; }; export declare const IFNOTJMP: (loc?: $.Loc) => IFNOTJMP; export type IFNOTJMP = { $: "IFNOTJMP"; loc: $.Loc | undefined; }; export declare const IFELSE: (loc?: $.Loc) => IFELSE; export type IFELSE = { $: "IFELSE"; loc: $.Loc | undefined; }; export declare const CONDSEL: (loc?: $.Loc) => CONDSEL; export type CONDSEL = { $: "CONDSEL"; loc: $.Loc | undefined; }; export declare const CONDSELCHK: (loc?: $.Loc) => CONDSELCHK; export type CONDSELCHK = { $: "CONDSELCHK"; loc: $.Loc | undefined; }; export declare const IFRETALT: (loc?: $.Loc) => IFRETALT; export type IFRETALT = { $: "IFRETALT"; loc: $.Loc | undefined; }; export declare const IFNOTRETALT: (loc?: $.Loc) => IFNOTRETALT; export type IFNOTRETALT = { $: "IFNOTRETALT"; loc: $.Loc | undefined; }; export declare const REPEAT: (loc?: $.Loc) => REPEAT; export type REPEAT = { $: "REPEAT"; loc: $.Loc | undefined; }; export declare const REPEATEND: (loc?: $.Loc) => REPEATEND; export type REPEATEND = { $: "REPEATEND"; loc: $.Loc | undefined; }; export declare const UNTIL: (loc?: $.Loc) => UNTIL; export type UNTIL = { $: "UNTIL"; loc: $.Loc | undefined; }; export declare const UNTILEND: (loc?: $.Loc) => UNTILEND; export type UNTILEND = { $: "UNTILEND"; loc: $.Loc | undefined; }; export declare const WHILE: (loc?: $.Loc) => WHILE; export type WHILE = { $: "WHILE"; loc: $.Loc | undefined; }; export declare const WHILEEND: (loc?: $.Loc) => WHILEEND; export type WHILEEND = { $: "WHILEEND"; loc: $.Loc | undefined; }; export declare const AGAIN: (loc?: $.Loc) => AGAIN; export type AGAIN = { $: "AGAIN"; loc: $.Loc | undefined; }; export declare const AGAINEND: (loc?: $.Loc) => AGAINEND; export type AGAINEND = { $: "AGAINEND"; loc: $.Loc | undefined; }; export declare const REPEATBRK: (loc?: $.Loc) => REPEATBRK; export type REPEATBRK = { $: "REPEATBRK"; loc: $.Loc | undefined; }; export declare const REPEATENDBRK: (loc?: $.Loc) => REPEATENDBRK; export type REPEATENDBRK = { $: "REPEATENDBRK"; loc: $.Loc | undefined; }; export declare const UNTILBRK: (loc?: $.Loc) => UNTILBRK; export type UNTILBRK = { $: "UNTILBRK"; loc: $.Loc | undefined; }; export declare const UNTILENDBRK: (loc?: $.Loc) => UNTILENDBRK; export type UNTILENDBRK = { $: "UNTILENDBRK"; loc: $.Loc | undefined; }; export declare const WHILEBRK: (loc?: $.Loc) => WHILEBRK; export type WHILEBRK = { $: "WHILEBRK"; loc: $.Loc | undefined; }; export declare const WHILEENDBRK: (loc?: $.Loc) => WHILEENDBRK; export type WHILEENDBRK = { $: "WHILEENDBRK"; loc: $.Loc | undefined; }; export declare const AGAINBRK: (loc?: $.Loc) => AGAINBRK; export type AGAINBRK = { $: "AGAINBRK"; loc: $.Loc | undefined; }; export declare const AGAINENDBRK: (loc?: $.Loc) => AGAINENDBRK; export type AGAINENDBRK = { $: "AGAINENDBRK"; loc: $.Loc | undefined; }; export declare const RETURNVARARGS: (loc?: $.Loc) => RETURNVARARGS; export type RETURNVARARGS = { $: "RETURNVARARGS"; loc: $.Loc | undefined; }; export declare const SETCONTVARARGS: (loc?: $.Loc) => SETCONTVARARGS; export type SETCONTVARARGS = { $: "SETCONTVARARGS"; loc: $.Loc | undefined; }; export declare const SETNUMVARARGS: (loc?: $.Loc) => SETNUMVARARGS; export type SETNUMVARARGS = { $: "SETNUMVARARGS"; loc: $.Loc | undefined; }; export declare const BLESS: (loc?: $.Loc) => BLESS; export type BLESS = { $: "BLESS"; loc: $.Loc | undefined; }; export declare const BLESSVARARGS: (loc?: $.Loc) => BLESSVARARGS; export type BLESSVARARGS = { $: "BLESSVARARGS"; loc: $.Loc | undefined; }; export declare const PUSHCTRX: (loc?: $.Loc) => PUSHCTRX; export type PUSHCTRX = { $: "PUSHCTRX"; loc: $.Loc | undefined; }; export declare const POPCTRX: (loc?: $.Loc) => POPCTRX; export type POPCTRX = { $: "POPCTRX"; loc: $.Loc | undefined; }; export declare const SETCONTCTRX: (loc?: $.Loc) => SETCONTCTRX; export type SETCONTCTRX = { $: "SETCONTCTRX"; loc: $.Loc | undefined; }; export declare const SETCONTCTRMANYX: (loc?: $.Loc) => SETCONTCTRMANYX; export type SETCONTCTRMANYX = { $: "SETCONTCTRMANYX"; loc: $.Loc | undefined; }; export declare const BOOLAND: (loc?: $.Loc) => BOOLAND; export type BOOLAND = { $: "BOOLAND"; loc: $.Loc | undefined; }; export declare const BOOLOR: (loc?: $.Loc) => BOOLOR; export type BOOLOR = { $: "BOOLOR"; loc: $.Loc | undefined; }; export declare const COMPOSBOTH: (loc?: $.Loc) => COMPOSBOTH; export type COMPOSBOTH = { $: "COMPOSBOTH"; loc: $.Loc | undefined; }; export declare const ATEXIT: (loc?: $.Loc) => ATEXIT; export type ATEXIT = { $: "ATEXIT"; loc: $.Loc | undefined; }; export declare const ATEXITALT: (loc?: $.Loc) => ATEXITALT; export type ATEXITALT = { $: "ATEXITALT"; loc: $.Loc | undefined; }; export declare const SETEXITALT: (loc?: $.Loc) => SETEXITALT; export type SETEXITALT = { $: "SETEXITALT"; loc: $.Loc | undefined; }; export declare const THENRET: (loc?: $.Loc) => THENRET; export type THENRET = { $: "THENRET"; loc: $.Loc | undefined; }; export declare const THENRETALT: (loc?: $.Loc) => THENRETALT; export type THENRETALT = { $: "THENRETALT"; loc: $.Loc | undefined; }; export declare const INVERT: (loc?: $.Loc) => INVERT; export type INVERT = { $: "INVERT"; loc: $.Loc | undefined; }; export declare const BOOLEVAL: (loc?: $.Loc) => BOOLEVAL; export type BOOLEVAL = { $: "BOOLEVAL"; loc: $.Loc | undefined; }; export declare const SAMEALT: (loc?: $.Loc) => SAMEALT; export type SAMEALT = { $: "SAMEALT"; loc: $.Loc | undefined; }; export declare const SAMEALTSAVE: (loc?: $.Loc) => SAMEALTSAVE; export type SAMEALTSAVE = { $: "SAMEALTSAVE"; loc: $.Loc | undefined; }; export declare const TRY: (loc?: $.Loc) => TRY; export type TRY = { $: "TRY"; loc: $.Loc | undefined; }; export declare const STDICT: (loc?: $.Loc) => STDICT; export type STDICT = { $: "STDICT"; loc: $.Loc | undefined; }; export declare const SKIPDICT: (loc?: $.Loc) => SKIPDICT; export type SKIPDICT = { $: "SKIPDICT"; loc: $.Loc | undefined; }; export declare const LDDICTS: (loc?: $.Loc) => LDDICTS; export type LDDICTS = { $: "LDDICTS"; loc: $.Loc | undefined; }; export declare const PLDDICTS: (loc?: $.Loc) => PLDDICTS; export type PLDDICTS = { $: "PLDDICTS"; loc: $.Loc | undefined; }; export declare const LDDICT: (loc?: $.Loc) => LDDICT; export type LDDICT = { $: "LDDICT"; loc: $.Loc | undefined; }; export declare const PLDDICT: (loc?: $.Loc) => PLDDICT; export type PLDDICT = { $: "PLDDICT"; loc: $.Loc | undefined; }; export declare const LDDICTQ: (loc?: $.Loc) => LDDICTQ; export type LDDICTQ = { $: "LDDICTQ"; loc: $.Loc | undefined; }; export declare const PLDDICTQ: (loc?: $.Loc) => PLDDICTQ; export type PLDDICTQ = { $: "PLDDICTQ"; loc: $.Loc | undefined; }; export declare const PFXDICTSET: (loc?: $.Loc) => PFXDICTSET; export type PFXDICTSET = { $: "PFXDICTSET"; loc: $.Loc | undefined; }; export declare const PFXDICTREPLACE: (loc?: $.Loc) => PFXDICTREPLACE; export type PFXDICTREPLACE = { $: "PFXDICTREPLACE"; loc: $.Loc | undefined; }; export declare const PFXDICTADD: (loc?: $.Loc) => PFXDICTADD; export type PFXDICTADD = { $: "PFXDICTADD"; loc: $.Loc | undefined; }; export declare const PFXDICTDEL: (loc?: $.Loc) => PFXDICTDEL; export type PFXDICTDEL = { $: "PFXDICTDEL"; loc: $.Loc | undefined; }; export declare const PFXDICTGETQ: (loc?: $.Loc) => PFXDICTGETQ; export type PFXDICTGETQ = { $: "PFXDICTGETQ"; loc: $.Loc | undefined; }; export declare const PFXDICTGET: (loc?: $.Loc) => PFXDICTGET; export type PFXDICTGET = { $: "PFXDICTGET"; loc: $.Loc | undefined; }; export declare const PFXDICTGETJMP: (loc?: $.Loc) => PFXDICTGETJMP; export type PFXDICTGETJMP = { $: "PFXDICTGETJMP"; loc: $.Loc | undefined; }; export declare const PFXDICTGETEXEC: (loc?: $.Loc) => PFXDICTGETEXEC; export type PFXDICTGETEXEC = { $: "PFXDICTGETEXEC"; loc: $.Loc | undefined; }; export declare const NOP: (loc?: $.Loc) => NOP; export type NOP = { $: "NOP"; loc: $.Loc | undefined; }; export declare const SWAP: (loc?: $.Loc) => SWAP; export type SWAP = { $: "SWAP"; loc: $.Loc | undefined; }; export declare const DUP: (loc?: $.Loc) => DUP; export type DUP = { $: "DUP"; loc: $.Loc | undefined; }; export declare const OVER: (loc?: $.Loc) => OVER; export type OVER = { $: "OVER"; loc: $.Loc | undefined; }; export declare const DROP: (loc?: $.Loc) => DROP; export type DROP = { $: "DROP"; loc: $.Loc | undefined; }; export declare const NIP: (loc?: $.Loc) => NIP; export type NIP = { $: "NIP"; loc: $.Loc | undefined; }; export declare const ROT: (loc?: $.Loc) => ROT; export type ROT = { $: "ROT"; loc: $.Loc | undefined; }; export declare const ROTREV: (loc?: $.Loc) => ROTREV; export type ROTREV = { $: "ROTREV"; loc: $.Loc | undefined; }; export declare const PICK: (loc?: $.Loc) => PICK; export type PICK = { $: "PICK"; loc: $.Loc | undefined; }; export declare const ROLL: (loc?: $.Loc) => ROLL; export type ROLL = { $: "ROLL"; loc: $.Loc | undefined; }; export declare const ROLLREV: (loc?: $.Loc) => ROLLREV; export type ROLLREV = { $: "ROLLREV"; loc: $.Loc | undefined; }; export declare const BLKSWX: (loc?: $.Loc) => BLKSWX; export type BLKSWX = { $: "BLKSWX"; loc: $.Loc | undefined; }; export declare const REVX: (loc?: $.Loc) => REVX; export type REVX = { $: "REVX"; loc: $.Loc | undefined; }; export declare const DROPX: (loc?: $.Loc) => DROPX; export type DROPX = { $: "DROPX"; loc: $.Loc | undefined; }; export declare const TUCK: (loc?: $.Loc) => TUCK; export type TUCK = { $: "TUCK"; loc: $.Loc | undefined; }; export declare const XCHGX: (loc?: $.Loc) => XCHGX; export type XCHGX = { $: "XCHGX"; loc: $.Loc | undefined; }; export declare const DEPTH: (loc?: $.Loc) => DEPTH; export type DEPTH = { $: "DEPTH"; loc: $.Loc | undefined; }; export declare const CHKDEPTH: (loc?: $.Loc) => CHKDEPTH; export type CHKDEPTH = { $: "CHKDEPTH"; loc: $.Loc | undefined; }; export declare const ONLYTOPX: (loc?: $.Loc) => ONLYTOPX; export type ONLYTOPX = { $: "ONLYTOPX"; loc: $.Loc | undefined; }; export declare const ONLYX: (loc?: $.Loc) => ONLYX; export type ONLYX = { $: "ONLYX"; loc: $.Loc | undefined; }; export declare const ACCEPT: (loc?: $.Loc) => ACCEPT; export type ACCEPT = { $: "ACCEPT"; loc: $.Loc | undefined; }; export declare const SETGASLIMIT: (loc?: $.Loc) => SETGASLIMIT; export type SETGASLIMIT = { $: "SETGASLIMIT"; loc: $.Loc | undefined; }; export declare const GASCONSUMED: (loc?: $.Loc) => GASCONSUMED; export type GASCONSUMED = { $: "GASCONSUMED"; loc: $.Loc | undefined; }; export declare const COMMIT: (loc?: $.Loc) => COMMIT; export type COMMIT = { $: "COMMIT"; loc: $.Loc | undefined; }; export declare const NOW: (loc?: $.Loc) => NOW; export type NOW = { $: "NOW"; loc: $.Loc | undefined; }; export declare const BLOCKLT: (loc?: $.Loc) => BLOCKLT; export type BLOCKLT = { $: "BLOCKLT"; loc: $.Loc | undefined; }; export declare const LTIME: (loc?: $.Loc) => LTIME; export type LTIME = { $: "LTIME"; loc: $.Loc | undefined; }; export declare const RANDSEED: (loc?: $.Loc) => RANDSEED; export type RANDSEED = { $: "RANDSEED"; loc: $.Loc | undefined; }; export declare const BALANCE: (loc?: $.Loc) => BALANCE; export type BALANCE = { $: "BALANCE"; loc: $.Loc | undefined; }; export declare const MYADDR: (loc?: $.Loc) => MYADDR; export type MYADDR = { $: "MYADDR"; loc: $.Loc | undefined; }; export declare const CONFIGROOT: (loc?: $.Loc) => CONFIGROOT; export type CONFIGROOT = { $: "CONFIGROOT"; loc: $.Loc | undefined; }; export declare const MYCODE: (loc?: $.Loc) => MYCODE; export type MYCODE = { $: "MYCODE"; loc: $.Loc | undefined; }; export declare const INCOMINGVALUE: (loc?: $.Loc) => INCOMINGVALUE; export type INCOMINGVALUE = { $: "INCOMINGVALUE"; loc: $.Loc | undefined; }; export declare const STORAGEFEES: (loc?: $.Loc) => STORAGEFEES; export type STORAGEFEES = { $: "STORAGEFEES"; loc: $.Loc | undefined; }; export declare const PREVBLOCKSINFOTUPLE: (loc?: $.Loc) => PREVBLOCKSINFOTUPLE; export type PREVBLOCKSINFOTUPLE = { $: "PREVBLOCKSINFOTUPLE"; loc: $.Loc | undefined; }; export declare const UNPACKEDCONFIGTUPLE: (loc?: $.Loc) => UNPACKEDCONFIGTUPLE; export type UNPACKEDCONFIGTUPLE = { $: "UNPACKEDCONFIGTUPLE"; loc: $.Loc | undefined; }; export declare const DUEPAYMENT: (loc?: $.Loc) => DUEPAYMENT; export type DUEPAYMENT = { $: "DUEPAYMENT"; loc: $.Loc | undefined; }; export declare const CONFIGDICT: (loc?: $.Loc) => CONFIGDICT; export type CONFIGDICT = { $: "CONFIGDICT"; loc: $.Loc | undefined; }; export declare const CONFIGPARAM: (loc?: $.Loc) => CONFIGPARAM; export type CONFIGPARAM = { $: "CONFIGPARAM"; loc: $.Loc | undefined; }; export declare const CONFIGOPTPARAM: (loc?: $.Loc) => CONFIGOPTPARAM; export type CONFIGOPTPARAM = { $: "CONFIGOPTPARAM"; loc: $.Loc | undefined; }; export declare const PREVMCBLOCKS: (loc?: $.Loc) => PREVMCBLOCKS; export type PREVMCBLOCKS = { $: "PREVMCBLOCKS"; loc: $.Loc | undefined; }; export declare const PREVKEYBLOCK: (loc?: $.Loc) => PREVKEYBLOCK; export type PREVKEYBLOCK = { $: "PREVKEYBLOCK"; loc: $.Loc | undefined; }; export declare const PREVMCBLOCKS_100: (loc?: $.Loc) => PREVMCBLOCKS_100; export type PREVMCBLOCKS_100 = { $: "PREVMCBLOCKS_100"; loc: $.Loc | undefined; }; export declare const GLOBALID: (loc?: $.Loc) => GLOBALID; export type GLOBALID = { $: "GLOBALID"; loc: $.Loc | undefined; }; export declare const GETGASFEE: (loc?: $.Loc) => GETGASFEE; export type GETGASFEE = { $: "GETGASFEE"; loc: $.Loc | undefined; }; export declare const GETSTORAGEFEE: (loc?: $.Loc) => GETSTORAGEFEE; export type GETSTORAGEFEE = { $: "GETSTORAGEFEE"; loc: $.Loc | undefined; }; export declare const GETFORWARDFEE: (loc?: $.Loc) => GETFORWARDFEE; export type GETFORWARDFEE = { $: "GETFORWARDFEE"; loc: $.Loc | undefined; }; export declare const GETPRECOMPILEDGAS: (loc?: $.Loc) => GETPRECOMPILEDGAS; export type GETPRECOMPILEDGAS = { $: "GETPRECOMPILEDGAS"; loc: $.Loc | undefined; }; export declare const GETORIGINALFWDFEE: (loc?: $.Loc) => GETORIGINALFWDFEE; export type GETORIGINALFWDFEE = { $: "GETORIGINALFWDFEE"; loc: $.Loc | undefined; }; export declare const GETGASFEESIMPLE: (loc?: $.Loc) => GETGASFEESIMPLE; export type GETGASFEESIMPLE = { $: "GETGASFEESIMPLE"; loc: $.Loc | undefined; }; export declare const GETFORWARDFEESIMPLE: (loc?: $.Loc) => GETFORWARDFEESIMPLE; export type GETFORWARDFEESIMPLE = { $: "GETFORWARDFEESIMPLE"; loc: $.Loc | undefined; }; export declare const GETGLOBVAR: (loc?: $.Loc) => GETGLOBVAR; export type GETGLOBVAR = { $: "GETGLOBVAR"; loc: $.Loc | undefined; }; export declare const SETGLOBVAR: (loc?: $.Loc) => SETGLOBVAR; export type SETGLOBVAR = { $: "SETGLOBVAR"; loc: $.Loc | undefined; }; export declare const RANDU256: (loc?: $.Loc) => RANDU256; export type RANDU256 = { $: "RANDU256"; loc: $.Loc | undefined; }; export declare const RAND: (loc?: $.Loc) => RAND; export type RAND = { $: "RAND"; loc: $.Loc | undefined; }; export declare const SETRAND: (loc?: $.Loc) => SETRAND; export type SETRAND = { $: "SETRAND"; loc: $.Loc | undefined; }; export declare const ADDRAND: (loc?: $.Loc) => ADDRAND; export type ADDRAND = { $: "ADDRAND"; loc: $.Loc | undefined; }; export declare const HASHCU: (loc?: $.Loc) => HASHCU; export type HASHCU = { $: "HASHCU"; loc: $.Loc | undefined; }; export declare const HASHSU: (loc?: $.Loc) => HASHSU; export type HASHSU = { $: "HASHSU"; loc: $.Loc | undefined; }; export declare const SHA256U: (loc?: $.Loc) => SHA256U; export type SHA256U = { $: "SHA256U"; loc: $.Loc | undefined; }; export declare const CHKSIGNU: (loc?: $.Loc) => CHKSIGNU; export type CHKSIGNU = { $: "CHKSIGNU"; loc: $.Loc | undefined; }; export declare const CHKSIGNS: (loc?: $.Loc) => CHKSIGNS; export type CHKSIGNS = { $: "CHKSIGNS"; loc: $.Loc | undefined; }; export declare const ECRECOVER: (loc?: $.Loc) => ECRECOVER; export type ECRECOVER = { $: "ECRECOVER"; loc: $.Loc | undefined; }; export declare const SECP256K1_XONLY_PUBKEY_TWEAK_ADD: (loc?: $.Loc) => SECP256K1_XONLY_PUBKEY_TWEAK_ADD; export type SECP256K1_XONLY_PUBKEY_TWEAK_ADD = { $: "SECP256K1_XONLY_PUBKEY_TWEAK_ADD"; loc: $.Loc | undefined; }; export declare const P256_CHKSIGNU: (loc?: $.Loc) => P256_CHKSIGNU; export type P256_CHKSIGNU = { $: "P256_CHKSIGNU"; loc: $.Loc | undefined; }; export declare const P256_CHKSIGNS: (loc?: $.Loc) => P256_CHKSIGNS; export type P256_CHKSIGNS = { $: "P256_CHKSIGNS"; loc: $.Loc | undefined; }; export declare const RIST255_FROMHASH: (loc?: $.Loc) => RIST255_FROMHASH; export type RIST255_FROMHASH = { $: "RIST255_FROMHASH"; loc: $.Loc | undefined; }; export declare const RIST255_VALIDATE: (loc?: $.Loc) => RIST255_VALIDATE; export type RIST255_VALIDATE = { $: "RIST255_VALIDATE"; loc: $.Loc | undefined; }; export declare const RIST255_ADD: (loc?: $.Loc) => RIST255_ADD; export type RIST255_ADD = { $: "RIST255_ADD"; loc: $.Loc | undefined; }; export declare const RIST255_SUB: (loc?: $.Loc) => RIST255_SUB; export type RIST255_SUB = { $: "RIST255_SUB"; loc: $.Loc | undefined; }; export declare const RIST255_MUL: (loc?: $.Loc) => RIST255_MUL; export type RIST255_MUL = { $: "RIST255_MUL"; loc: $.Loc | undefined; }; export declare const RIST255_MULBASE: (loc?: $.Loc) => RIST255_MULBASE; export type RIST255_MULBASE = { $: "RIST255_MULBASE"; loc: $.Loc | undefined; }; export declare const RIST255_PUSHL: (loc?: $.Loc) => RIST255_PUSHL; export type RIST255_PUSHL = { $: "RIST255_PUSHL"; loc: $.Loc | undefined; }; export declare const RIST255_QVALIDATE: (loc?: $.Loc) => RIST255_QVALIDATE; export type RIST255_QVALIDATE = { $: "RIST255_QVALIDATE"; loc: $.Loc | undefined; }; export declare const RIST255_QADD: (loc?: $.Loc) => RIST255_QADD; export type RIST255_QADD = { $: "RIST255_QADD"; loc: $.Loc | undefined; }; export declare const RIST255_QSUB: (loc?: $.Loc) => RIST255_QSUB; export type RIST255_QSUB = { $: "RIST255_QSUB"; loc: $.Loc | undefined; }; export declare const RIST255_QMUL: (loc?: $.Loc) => RIST255_QMUL; export type RIST255_QMUL = { $: "RIST255_QMUL"; loc: $.Loc | undefined; }; export declare const RIST255_QMULBASE: (loc?: $.Loc) => RIST255_QMULBASE; export type RIST255_QMULBASE = { $: "RIST255_QMULBASE"; loc: $.Loc | undefined; }; export declare const BLS_VERIFY: (loc?: $.Loc) => BLS_VERIFY; export type BLS_VERIFY = { $: "BLS_VERIFY"; loc: $.Loc | undefined; }; export declare const BLS_AGGREGATE: (loc?: $.Loc) => BLS_AGGREGATE; export type BLS_AGGREGATE = { $: "BLS_AGGREGATE"; loc: $.Loc | undefined; }; export declare const BLS_FASTAGGREGATEVERIFY: (loc?: $.Loc) => BLS_FASTAGGREGATEVERIFY; export type BLS_FASTAGGREGATEVERIFY = { $: "BLS_FASTAGGREGATEVERIFY"; loc: $.Loc | undefined; }; export declare const BLS_AGGREGATEVERIFY: (loc?: $.Loc) => BLS_AGGREGATEVERIFY; export type BLS_AGGREGATEVERIFY = { $: "BLS_AGGREGATEVERIFY"; loc: $.Loc | undefined; }; export declare const BLS_G1_ADD: (loc?: $.Loc) => BLS_G1_ADD; export type BLS_G1_ADD = { $: "BLS_G1_ADD"; loc: $.Loc | undefined; }; export declare const BLS_G1_SUB: (loc?: $.Loc) => BLS_G1_SUB; export type BLS_G1_SUB = { $: "BLS_G1_SUB"; loc: $.Loc | undefined; }; export declare const BLS_G1_NEG: (loc?: $.Loc) => BLS_G1_NEG; export type BLS_G1_NEG = { $: "BLS_G1_NEG"; loc: $.Loc | undefined; }; export declare const BLS_G1_MUL: (loc?: $.Loc) => BLS_G1_MUL; export type BLS_G1_MUL = { $: "BLS_G1_MUL"; loc: $.Loc | undefined; }; export declare const BLS_G1_MULTIEXP: (loc?: $.Loc) => BLS_G1_MULTIEXP; export type BLS_G1_MULTIEXP = { $: "BLS_G1_MULTIEXP"; loc: $.Loc | undefined; }; export declare const BLS_G1_ZERO: (loc?: $.Loc) => BLS_G1_ZERO; export type BLS_G1_ZERO = { $: "BLS_G1_ZERO"; loc: $.Loc | undefined; }; export declare const BLS_MAP_TO_G1: (loc?: $.Loc) => BLS_MAP_TO_G1; export type BLS_MAP_TO_G1 = { $: "BLS_MAP_TO_G1"; loc: $.Loc | undefined; }; export declare const BLS_G1_INGROUP: (loc?: $.Loc) => BLS_G1_INGROUP; export type BLS_G1_INGROUP = { $: "BLS_G1_INGROUP"; loc: $.Loc | undefined; }; export declare const BLS_G1_ISZERO: (loc?: $.Loc) => BLS_G1_ISZERO; export type BLS_G1_ISZERO = { $: "BLS_G1_ISZERO"; loc: $.Loc | undefined; }; export declare const BLS_G2_ADD: (loc?: $.Loc) => BLS_G2_ADD; export type BLS_G2_ADD = { $: "BLS_G2_ADD"; loc: $.Loc | undefined; }; export declare const BLS_G2_SUB: (loc?: $.Loc) => BLS_G2_SUB; export type BLS_G2_SUB = { $: "BLS_G2_SUB"; loc: $.Loc | undefined; }; export declare const BLS_G2_NEG: (loc?: $.Loc) => BLS_G2_NEG; export type BLS_G2_NEG = { $: "BLS_G2_NEG"; loc: $.Loc | undefined; }; export declare const BLS_G2_MUL: (loc?: $.Loc) => BLS_G2_MUL; export type BLS_G2_MUL = { $: "BLS_G2_MUL"; loc: $.Loc | undefined; }; export declare const BLS_G2_MULTIEXP: (loc?: $.Loc) => BLS_G2_MULTIEXP; export type BLS_G2_MULTIEXP = { $: "BLS_G2_MULTIEXP"; loc: $.Loc | undefined; }; export declare const BLS_G2_ZERO: (loc?: $.Loc) => BLS_G2_ZERO; export type BLS_G2_ZERO = { $: "BLS_G2_ZERO"; loc: $.Loc | undefined; }; export declare const BLS_MAP_TO_G2: (loc?: $.Loc) => BLS_MAP_TO_G2; export type BLS_MAP_TO_G2 = { $: "BLS_MAP_TO_G2"; loc: $.Loc | undefined; }; export declare const BLS_G2_INGROUP: (loc?: $.Loc) => BLS_G2_INGROUP; export type BLS_G2_INGROUP = { $: "BLS_G2_INGROUP"; loc: $.Loc | undefined; }; export declare const BLS_G2_ISZERO: (loc?: $.Loc) => BLS_G2_ISZERO; export type BLS_G2_ISZERO = { $: "BLS_G2_ISZERO"; loc: $.Loc | undefined; }; export declare const BLS_PAIRING: (loc?: $.Loc) => BLS_PAIRING; export type BLS_PAIRING = { $: "BLS_PAIRING"; loc: $.Loc | undefined; }; export declare const BLS_PUSHR: (loc?: $.Loc) => BLS_PUSHR; export type BLS_PUSHR = { $: "BLS_PUSHR"; loc: $.Loc | undefined; }; export declare const CDATASIZEQ: (loc?: $.Loc) => CDATASIZEQ; export type CDATASIZEQ = { $: "CDATASIZEQ"; loc: $.Loc | undefined; }; export declare const CDATASIZE: (loc?: $.Loc) => CDATASIZE; export type CDATASIZE = { $: "CDATASIZE"; loc: $.Loc | undefined; }; export declare const SDATASIZEQ: (loc?: $.Loc) => SDATASIZEQ; export type SDATASIZEQ = { $: "SDATASIZEQ"; loc: $.Loc | undefined; }; export declare const SDATASIZE: (loc?: $.Loc) => SDATASIZE; export type SDATASIZE = { $: "SDATASIZE"; loc: $.Loc | undefined; }; export declare const LDGRAMS: (loc?: $.Loc) => LDGRAMS; export type LDGRAMS = { $: "LDGRAMS"; loc: $.Loc | undefined; }; export declare const LDVARINT16: (loc?: $.Loc) => LDVARINT16; export type LDVARINT16 = { $: "LDVARINT16"; loc: $.Loc | undefined; }; export declare const STGRAMS: (loc?: $.Loc) => STGRAMS; export type STGRAMS = { $: "STGRAMS"; loc: $.Loc | undefined; }; export declare const STVARINT16: (loc?: $.Loc) => STVARINT16; export type STVARINT16 = { $: "STVARINT16"; loc: $.Loc | undefined; }; export declare const LDVARUINT32: (loc?: $.Loc) => LDVARUINT32; export type LDVARUINT32 = { $: "LDVARUINT32"; loc: $.Loc | undefined; }; export declare const LDVARINT32: (loc?: $.Loc) => LDVARINT32; export type LDVARINT32 = { $: "LDVARINT32"; loc: $.Loc | undefined; }; export declare const STVARUINT32: (loc?: $.Loc) => STVARUINT32; export type STVARUINT32 = { $: "STVARUINT32"; loc: $.Loc | undefined; }; export declare const STVARINT32: (loc?: $.Loc) => STVARINT32; export type STVARINT32 = { $: "STVARINT32"; loc: $.Loc | undefined; }; export declare const LDMSGADDR: (loc?: $.Loc) => LDMSGADDR; export type LDMSGADDR = { $: "LDMSGADDR"; loc: $.Loc | undefined; }; export declare const LDMSGADDRQ: (loc?: $.Loc) => LDMSGADDRQ; export type LDMSGADDRQ = { $: "LDMSGADDRQ"; loc: $.Loc | undefined; }; export declare const PARSEMSGADDR: (loc?: $.Loc) => PARSEMSGADDR; export type PARSEMSGADDR = { $: "PARSEMSGADDR"; loc: $.Loc | undefined; }; export declare const PARSEMSGADDRQ: (loc?: $.Loc) => PARSEMSGADDRQ; export type PARSEMSGADDRQ = { $: "PARSEMSGADDRQ"; loc: $.Loc | undefined; }; export declare const REWRITESTDADDR: (loc?: $.Loc) => REWRITESTDADDR; export type REWRITESTDADDR = { $: "REWRITESTDADDR"; loc: $.Loc | undefined; }; export declare const REWRITESTDADDRQ: (loc?: $.Loc) => REWRITESTDADDRQ; export type REWRITESTDADDRQ = { $: "REWRITESTDADDRQ"; loc: $.Loc | undefined; }; export declare const REWRITEVARADDR: (loc?: $.Loc) => REWRITEVARADDR; export type REWRITEVARADDR = { $: "REWRITEVARADDR"; loc: $.Loc | undefined; }; export declare const REWRITEVARADDRQ: (loc?: $.Loc) => REWRITEVARADDRQ; export type REWRITEVARADDRQ = { $: "REWRITEVARADDRQ"; loc: $.Loc | undefined; }; export declare const SENDRAWMSG: (loc?: $.Loc) => SENDRAWMSG; export type SENDRAWMSG = { $: "SENDRAWMSG"; loc: $.Loc | undefined; }; export declare const RAWRESERVE: (loc?: $.Loc) => RAWRESERVE; export type RAWRESERVE = { $: "RAWRESERVE"; loc: $.Loc | undefined; }; export declare const RAWRESERVEX: (loc?: $.Loc) => RAWRESERVEX; export type RAWRESERVEX = { $: "RAWRESERVEX"; loc: $.Loc | undefined; }; export declare const SETCODE: (loc?: $.Loc) => SETCODE; export type SETCODE = { $: "SETCODE"; loc: $.Loc | undefined; }; export declare const SETLIBCODE: (loc?: $.Loc) => SETLIBCODE; export type SETLIBCODE = { $: "SETLIBCODE"; loc: $.Loc | undefined; }; export declare const CHANGELIB: (loc?: $.Loc) => CHANGELIB; export type CHANGELIB = { $: "CHANGELIB"; loc: $.Loc | undefined; }; export declare const SENDMSG: (loc?: $.Loc) => SENDMSG; export type SENDMSG = { $: "SENDMSG"; loc: $.Loc | undefined; }; export declare const PUSHNULL: (loc?: $.Loc) => PUSHNULL; export type PUSHNULL = { $: "PUSHNULL"; loc: $.Loc | undefined; }; export declare const ISNULL: (loc?: $.Loc) => ISNULL; export type ISNULL = { $: "ISNULL"; loc: $.Loc | undefined; }; export declare const TUPLEVAR: (loc?: $.Loc) => TUPLEVAR; export type TUPLEVAR = { $: "TUPLEVAR"; loc: $.Loc | undefined; }; export declare const INDEXVAR: (loc?: $.Loc) => INDEXVAR; export type INDEXVAR = { $: "INDEXVAR"; loc: $.Loc | undefined; }; export declare const UNTUPLEVAR: (loc?: $.Loc) => UNTUPLEVAR; export type UNTUPLEVAR = { $: "UNTUPLEVAR"; loc: $.Loc | undefined; }; export declare const UNPACKFIRSTVAR: (loc?: $.Loc) => UNPACKFIRSTVAR; export type UNPACKFIRSTVAR = { $: "UNPACKFIRSTVAR"; loc: $.Loc | undefined; }; export declare const EXPLODEVAR: (loc?: $.Loc) => EXPLODEVAR; export type EXPLODEVAR = { $: "EXPLODEVAR"; loc: $.Loc | undefined; }; export declare const SETINDEXVAR: (loc?: $.Loc) => SETINDEXVAR; export type SETINDEXVAR = { $: "SETINDEXVAR"; loc: $.Loc | undefined; }; export declare const INDEXVARQ: (loc?: $.Loc) => INDEXVARQ; export type INDEXVARQ = { $: "INDEXVARQ"; loc: $.Loc | undefined; }; export declare const SETINDEXVARQ: (loc?: $.Loc) => SETINDEXVARQ; export type SETINDEXVARQ = { $: "SETINDEXVARQ"; loc: $.Loc | undefined; }; export declare const TLEN: (loc?: $.Loc) => TLEN; export type TLEN = { $: "TLEN"; loc: $.Loc | undefined; }; export declare const QTLEN: (loc?: $.Loc) => QTLEN; export type QTLEN = { $: "QTLEN"; loc: $.Loc | undefined; }; export declare const ISTUPLE: (loc?: $.Loc) => ISTUPLE; export type ISTUPLE = { $: "ISTUPLE"; loc: $.Loc | undefined; }; export declare const LAST: (loc?: $.Loc) => LAST; export type LAST = { $: "LAST"; loc: $.Loc | undefined; }; export declare const TPUSH: (loc?: $.Loc) => TPUSH; export type TPUSH = { $: "TPUSH"; loc: $.Loc | undefined; }; export declare const TPOP: (loc?: $.Loc) => TPOP; export type TPOP = { $: "TPOP"; loc: $.Loc | undefined; }; export declare const NULLSWAPIF: (loc?: $.Loc) => NULLSWAPIF; export type NULLSWAPIF = { $: "NULLSWAPIF"; loc: $.Loc | undefined; }; export declare const NULLSWAPIFNOT: (loc?: $.Loc) => NULLSWAPIFNOT; export type NULLSWAPIFNOT = { $: "NULLSWAPIFNOT"; loc: $.Loc | undefined; }; export declare const NULLROTRIF: (loc?: $.Loc) => NULLROTRIF; export type NULLROTRIF = { $: "NULLROTRIF"; loc: $.Loc | undefined; }; export declare const NULLROTRIFNOT: (loc?: $.Loc) => NULLROTRI