ETH Price: $2,588.92 (+10.39%)

Transaction Decoder

Block:
21450628 at Dec-21-2024 11:36:59 AM +UTC
Transaction Fee:
0.001190943 ETH $3.08
Gas Used:
132,327 Gas / 9 Gwei

Emitted Events:

216 WETH9.Deposit( dst=[Receiver] 0x4e537a3a1e59fcdfa225fa470976b356786888cc, wad=300000000000000000 )
217 WagmiToken.Transfer( from=0x4DD6a783394DDdBA2Ff46F77c903e48Da04f073E, to=[Sender] 0x28b3389482700d0d7ffd8d7dad2f8fc4d3dfbee3, value=45799788283449479705016 )
218 WETH9.Transfer( src=[Receiver] 0x4e537a3a1e59fcdfa225fa470976b356786888cc, dst=0x4DD6a783394DDdBA2Ff46F77c903e48Da04f073E, wad=300000000000000000 )
219 0x4dd6a783394dddba2ff46f77c903e48da04f073e.0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67( 0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67, 0x0000000000000000000000004e537a3a1e59fcdfa225fa470976b356786888cc, 0x00000000000000000000000028b3389482700d0d7ffd8d7dad2f8fc4d3dfbee3, fffffffffffffffffffffffffffffffffffffffffffff64d3041ade180354e48, 0000000000000000000000000000000000000000000000000429d069189e0000, 000000000000000000000000000000000000000000a72e057a2e562f0535ceee, 000000000000000000000000000000000000000000000714e557f4f5ca82c2fd, fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe2d78 )

Execution Trace

ETH 0.3 0x4e537a3a1e59fcdfa225fa470976b356786888cc.3593564c( )
  • ETH 0.3 WETH9.CALL( )
  • 0x4dd6a783394dddba2ff46f77c903e48da04f073e.128acb08( )
    • WagmiToken.transfer( to=0x28B3389482700D0d7FFD8d7DaD2F8fc4D3dfbee3, amount=45799788283449479705016 ) => ( True )
    • WETH9.balanceOf( 0x4DD6a783394DDdBA2Ff46F77c903e48Da04f073E ) => ( 47492575030440972217 )
    • 0x4e537a3a1e59fcdfa225fa470976b356786888cc.fa461e33( )
      • WETH9.transfer( dst=0x4DD6a783394DDdBA2Ff46F77c903e48Da04f073E, wad=300000000000000000 ) => ( True )
      • WETH9.balanceOf( 0x4DD6a783394DDdBA2Ff46F77c903e48Da04f073E ) => ( 47792575030440972217 )
        File 1 of 2: WETH9
        // Copyright (C) 2015, 2016, 2017 Dapphub
        
        // This program is free software: you can redistribute it and/or modify
        // it under the terms of the GNU General Public License as published by
        // the Free Software Foundation, either version 3 of the License, or
        // (at your option) any later version.
        
        // This program is distributed in the hope that it will be useful,
        // but WITHOUT ANY WARRANTY; without even the implied warranty of
        // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        // GNU General Public License for more details.
        
        // You should have received a copy of the GNU General Public License
        // along with this program.  If not, see <http://www.gnu.org/licenses/>.
        
        pragma solidity ^0.4.18;
        
        contract WETH9 {
            string public name     = "Wrapped Ether";
            string public symbol   = "WETH";
            uint8  public decimals = 18;
        
            event  Approval(address indexed src, address indexed guy, uint wad);
            event  Transfer(address indexed src, address indexed dst, uint wad);
            event  Deposit(address indexed dst, uint wad);
            event  Withdrawal(address indexed src, uint wad);
        
            mapping (address => uint)                       public  balanceOf;
            mapping (address => mapping (address => uint))  public  allowance;
        
            function() public payable {
                deposit();
            }
            function deposit() public payable {
                balanceOf[msg.sender] += msg.value;
                Deposit(msg.sender, msg.value);
            }
            function withdraw(uint wad) public {
                require(balanceOf[msg.sender] >= wad);
                balanceOf[msg.sender] -= wad;
                msg.sender.transfer(wad);
                Withdrawal(msg.sender, wad);
            }
        
            function totalSupply() public view returns (uint) {
                return this.balance;
            }
        
            function approve(address guy, uint wad) public returns (bool) {
                allowance[msg.sender][guy] = wad;
                Approval(msg.sender, guy, wad);
                return true;
            }
        
            function transfer(address dst, uint wad) public returns (bool) {
                return transferFrom(msg.sender, dst, wad);
            }
        
            function transferFrom(address src, address dst, uint wad)
                public
                returns (bool)
            {
                require(balanceOf[src] >= wad);
        
                if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) {
                    require(allowance[src][msg.sender] >= wad);
                    allowance[src][msg.sender] -= wad;
                }
        
                balanceOf[src] -= wad;
                balanceOf[dst] += wad;
        
                Transfer(src, dst, wad);
        
                return true;
            }
        }
        
        
        /*
                            GNU GENERAL PUBLIC LICENSE
                               Version 3, 29 June 2007
        
         Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
         Everyone is permitted to copy and distribute verbatim copies
         of this license document, but changing it is not allowed.
        
                                    Preamble
        
          The GNU General Public License is a free, copyleft license for
        software and other kinds of works.
        
          The licenses for most software and other practical works are designed
        to take away your freedom to share and change the works.  By contrast,
        the GNU General Public License is intended to guarantee your freedom to
        share and change all versions of a program--to make sure it remains free
        software for all its users.  We, the Free Software Foundation, use the
        GNU General Public License for most of our software; it applies also to
        any other work released this way by its authors.  You can apply it to
        your programs, too.
        
          When we speak of free software, we are referring to freedom, not
        price.  Our General Public Licenses are designed to make sure that you
        have the freedom to distribute copies of free software (and charge for
        them if you wish), that you receive source code or can get it if you
        want it, that you can change the software or use pieces of it in new
        free programs, and that you know you can do these things.
        
          To protect your rights, we need to prevent others from denying you
        these rights or asking you to surrender the rights.  Therefore, you have
        certain responsibilities if you distribute copies of the software, or if
        you modify it: responsibilities to respect the freedom of others.
        
          For example, if you distribute copies of such a program, whether
        gratis or for a fee, you must pass on to the recipients the same
        freedoms that you received.  You must make sure that they, too, receive
        or can get the source code.  And you must show them these terms so they
        know their rights.
        
          Developers that use the GNU GPL protect your rights with two steps:
        (1) assert copyright on the software, and (2) offer you this License
        giving you legal permission to copy, distribute and/or modify it.
        
          For the developers' and authors' protection, the GPL clearly explains
        that there is no warranty for this free software.  For both users' and
        authors' sake, the GPL requires that modified versions be marked as
        changed, so that their problems will not be attributed erroneously to
        authors of previous versions.
        
          Some devices are designed to deny users access to install or run
        modified versions of the software inside them, although the manufacturer
        can do so.  This is fundamentally incompatible with the aim of
        protecting users' freedom to change the software.  The systematic
        pattern of such abuse occurs in the area of products for individuals to
        use, which is precisely where it is most unacceptable.  Therefore, we
        have designed this version of the GPL to prohibit the practice for those
        products.  If such problems arise substantially in other domains, we
        stand ready to extend this provision to those domains in future versions
        of the GPL, as needed to protect the freedom of users.
        
          Finally, every program is threatened constantly by software patents.
        States should not allow patents to restrict development and use of
        software on general-purpose computers, but in those that do, we wish to
        avoid the special danger that patents applied to a free program could
        make it effectively proprietary.  To prevent this, the GPL assures that
        patents cannot be used to render the program non-free.
        
          The precise terms and conditions for copying, distribution and
        modification follow.
        
                               TERMS AND CONDITIONS
        
          0. Definitions.
        
          "This License" refers to version 3 of the GNU General Public License.
        
          "Copyright" also means copyright-like laws that apply to other kinds of
        works, such as semiconductor masks.
        
          "The Program" refers to any copyrightable work licensed under this
        License.  Each licensee is addressed as "you".  "Licensees" and
        "recipients" may be individuals or organizations.
        
          To "modify" a work means to copy from or adapt all or part of the work
        in a fashion requiring copyright permission, other than the making of an
        exact copy.  The resulting work is called a "modified version" of the
        earlier work or a work "based on" the earlier work.
        
          A "covered work" means either the unmodified Program or a work based
        on the Program.
        
          To "propagate" a work means to do anything with it that, without
        permission, would make you directly or secondarily liable for
        infringement under applicable copyright law, except executing it on a
        computer or modifying a private copy.  Propagation includes copying,
        distribution (with or without modification), making available to the
        public, and in some countries other activities as well.
        
          To "convey" a work means any kind of propagation that enables other
        parties to make or receive copies.  Mere interaction with a user through
        a computer network, with no transfer of a copy, is not conveying.
        
          An interactive user interface displays "Appropriate Legal Notices"
        to the extent that it includes a convenient and prominently visible
        feature that (1) displays an appropriate copyright notice, and (2)
        tells the user that there is no warranty for the work (except to the
        extent that warranties are provided), that licensees may convey the
        work under this License, and how to view a copy of this License.  If
        the interface presents a list of user commands or options, such as a
        menu, a prominent item in the list meets this criterion.
        
          1. Source Code.
        
          The "source code" for a work means the preferred form of the work
        for making modifications to it.  "Object code" means any non-source
        form of a work.
        
          A "Standard Interface" means an interface that either is an official
        standard defined by a recognized standards body, or, in the case of
        interfaces specified for a particular programming language, one that
        is widely used among developers working in that language.
        
          The "System Libraries" of an executable work include anything, other
        than the work as a whole, that (a) is included in the normal form of
        packaging a Major Component, but which is not part of that Major
        Component, and (b) serves only to enable use of the work with that
        Major Component, or to implement a Standard Interface for which an
        implementation is available to the public in source code form.  A
        "Major Component", in this context, means a major essential component
        (kernel, window system, and so on) of the specific operating system
        (if any) on which the executable work runs, or a compiler used to
        produce the work, or an object code interpreter used to run it.
        
          The "Corresponding Source" for a work in object code form means all
        the source code needed to generate, install, and (for an executable
        work) run the object code and to modify the work, including scripts to
        control those activities.  However, it does not include the work's
        System Libraries, or general-purpose tools or generally available free
        programs which are used unmodified in performing those activities but
        which are not part of the work.  For example, Corresponding Source
        includes interface definition files associated with source files for
        the work, and the source code for shared libraries and dynamically
        linked subprograms that the work is specifically designed to require,
        such as by intimate data communication or control flow between those
        subprograms and other parts of the work.
        
          The Corresponding Source need not include anything that users
        can regenerate automatically from other parts of the Corresponding
        Source.
        
          The Corresponding Source for a work in source code form is that
        same work.
        
          2. Basic Permissions.
        
          All rights granted under this License are granted for the term of
        copyright on the Program, and are irrevocable provided the stated
        conditions are met.  This License explicitly affirms your unlimited
        permission to run the unmodified Program.  The output from running a
        covered work is covered by this License only if the output, given its
        content, constitutes a covered work.  This License acknowledges your
        rights of fair use or other equivalent, as provided by copyright law.
        
          You may make, run and propagate covered works that you do not
        convey, without conditions so long as your license otherwise remains
        in force.  You may convey covered works to others for the sole purpose
        of having them make modifications exclusively for you, or provide you
        with facilities for running those works, provided that you comply with
        the terms of this License in conveying all material for which you do
        not control copyright.  Those thus making or running the covered works
        for you must do so exclusively on your behalf, under your direction
        and control, on terms that prohibit them from making any copies of
        your copyrighted material outside their relationship with you.
        
          Conveying under any other circumstances is permitted solely under
        the conditions stated below.  Sublicensing is not allowed; section 10
        makes it unnecessary.
        
          3. Protecting Users' Legal Rights From Anti-Circumvention Law.
        
          No covered work shall be deemed part of an effective technological
        measure under any applicable law fulfilling obligations under article
        11 of the WIPO copyright treaty adopted on 20 December 1996, or
        similar laws prohibiting or restricting circumvention of such
        measures.
        
          When you convey a covered work, you waive any legal power to forbid
        circumvention of technological measures to the extent such circumvention
        is effected by exercising rights under this License with respect to
        the covered work, and you disclaim any intention to limit operation or
        modification of the work as a means of enforcing, against the work's
        users, your or third parties' legal rights to forbid circumvention of
        technological measures.
        
          4. Conveying Verbatim Copies.
        
          You may convey verbatim copies of the Program's source code as you
        receive it, in any medium, provided that you conspicuously and
        appropriately publish on each copy an appropriate copyright notice;
        keep intact all notices stating that this License and any
        non-permissive terms added in accord with section 7 apply to the code;
        keep intact all notices of the absence of any warranty; and give all
        recipients a copy of this License along with the Program.
        
          You may charge any price or no price for each copy that you convey,
        and you may offer support or warranty protection for a fee.
        
          5. Conveying Modified Source Versions.
        
          You may convey a work based on the Program, or the modifications to
        produce it from the Program, in the form of source code under the
        terms of section 4, provided that you also meet all of these conditions:
        
            a) The work must carry prominent notices stating that you modified
            it, and giving a relevant date.
        
            b) The work must carry prominent notices stating that it is
            released under this License and any conditions added under section
            7.  This requirement modifies the requirement in section 4 to
            "keep intact all notices".
        
            c) You must license the entire work, as a whole, under this
            License to anyone who comes into possession of a copy.  This
            License will therefore apply, along with any applicable section 7
            additional terms, to the whole of the work, and all its parts,
            regardless of how they are packaged.  This License gives no
            permission to license the work in any other way, but it does not
            invalidate such permission if you have separately received it.
        
            d) If the work has interactive user interfaces, each must display
            Appropriate Legal Notices; however, if the Program has interactive
            interfaces that do not display Appropriate Legal Notices, your
            work need not make them do so.
        
          A compilation of a covered work with other separate and independent
        works, which are not by their nature extensions of the covered work,
        and which are not combined with it such as to form a larger program,
        in or on a volume of a storage or distribution medium, is called an
        "aggregate" if the compilation and its resulting copyright are not
        used to limit the access or legal rights of the compilation's users
        beyond what the individual works permit.  Inclusion of a covered work
        in an aggregate does not cause this License to apply to the other
        parts of the aggregate.
        
          6. Conveying Non-Source Forms.
        
          You may convey a covered work in object code form under the terms
        of sections 4 and 5, provided that you also convey the
        machine-readable Corresponding Source under the terms of this License,
        in one of these ways:
        
            a) Convey the object code in, or embodied in, a physical product
            (including a physical distribution medium), accompanied by the
            Corresponding Source fixed on a durable physical medium
            customarily used for software interchange.
        
            b) Convey the object code in, or embodied in, a physical product
            (including a physical distribution medium), accompanied by a
            written offer, valid for at least three years and valid for as
            long as you offer spare parts or customer support for that product
            model, to give anyone who possesses the object code either (1) a
            copy of the Corresponding Source for all the software in the
            product that is covered by this License, on a durable physical
            medium customarily used for software interchange, for a price no
            more than your reasonable cost of physically performing this
            conveying of source, or (2) access to copy the
            Corresponding Source from a network server at no charge.
        
            c) Convey individual copies of the object code with a copy of the
            written offer to provide the Corresponding Source.  This
            alternative is allowed only occasionally and noncommercially, and
            only if you received the object code with such an offer, in accord
            with subsection 6b.
        
            d) Convey the object code by offering access from a designated
            place (gratis or for a charge), and offer equivalent access to the
            Corresponding Source in the same way through the same place at no
            further charge.  You need not require recipients to copy the
            Corresponding Source along with the object code.  If the place to
            copy the object code is a network server, the Corresponding Source
            may be on a different server (operated by you or a third party)
            that supports equivalent copying facilities, provided you maintain
            clear directions next to the object code saying where to find the
            Corresponding Source.  Regardless of what server hosts the
            Corresponding Source, you remain obligated to ensure that it is
            available for as long as needed to satisfy these requirements.
        
            e) Convey the object code using peer-to-peer transmission, provided
            you inform other peers where the object code and Corresponding
            Source of the work are being offered to the general public at no
            charge under subsection 6d.
        
          A separable portion of the object code, whose source code is excluded
        from the Corresponding Source as a System Library, need not be
        included in conveying the object code work.
        
          A "User Product" is either (1) a "consumer product", which means any
        tangible personal property which is normally used for personal, family,
        or household purposes, or (2) anything designed or sold for incorporation
        into a dwelling.  In determining whether a product is a consumer product,
        doubtful cases shall be resolved in favor of coverage.  For a particular
        product received by a particular user, "normally used" refers to a
        typical or common use of that class of product, regardless of the status
        of the particular user or of the way in which the particular user
        actually uses, or expects or is expected to use, the product.  A product
        is a consumer product regardless of whether the product has substantial
        commercial, industrial or non-consumer uses, unless such uses represent
        the only significant mode of use of the product.
        
          "Installation Information" for a User Product means any methods,
        procedures, authorization keys, or other information required to install
        and execute modified versions of a covered work in that User Product from
        a modified version of its Corresponding Source.  The information must
        suffice to ensure that the continued functioning of the modified object
        code is in no case prevented or interfered with solely because
        modification has been made.
        
          If you convey an object code work under this section in, or with, or
        specifically for use in, a User Product, and the conveying occurs as
        part of a transaction in which the right of possession and use of the
        User Product is transferred to the recipient in perpetuity or for a
        fixed term (regardless of how the transaction is characterized), the
        Corresponding Source conveyed under this section must be accompanied
        by the Installation Information.  But this requirement does not apply
        if neither you nor any third party retains the ability to install
        modified object code on the User Product (for example, the work has
        been installed in ROM).
        
          The requirement to provide Installation Information does not include a
        requirement to continue to provide support service, warranty, or updates
        for a work that has been modified or installed by the recipient, or for
        the User Product in which it has been modified or installed.  Access to a
        network may be denied when the modification itself materially and
        adversely affects the operation of the network or violates the rules and
        protocols for communication across the network.
        
          Corresponding Source conveyed, and Installation Information provided,
        in accord with this section must be in a format that is publicly
        documented (and with an implementation available to the public in
        source code form), and must require no special password or key for
        unpacking, reading or copying.
        
          7. Additional Terms.
        
          "Additional permissions" are terms that supplement the terms of this
        License by making exceptions from one or more of its conditions.
        Additional permissions that are applicable to the entire Program shall
        be treated as though they were included in this License, to the extent
        that they are valid under applicable law.  If additional permissions
        apply only to part of the Program, that part may be used separately
        under those permissions, but the entire Program remains governed by
        this License without regard to the additional permissions.
        
          When you convey a copy of a covered work, you may at your option
        remove any additional permissions from that copy, or from any part of
        it.  (Additional permissions may be written to require their own
        removal in certain cases when you modify the work.)  You may place
        additional permissions on material, added by you to a covered work,
        for which you have or can give appropriate copyright permission.
        
          Notwithstanding any other provision of this License, for material you
        add to a covered work, you may (if authorized by the copyright holders of
        that material) supplement the terms of this License with terms:
        
            a) Disclaiming warranty or limiting liability differently from the
            terms of sections 15 and 16 of this License; or
        
            b) Requiring preservation of specified reasonable legal notices or
            author attributions in that material or in the Appropriate Legal
            Notices displayed by works containing it; or
        
            c) Prohibiting misrepresentation of the origin of that material, or
            requiring that modified versions of such material be marked in
            reasonable ways as different from the original version; or
        
            d) Limiting the use for publicity purposes of names of licensors or
            authors of the material; or
        
            e) Declining to grant rights under trademark law for use of some
            trade names, trademarks, or service marks; or
        
            f) Requiring indemnification of licensors and authors of that
            material by anyone who conveys the material (or modified versions of
            it) with contractual assumptions of liability to the recipient, for
            any liability that these contractual assumptions directly impose on
            those licensors and authors.
        
          All other non-permissive additional terms are considered "further
        restrictions" within the meaning of section 10.  If the Program as you
        received it, or any part of it, contains a notice stating that it is
        governed by this License along with a term that is a further
        restriction, you may remove that term.  If a license document contains
        a further restriction but permits relicensing or conveying under this
        License, you may add to a covered work material governed by the terms
        of that license document, provided that the further restriction does
        not survive such relicensing or conveying.
        
          If you add terms to a covered work in accord with this section, you
        must place, in the relevant source files, a statement of the
        additional terms that apply to those files, or a notice indicating
        where to find the applicable terms.
        
          Additional terms, permissive or non-permissive, may be stated in the
        form of a separately written license, or stated as exceptions;
        the above requirements apply either way.
        
          8. Termination.
        
          You may not propagate or modify a covered work except as expressly
        provided under this License.  Any attempt otherwise to propagate or
        modify it is void, and will automatically terminate your rights under
        this License (including any patent licenses granted under the third
        paragraph of section 11).
        
          However, if you cease all violation of this License, then your
        license from a particular copyright holder is reinstated (a)
        provisionally, unless and until the copyright holder explicitly and
        finally terminates your license, and (b) permanently, if the copyright
        holder fails to notify you of the violation by some reasonable means
        prior to 60 days after the cessation.
        
          Moreover, your license from a particular copyright holder is
        reinstated permanently if the copyright holder notifies you of the
        violation by some reasonable means, this is the first time you have
        received notice of violation of this License (for any work) from that
        copyright holder, and you cure the violation prior to 30 days after
        your receipt of the notice.
        
          Termination of your rights under this section does not terminate the
        licenses of parties who have received copies or rights from you under
        this License.  If your rights have been terminated and not permanently
        reinstated, you do not qualify to receive new licenses for the same
        material under section 10.
        
          9. Acceptance Not Required for Having Copies.
        
          You are not required to accept this License in order to receive or
        run a copy of the Program.  Ancillary propagation of a covered work
        occurring solely as a consequence of using peer-to-peer transmission
        to receive a copy likewise does not require acceptance.  However,
        nothing other than this License grants you permission to propagate or
        modify any covered work.  These actions infringe copyright if you do
        not accept this License.  Therefore, by modifying or propagating a
        covered work, you indicate your acceptance of this License to do so.
        
          10. Automatic Licensing of Downstream Recipients.
        
          Each time you convey a covered work, the recipient automatically
        receives a license from the original licensors, to run, modify and
        propagate that work, subject to this License.  You are not responsible
        for enforcing compliance by third parties with this License.
        
          An "entity transaction" is a transaction transferring control of an
        organization, or substantially all assets of one, or subdividing an
        organization, or merging organizations.  If propagation of a covered
        work results from an entity transaction, each party to that
        transaction who receives a copy of the work also receives whatever
        licenses to the work the party's predecessor in interest had or could
        give under the previous paragraph, plus a right to possession of the
        Corresponding Source of the work from the predecessor in interest, if
        the predecessor has it or can get it with reasonable efforts.
        
          You may not impose any further restrictions on the exercise of the
        rights granted or affirmed under this License.  For example, you may
        not impose a license fee, royalty, or other charge for exercise of
        rights granted under this License, and you may not initiate litigation
        (including a cross-claim or counterclaim in a lawsuit) alleging that
        any patent claim is infringed by making, using, selling, offering for
        sale, or importing the Program or any portion of it.
        
          11. Patents.
        
          A "contributor" is a copyright holder who authorizes use under this
        License of the Program or a work on which the Program is based.  The
        work thus licensed is called the contributor's "contributor version".
        
          A contributor's "essential patent claims" are all patent claims
        owned or controlled by the contributor, whether already acquired or
        hereafter acquired, that would be infringed by some manner, permitted
        by this License, of making, using, or selling its contributor version,
        but do not include claims that would be infringed only as a
        consequence of further modification of the contributor version.  For
        purposes of this definition, "control" includes the right to grant
        patent sublicenses in a manner consistent with the requirements of
        this License.
        
          Each contributor grants you a non-exclusive, worldwide, royalty-free
        patent license under the contributor's essential patent claims, to
        make, use, sell, offer for sale, import and otherwise run, modify and
        propagate the contents of its contributor version.
        
          In the following three paragraphs, a "patent license" is any express
        agreement or commitment, however denominated, not to enforce a patent
        (such as an express permission to practice a patent or covenant not to
        sue for patent infringement).  To "grant" such a patent license to a
        party means to make such an agreement or commitment not to enforce a
        patent against the party.
        
          If you convey a covered work, knowingly relying on a patent license,
        and the Corresponding Source of the work is not available for anyone
        to copy, free of charge and under the terms of this License, through a
        publicly available network server or other readily accessible means,
        then you must either (1) cause the Corresponding Source to be so
        available, or (2) arrange to deprive yourself of the benefit of the
        patent license for this particular work, or (3) arrange, in a manner
        consistent with the requirements of this License, to extend the patent
        license to downstream recipients.  "Knowingly relying" means you have
        actual knowledge that, but for the patent license, your conveying the
        covered work in a country, or your recipient's use of the covered work
        in a country, would infringe one or more identifiable patents in that
        country that you have reason to believe are valid.
        
          If, pursuant to or in connection with a single transaction or
        arrangement, you convey, or propagate by procuring conveyance of, a
        covered work, and grant a patent license to some of the parties
        receiving the covered work authorizing them to use, propagate, modify
        or convey a specific copy of the covered work, then the patent license
        you grant is automatically extended to all recipients of the covered
        work and works based on it.
        
          A patent license is "discriminatory" if it does not include within
        the scope of its coverage, prohibits the exercise of, or is
        conditioned on the non-exercise of one or more of the rights that are
        specifically granted under this License.  You may not convey a covered
        work if you are a party to an arrangement with a third party that is
        in the business of distributing software, under which you make payment
        to the third party based on the extent of your activity of conveying
        the work, and under which the third party grants, to any of the
        parties who would receive the covered work from you, a discriminatory
        patent license (a) in connection with copies of the covered work
        conveyed by you (or copies made from those copies), or (b) primarily
        for and in connection with specific products or compilations that
        contain the covered work, unless you entered into that arrangement,
        or that patent license was granted, prior to 28 March 2007.
        
          Nothing in this License shall be construed as excluding or limiting
        any implied license or other defenses to infringement that may
        otherwise be available to you under applicable patent law.
        
          12. No Surrender of Others' Freedom.
        
          If conditions are imposed on you (whether by court order, agreement or
        otherwise) that contradict the conditions of this License, they do not
        excuse you from the conditions of this License.  If you cannot convey a
        covered work so as to satisfy simultaneously your obligations under this
        License and any other pertinent obligations, then as a consequence you may
        not convey it at all.  For example, if you agree to terms that obligate you
        to collect a royalty for further conveying from those to whom you convey
        the Program, the only way you could satisfy both those terms and this
        License would be to refrain entirely from conveying the Program.
        
          13. Use with the GNU Affero General Public License.
        
          Notwithstanding any other provision of this License, you have
        permission to link or combine any covered work with a work licensed
        under version 3 of the GNU Affero General Public License into a single
        combined work, and to convey the resulting work.  The terms of this
        License will continue to apply to the part which is the covered work,
        but the special requirements of the GNU Affero General Public License,
        section 13, concerning interaction through a network will apply to the
        combination as such.
        
          14. Revised Versions of this License.
        
          The Free Software Foundation may publish revised and/or new versions of
        the GNU General Public License from time to time.  Such new versions will
        be similar in spirit to the present version, but may differ in detail to
        address new problems or concerns.
        
          Each version is given a distinguishing version number.  If the
        Program specifies that a certain numbered version of the GNU General
        Public License "or any later version" applies to it, you have the
        option of following the terms and conditions either of that numbered
        version or of any later version published by the Free Software
        Foundation.  If the Program does not specify a version number of the
        GNU General Public License, you may choose any version ever published
        by the Free Software Foundation.
        
          If the Program specifies that a proxy can decide which future
        versions of the GNU General Public License can be used, that proxy's
        public statement of acceptance of a version permanently authorizes you
        to choose that version for the Program.
        
          Later license versions may give you additional or different
        permissions.  However, no additional obligations are imposed on any
        author or copyright holder as a result of your choosing to follow a
        later version.
        
          15. Disclaimer of Warranty.
        
          THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
        APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
        HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
        OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
        THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
        PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
        IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
        ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
        
          16. Limitation of Liability.
        
          IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
        WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
        THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
        GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
        USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
        DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
        PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
        EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
        SUCH DAMAGES.
        
          17. Interpretation of Sections 15 and 16.
        
          If the disclaimer of warranty and limitation of liability provided
        above cannot be given local legal effect according to their terms,
        reviewing courts shall apply local law that most closely approximates
        an absolute waiver of all civil liability in connection with the
        Program, unless a warranty or assumption of liability accompanies a
        copy of the Program in return for a fee.
        
                             END OF TERMS AND CONDITIONS
        
                    How to Apply These Terms to Your New Programs
        
          If you develop a new program, and you want it to be of the greatest
        possible use to the public, the best way to achieve this is to make it
        free software which everyone can redistribute and change under these terms.
        
          To do so, attach the following notices to the program.  It is safest
        to attach them to the start of each source file to most effectively
        state the exclusion of warranty; and each file should have at least
        the "copyright" line and a pointer to where the full notice is found.
        
            <one line to give the program's name and a brief idea of what it does.>
            Copyright (C) <year>  <name of author>
        
            This program is free software: you can redistribute it and/or modify
            it under the terms of the GNU General Public License as published by
            the Free Software Foundation, either version 3 of the License, or
            (at your option) any later version.
        
            This program is distributed in the hope that it will be useful,
            but WITHOUT ANY WARRANTY; without even the implied warranty of
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
            GNU General Public License for more details.
        
            You should have received a copy of the GNU General Public License
            along with this program.  If not, see <http://www.gnu.org/licenses/>.
        
        Also add information on how to contact you by electronic and paper mail.
        
          If the program does terminal interaction, make it output a short
        notice like this when it starts in an interactive mode:
        
            <program>  Copyright (C) <year>  <name of author>
            This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
            This is free software, and you are welcome to redistribute it
            under certain conditions; type `show c' for details.
        
        The hypothetical commands `show w' and `show c' should show the appropriate
        parts of the General Public License.  Of course, your program's commands
        might be different; for a GUI interface, you would use an "about box".
        
          You should also get your employer (if you work as a programmer) or school,
        if any, to sign a "copyright disclaimer" for the program, if necessary.
        For more information on this, and how to apply and follow the GNU GPL, see
        <http://www.gnu.org/licenses/>.
        
          The GNU General Public License does not permit incorporating your program
        into proprietary programs.  If your program is a subroutine library, you
        may consider it more useful to permit linking proprietary applications with
        the library.  If this is what you want to do, use the GNU Lesser General
        Public License instead of this License.  But first, please read
        <http://www.gnu.org/philosophy/why-not-lgpl.html>.
        
        */

        File 2 of 2: WagmiToken
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.5.0;
        import "./ILayerZeroUserApplicationConfig.sol";
        interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
            // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
            // @param _dstChainId - the destination chain identifier
            // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
            // @param _payload - a custom bytes payload to send to the destination contract
            // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
            // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
            // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
            function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;
            // @notice used by the messaging library to publish verified payload
            // @param _srcChainId - the source chain identifier
            // @param _srcAddress - the source contract (as bytes) at the source chain
            // @param _dstAddress - the address on destination chain
            // @param _nonce - the unbound message ordering nonce
            // @param _gasLimit - the gas limit for external contract execution
            // @param _payload - verified payload to send to the destination contract
            function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;
            // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
            // @param _srcChainId - the source chain identifier
            // @param _srcAddress - the source chain contract address
            function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);
            // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
            // @param _srcAddress - the source chain contract address
            function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);
            // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
            // @param _dstChainId - the destination chain identifier
            // @param _userApplication - the user app address on this EVM chain
            // @param _payload - the custom message to send over LayerZero
            // @param _payInZRO - if false, user app pays the protocol fee in native token
            // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
            function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);
            // @notice get this Endpoint's immutable source identifier
            function getChainId() external view returns (uint16);
            // @notice the interface to retry failed message on this Endpoint destination
            // @param _srcChainId - the source chain identifier
            // @param _srcAddress - the source chain contract address
            // @param _payload - the payload to be retried
            function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;
            // @notice query if any STORED payload (message blocking) at the endpoint.
            // @param _srcChainId - the source chain identifier
            // @param _srcAddress - the source chain contract address
            function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);
            // @notice query if the _libraryAddress is valid for sending msgs.
            // @param _userApplication - the user app address on this EVM chain
            function getSendLibraryAddress(address _userApplication) external view returns (address);
            // @notice query if the _libraryAddress is valid for receiving msgs.
            // @param _userApplication - the user app address on this EVM chain
            function getReceiveLibraryAddress(address _userApplication) external view returns (address);
            // @notice query if the non-reentrancy guard for send() is on
            // @return true if the guard is on. false otherwise
            function isSendingPayload() external view returns (bool);
            // @notice query if the non-reentrancy guard for receive() is on
            // @return true if the guard is on. false otherwise
            function isReceivingPayload() external view returns (bool);
            // @notice get the configuration of the LayerZero messaging library of the specified version
            // @param _version - messaging library version
            // @param _chainId - the chainId for the pending config change
            // @param _userApplication - the contract address of the user application
            // @param _configType - type of configuration. every messaging library has its own convention.
            function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);
            // @notice get the send() LayerZero messaging library version
            // @param _userApplication - the contract address of the user application
            function getSendVersion(address _userApplication) external view returns (uint16);
            // @notice get the lzReceive() LayerZero messaging library version
            // @param _userApplication - the contract address of the user application
            function getReceiveVersion(address _userApplication) external view returns (uint16);
        }
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.5.0;
        interface ILayerZeroReceiver {
            // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
            // @param _srcChainId - the source endpoint identifier
            // @param _srcAddress - the source sending contract address from the source chain
            // @param _nonce - the ordered message nonce
            // @param _payload - the signed payload is the UA bytes has encoded to be sent
            function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
        }
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.5.0;
        interface ILayerZeroUserApplicationConfig {
            // @notice set the configuration of the LayerZero messaging library of the specified version
            // @param _version - messaging library version
            // @param _chainId - the chainId for the pending config change
            // @param _configType - type of configuration. every messaging library has its own convention.
            // @param _config - configuration in the bytes. can encode arbitrary content.
            function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;
            // @notice set the send() LayerZero messaging library version to _version
            // @param _version - new messaging library version
            function setSendVersion(uint16 _version) external;
            // @notice set the lzReceive() LayerZero messaging library version to _version
            // @param _version - new messaging library version
            function setReceiveVersion(uint16 _version) external;
            // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
            // @param _srcChainId - the chainId of the source chain
            // @param _srcAddress - the contract address of the source contract at the source chain
            function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "@openzeppelin/contracts/access/Ownable.sol";
        import "../interfaces/ILayerZeroReceiver.sol";
        import "../interfaces/ILayerZeroUserApplicationConfig.sol";
        import "../interfaces/ILayerZeroEndpoint.sol";
        import "../util/BytesLib.sol";
        /*
         * a generic LzReceiver implementation
         */
        abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
            using BytesLib for bytes;
            // ua can not send payload larger than this by default, but it can be changed by the ua owner
            uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;
            ILayerZeroEndpoint public immutable lzEndpoint;
            mapping(uint16 => bytes) public trustedRemoteLookup;
            mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
            mapping(uint16 => uint) public payloadSizeLimitLookup;
            address public precrime;
            event SetPrecrime(address precrime);
            event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
            event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
            event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);
            constructor(address _endpoint) {
                lzEndpoint = ILayerZeroEndpoint(_endpoint);
            }
            function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override {
                // lzReceive must be called by the endpoint for security
                require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");
                bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
                // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
                require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract");
                _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
            }
            // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
            function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;
            function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
                bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
                require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
                _checkPayloadSize(_dstChainId, _payload.length);
                lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
            }
            function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
                uint providedGasLimit = _getGasLimit(_adapterParams);
                uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
                require(minGasLimit > 0, "LzApp: minGasLimit not set");
                require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
            }
            function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
                require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
                assembly {
                    gasLimit := mload(add(_adapterParams, 34))
                }
            }
            function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
                uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
                if (payloadSizeLimit == 0) { // use default if not set
                    payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
                }
                require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
            }
            //---------------------------UserApplication config----------------------------------------
            function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) {
                return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
            }
            // generic config for LayerZero user Application
            function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner {
                lzEndpoint.setConfig(_version, _chainId, _configType, _config);
            }
            function setSendVersion(uint16 _version) external override onlyOwner {
                lzEndpoint.setSendVersion(_version);
            }
            function setReceiveVersion(uint16 _version) external override onlyOwner {
                lzEndpoint.setReceiveVersion(_version);
            }
            function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
                lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
            }
            // _path = abi.encodePacked(remoteAddress, localAddress)
            // this function set the trusted path for the cross-chain communication
            function setTrustedRemote(uint16 _srcChainId, bytes calldata _path) external onlyOwner {
                trustedRemoteLookup[_srcChainId] = _path;
                emit SetTrustedRemote(_srcChainId, _path);
            }
            function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
                trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
                emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
            }
            function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
                bytes memory path = trustedRemoteLookup[_remoteChainId];
                require(path.length != 0, "LzApp: no trusted path record");
                return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
            }
            function setPrecrime(address _precrime) external onlyOwner {
                precrime = _precrime;
                emit SetPrecrime(_precrime);
            }
            function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
                require(_minGas > 0, "LzApp: invalid minGas");
                minDstGasLookup[_dstChainId][_packetType] = _minGas;
                emit SetMinDstGas(_dstChainId, _packetType, _minGas);
            }
            // if the size is 0, it means default size limit
            function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
                payloadSizeLimitLookup[_dstChainId] = _size;
            }
            //--------------------------- VIEW FUNCTION ----------------------------------------
            function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
                bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
                return keccak256(trustedSource) == keccak256(_srcAddress);
            }
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "./LzApp.sol";
        import "../util/ExcessivelySafeCall.sol";
        /*
         * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
         * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
         * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
         */
        abstract contract NonblockingLzApp is LzApp {
            using ExcessivelySafeCall for address;
            constructor(address _endpoint) LzApp(_endpoint) {}
            mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;
            event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
            event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);
            // overriding the virtual function in LzReceiver
            function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
                (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
                // try-catch all errors/exceptions
                if (!success) {
                    _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
                }
            }
            function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
                failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
                emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
            }
            function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
                // only internal transaction
                require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
                _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
            }
            //@notice override this function
            function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;
            function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
                // assert there is message to retry
                bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
                require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
                require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
                // clear the stored message
                failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
                // execute the message. revert if it fails again
                _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
                emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
            }
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "../OFT.sol";
        contract BasedOFT is OFT {
            constructor(string memory _name, string memory _symbol, address _lzEndpoint) OFT(_name, _symbol, _lzEndpoint) {}
            function circulatingSupply() public view virtual override returns (uint) {
                unchecked {
                    return totalSupply() - balanceOf(address(this));
                }
            }
            function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) {
                address spender = _msgSender();
                if (_from != spender) _spendAllowance(_from, spender, _amount);
                _transfer(_from, address(this), _amount);
                return _amount;
            }
            function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) {
                _transfer(address(this), _toAddress, _amount);
                return _amount;
            }
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "./BasedOFT.sol";
        import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
        /**
         * @dev Extension of {OFT} that adds a global cap to the supply of tokens across all chains.
         */
        contract GlobalCappedOFT is BasedOFT, ERC20Capped {
            constructor(string memory _name, string memory _symbol, uint _cap, address _lzEndpoint) BasedOFT(_name, _symbol, _lzEndpoint) ERC20Capped(_cap) {}
            function _mint(address account, uint amount) internal virtual override(ERC20, ERC20Capped) {
                ERC20Capped._mint(account, amount);
            }
        }
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.5.0;
        import "./IOFTCore.sol";
        import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
        /**
         * @dev Interface of the OFT standard
         */
        interface IOFT is IOFTCore, IERC20 {
        }
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.5.0;
        import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
        /**
         * @dev Interface of the IOFT core standard
         */
        interface IOFTCore is IERC165 {
            /**
             * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
             * _dstChainId - L0 defined chain id to send tokens too
             * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
             * _amount - amount of the tokens to transfer
             * _useZro - indicates to use zro to pay L0 fees
             * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
             */
            function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);
            /**
             * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
             * `_from` the owner of token
             * `_dstChainId` the destination chain identifier
             * `_toAddress` can be any size depending on the `dstChainId`.
             * `_amount` the quantity of tokens in wei
             * `_refundAddress` the address LayerZero refunds if too much message fee is sent
             * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
             * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
             */
            function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;
            /**
             * @dev returns the circulating amount of tokens on current chain
             */
            function circulatingSupply() external view returns (uint);
            /**
             * @dev returns the address of the ERC20 token
             */
            function token() external view returns (address);
            /**
             * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
             * `_nonce` is the outbound nonce
             */
            event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes _toAddress, uint _amount);
            /**
             * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
             * `_nonce` is the inbound nonce.
             */
            event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);
            event SetUseCustomAdapterParams(bool _useCustomAdapterParams);
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
        import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
        import "./IOFT.sol";
        import "./OFTCore.sol";
        // override decimal() function is needed
        contract OFT is OFTCore, ERC20, IOFT {
            constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {}
            function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) {
                return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId);
            }
            function token() public view virtual override returns (address) {
                return address(this);
            }
            function circulatingSupply() public view virtual override returns (uint) {
                return totalSupply();
            }
            function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) {
                address spender = _msgSender();
                if (_from != spender) _spendAllowance(_from, spender, _amount);
                _burn(_from, _amount);
                return _amount;
            }
            function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) {
                _mint(_toAddress, _amount);
                return _amount;
            }
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "../../lzApp/NonblockingLzApp.sol";
        import "./IOFTCore.sol";
        import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
        abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore {
            using BytesLib for bytes;
            uint public constant NO_EXTRA_GAS = 0;
            // packet type
            uint16 public constant PT_SEND = 0;
            bool public useCustomAdapterParams;
            constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}
            function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
                return interfaceId == type(IOFTCore).interfaceId || super.supportsInterface(interfaceId);
            }
            function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
                // mock the payload for sendFrom()
                bytes memory payload = abi.encode(PT_SEND, _toAddress, _amount);
                return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
            }
            function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override {
                _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams);
            }
            function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner {
                useCustomAdapterParams = _useCustomAdapterParams;
                emit SetUseCustomAdapterParams(_useCustomAdapterParams);
            }
            function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
                uint16 packetType;
                assembly {
                    packetType := mload(add(_payload, 32))
                }
                if (packetType == PT_SEND) {
                    _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
                } else {
                    revert("OFTCore: unknown packet type");
                }
            }
            function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual {
                _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);
                uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount);
                bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount);
                _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);
                emit SendToChain(_dstChainId, _from, _toAddress, amount);
            }
            function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
                (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint));
                address to = toAddressBytes.toAddress(0);
                amount = _creditTo(_srcChainId, to, amount);
                emit ReceiveFromChain(_srcChainId, to, amount);
            }
            function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
                if (useCustomAdapterParams) {
                    _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
                } else {
                    require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
                }
            }
            function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount) internal virtual returns(uint);
            function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns(uint);
        }
        // SPDX-License-Identifier: Unlicense
        /*
         * @title Solidity Bytes Arrays Utils
         * @author Gonçalo Sá <[email protected]>
         *
         * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
         *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
         */
        pragma solidity >=0.8.0 <0.9.0;
        library BytesLib {
            function concat(
                bytes memory _preBytes,
                bytes memory _postBytes
            )
            internal
            pure
            returns (bytes memory)
            {
                bytes memory tempBytes;
                assembly {
                // Get a location of some free memory and store it in tempBytes as
                // Solidity does for memory variables.
                    tempBytes := mload(0x40)
                // Store the length of the first bytes array at the beginning of
                // the memory for tempBytes.
                    let length := mload(_preBytes)
                    mstore(tempBytes, length)
                // Maintain a memory counter for the current write location in the
                // temp bytes array by adding the 32 bytes for the array length to
                // the starting location.
                    let mc := add(tempBytes, 0x20)
                // Stop copying when the memory counter reaches the length of the
                // first bytes array.
                    let end := add(mc, length)
                    for {
                    // Initialize a copy counter to the start of the _preBytes data,
                    // 32 bytes into its memory.
                        let cc := add(_preBytes, 0x20)
                    } lt(mc, end) {
                    // Increase both counters by 32 bytes each iteration.
                        mc := add(mc, 0x20)
                        cc := add(cc, 0x20)
                    } {
                    // Write the _preBytes data into the tempBytes memory 32 bytes
                    // at a time.
                        mstore(mc, mload(cc))
                    }
                // Add the length of _postBytes to the current length of tempBytes
                // and store it as the new length in the first 32 bytes of the
                // tempBytes memory.
                    length := mload(_postBytes)
                    mstore(tempBytes, add(length, mload(tempBytes)))
                // Move the memory counter back from a multiple of 0x20 to the
                // actual end of the _preBytes data.
                    mc := end
                // Stop copying when the memory counter reaches the new combined
                // length of the arrays.
                    end := add(mc, length)
                    for {
                        let cc := add(_postBytes, 0x20)
                    } lt(mc, end) {
                        mc := add(mc, 0x20)
                        cc := add(cc, 0x20)
                    } {
                        mstore(mc, mload(cc))
                    }
                // Update the free-memory pointer by padding our last write location
                // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
                // next 32 byte block, then round down to the nearest multiple of
                // 32. If the sum of the length of the two arrays is zero then add
                // one before rounding down to leave a blank 32 bytes (the length block with 0).
                    mstore(0x40, and(
                    add(add(end, iszero(add(length, mload(_preBytes)))), 31),
                    not(31) // Round down to the nearest 32 bytes.
                    ))
                }
                return tempBytes;
            }
            function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
                assembly {
                // Read the first 32 bytes of _preBytes storage, which is the length
                // of the array. (We don't need to use the offset into the slot
                // because arrays use the entire slot.)
                    let fslot := sload(_preBytes.slot)
                // Arrays of 31 bytes or less have an even value in their slot,
                // while longer arrays have an odd value. The actual length is
                // the slot divided by two for odd values, and the lowest order
                // byte divided by two for even values.
                // If the slot is even, bitwise and the slot with 255 and divide by
                // two to get the length. If the slot is odd, bitwise and the slot
                // with -1 and divide by two.
                    let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
                    let mlength := mload(_postBytes)
                    let newlength := add(slength, mlength)
                // slength can contain both the length and contents of the array
                // if length < 32 bytes so let's prepare for that
                // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                    switch add(lt(slength, 32), lt(newlength, 32))
                    case 2 {
                    // Since the new array still fits in the slot, we just need to
                    // update the contents of the slot.
                    // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                        sstore(
                        _preBytes.slot,
                        // all the modifications to the slot are inside this
                        // next block
                        add(
                        // we can just add to the slot contents because the
                        // bytes we want to change are the LSBs
                        fslot,
                        add(
                        mul(
                        div(
                        // load the bytes from memory
                        mload(add(_postBytes, 0x20)),
                        // zero all bytes to the right
                        exp(0x100, sub(32, mlength))
                        ),
                        // and now shift left the number of bytes to
                        // leave space for the length in the slot
                        exp(0x100, sub(32, newlength))
                        ),
                        // increase length by the double of the memory
                        // bytes length
                        mul(mlength, 2)
                        )
                        )
                        )
                    }
                    case 1 {
                    // The stored value fits in the slot, but the combined value
                    // will exceed it.
                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := add(keccak256(0x0, 0x20), div(slength, 32))
                    // save new length
                        sstore(_preBytes.slot, add(mul(newlength, 2), 1))
                    // The contents of the _postBytes array start 32 bytes into
                    // the structure. Our first read should obtain the `submod`
                    // bytes that can fit into the unused space in the last word
                    // of the stored array. To get this, we read 32 bytes starting
                    // from `submod`, so the data we read overlaps with the array
                    // contents by `submod` bytes. Masking the lowest-order
                    // `submod` bytes allows us to add that value directly to the
                    // stored value.
                        let submod := sub(32, slength)
                        let mc := add(_postBytes, submod)
                        let end := add(_postBytes, mlength)
                        let mask := sub(exp(0x100, submod), 1)
                        sstore(
                        sc,
                        add(
                        and(
                        fslot,
                        0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                        ),
                        and(mload(mc), mask)
                        )
                        )
                        for {
                            mc := add(mc, 0x20)
                            sc := add(sc, 1)
                        } lt(mc, end) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            sstore(sc, mload(mc))
                        }
                        mask := exp(0x100, sub(mc, end))
                        sstore(sc, mul(div(mload(mc), mask), mask))
                    }
                    default {
                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                    // Start copying to the last used word of the stored array.
                        let sc := add(keccak256(0x0, 0x20), div(slength, 32))
                    // save new length
                        sstore(_preBytes.slot, add(mul(newlength, 2), 1))
                    // Copy over the first `submod` bytes of the new data as in
                    // case 1 above.
                        let slengthmod := mod(slength, 32)
                        let mlengthmod := mod(mlength, 32)
                        let submod := sub(32, slengthmod)
                        let mc := add(_postBytes, submod)
                        let end := add(_postBytes, mlength)
                        let mask := sub(exp(0x100, submod), 1)
                        sstore(sc, add(sload(sc), and(mload(mc), mask)))
                        for {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } lt(mc, end) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            sstore(sc, mload(mc))
                        }
                        mask := exp(0x100, sub(mc, end))
                        sstore(sc, mul(div(mload(mc), mask), mask))
                    }
                }
            }
            function slice(
                bytes memory _bytes,
                uint256 _start,
                uint256 _length
            )
            internal
            pure
            returns (bytes memory)
            {
                require(_length + 31 >= _length, "slice_overflow");
                require(_bytes.length >= _start + _length, "slice_outOfBounds");
                bytes memory tempBytes;
                assembly {
                    switch iszero(_length)
                    case 0 {
                    // Get a location of some free memory and store it in tempBytes as
                    // Solidity does for memory variables.
                        tempBytes := mload(0x40)
                    // The first word of the slice result is potentially a partial
                    // word read from the original array. To read it, we calculate
                    // the length of that partial word and start copying that many
                    // bytes into the array. The first word we copy will start with
                    // data we don't care about, but the last `lengthmod` bytes will
                    // land at the beginning of the contents of the new array. When
                    // we're done copying, we overwrite the full first word with
                    // the actual length of the slice.
                        let lengthmod := and(_length, 31)
                    // The multiplication in the next line is necessary
                    // because when slicing multiples of 32 bytes (lengthmod == 0)
                    // the following copy loop was copying the origin's length
                    // and then ending prematurely not copying everything it should.
                        let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                        let end := add(mc, _length)
                        for {
                        // The multiplication in the next line has the same exact purpose
                        // as the one above.
                            let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                        } lt(mc, end) {
                            mc := add(mc, 0x20)
                            cc := add(cc, 0x20)
                        } {
                            mstore(mc, mload(cc))
                        }
                        mstore(tempBytes, _length)
                    //update free-memory pointer
                    //allocating the array padded to 32 bytes like the compiler does now
                        mstore(0x40, and(add(mc, 31), not(31)))
                    }
                    //if we want a zero-length slice let's just return a zero-length array
                    default {
                        tempBytes := mload(0x40)
                    //zero out the 32 bytes slice we are about to return
                    //we need to do it because Solidity does not garbage collect
                        mstore(tempBytes, 0)
                        mstore(0x40, add(tempBytes, 0x20))
                    }
                }
                return tempBytes;
            }
            function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
                require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
                address tempAddress;
                assembly {
                    tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
                }
                return tempAddress;
            }
            function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {
                require(_bytes.length >= _start + 1 , "toUint8_outOfBounds");
                uint8 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x1), _start))
                }
                return tempUint;
            }
            function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {
                require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
                uint16 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x2), _start))
                }
                return tempUint;
            }
            function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {
                require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
                uint32 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x4), _start))
                }
                return tempUint;
            }
            function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {
                require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
                uint64 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x8), _start))
                }
                return tempUint;
            }
            function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {
                require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
                uint96 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0xc), _start))
                }
                return tempUint;
            }
            function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {
                require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
                uint128 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x10), _start))
                }
                return tempUint;
            }
            function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
                require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
                uint256 tempUint;
                assembly {
                    tempUint := mload(add(add(_bytes, 0x20), _start))
                }
                return tempUint;
            }
            function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {
                require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
                bytes32 tempBytes32;
                assembly {
                    tempBytes32 := mload(add(add(_bytes, 0x20), _start))
                }
                return tempBytes32;
            }
            function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
                bool success = true;
                assembly {
                    let length := mload(_preBytes)
                // if lengths don't match the arrays are not equal
                    switch eq(length, mload(_postBytes))
                    case 1 {
                    // cb is a circuit breaker in the for loop since there's
                    //  no said feature for inline assembly loops
                    // cb = 1 - don't breaker
                    // cb = 0 - break
                        let cb := 1
                        let mc := add(_preBytes, 0x20)
                        let end := add(mc, length)
                        for {
                            let cc := add(_postBytes, 0x20)
                        // the next line is the loop condition:
                        // while(uint256(mc < end) + cb == 2)
                        } eq(add(lt(mc, end), cb), 2) {
                            mc := add(mc, 0x20)
                            cc := add(cc, 0x20)
                        } {
                        // if any of these checks fails then arrays are not equal
                            if iszero(eq(mload(mc), mload(cc))) {
                            // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                    default {
                    // unsuccess:
                        success := 0
                    }
                }
                return success;
            }
            function equalStorage(
                bytes storage _preBytes,
                bytes memory _postBytes
            )
            internal
            view
            returns (bool)
            {
                bool success = true;
                assembly {
                // we know _preBytes_offset is 0
                    let fslot := sload(_preBytes.slot)
                // Decode the length of the stored array like in concatStorage().
                    let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
                    let mlength := mload(_postBytes)
                // if lengths don't match the arrays are not equal
                    switch eq(slength, mlength)
                    case 1 {
                    // slength can contain both the length and contents of the array
                    // if length < 32 bytes so let's prepare for that
                    // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                        if iszero(iszero(slength)) {
                            switch lt(slength, 32)
                            case 1 {
                            // blank the last byte which is the length
                                fslot := mul(div(fslot, 0x100), 0x100)
                                if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                                // unsuccess:
                                    success := 0
                                }
                            }
                            default {
                            // cb is a circuit breaker in the for loop since there's
                            //  no said feature for inline assembly loops
                            // cb = 1 - don't breaker
                            // cb = 0 - break
                                let cb := 1
                            // get the keccak hash to get the contents of the array
                                mstore(0x0, _preBytes.slot)
                                let sc := keccak256(0x0, 0x20)
                                let mc := add(_postBytes, 0x20)
                                let end := add(mc, mlength)
                            // the next line is the loop condition:
                            // while(uint256(mc < end) + cb == 2)
                                for {} eq(add(lt(mc, end), cb), 2) {
                                    sc := add(sc, 1)
                                    mc := add(mc, 0x20)
                                } {
                                    if iszero(eq(sload(sc), mload(mc))) {
                                    // unsuccess:
                                        success := 0
                                        cb := 0
                                    }
                                }
                            }
                        }
                    }
                    default {
                    // unsuccess:
                        success := 0
                    }
                }
                return success;
            }
        }
        // SPDX-License-Identifier: MIT OR Apache-2.0
        pragma solidity >=0.7.6;
        library ExcessivelySafeCall {
            uint256 constant LOW_28_MASK =
            0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
            /// @notice Use when you _really_ really _really_ don't trust the called
            /// contract. This prevents the called contract from causing reversion of
            /// the caller in as many ways as we can.
            /// @dev The main difference between this and a solidity low-level call is
            /// that we limit the number of bytes that the callee can cause to be
            /// copied to caller memory. This prevents stupid things like malicious
            /// contracts returning 10,000,000 bytes causing a local OOG when copying
            /// to memory.
            /// @param _target The address to call
            /// @param _gas The amount of gas to forward to the remote contract
            /// @param _maxCopy The maximum number of bytes of returndata to copy
            /// to memory.
            /// @param _calldata The data to send to the remote contract
            /// @return success and returndata, as `.call()`. Returndata is capped to
            /// `_maxCopy` bytes.
            function excessivelySafeCall(
                address _target,
                uint256 _gas,
                uint16 _maxCopy,
                bytes memory _calldata
            ) internal returns (bool, bytes memory) {
                // set up for assembly call
                uint256 _toCopy;
                bool _success;
                bytes memory _returnData = new bytes(_maxCopy);
                // dispatch message to recipient
                // by assembly calling "handle" function
                // we call via assembly to avoid memcopying a very large returndata
                // returned by a malicious contract
                assembly {
                    _success := call(
                    _gas, // gas
                    _target, // recipient
                    0, // ether value
                    add(_calldata, 0x20), // inloc
                    mload(_calldata), // inlen
                    0, // outloc
                    0 // outlen
                    )
                // limit our copy to 256 bytes
                    _toCopy := returndatasize()
                    if gt(_toCopy, _maxCopy) {
                        _toCopy := _maxCopy
                    }
                // Store the length of the copied bytes
                    mstore(_returnData, _toCopy)
                // copy the bytes from returndata[0:_toCopy]
                    returndatacopy(add(_returnData, 0x20), 0, _toCopy)
                }
                return (_success, _returnData);
            }
            /// @notice Use when you _really_ really _really_ don't trust the called
            /// contract. This prevents the called contract from causing reversion of
            /// the caller in as many ways as we can.
            /// @dev The main difference between this and a solidity low-level call is
            /// that we limit the number of bytes that the callee can cause to be
            /// copied to caller memory. This prevents stupid things like malicious
            /// contracts returning 10,000,000 bytes causing a local OOG when copying
            /// to memory.
            /// @param _target The address to call
            /// @param _gas The amount of gas to forward to the remote contract
            /// @param _maxCopy The maximum number of bytes of returndata to copy
            /// to memory.
            /// @param _calldata The data to send to the remote contract
            /// @return success and returndata, as `.call()`. Returndata is capped to
            /// `_maxCopy` bytes.
            function excessivelySafeStaticCall(
                address _target,
                uint256 _gas,
                uint16 _maxCopy,
                bytes memory _calldata
            ) internal view returns (bool, bytes memory) {
                // set up for assembly call
                uint256 _toCopy;
                bool _success;
                bytes memory _returnData = new bytes(_maxCopy);
                // dispatch message to recipient
                // by assembly calling "handle" function
                // we call via assembly to avoid memcopying a very large returndata
                // returned by a malicious contract
                assembly {
                    _success := staticcall(
                    _gas, // gas
                    _target, // recipient
                    add(_calldata, 0x20), // inloc
                    mload(_calldata), // inlen
                    0, // outloc
                    0 // outlen
                    )
                // limit our copy to 256 bytes
                    _toCopy := returndatasize()
                    if gt(_toCopy, _maxCopy) {
                        _toCopy := _maxCopy
                    }
                // Store the length of the copied bytes
                    mstore(_returnData, _toCopy)
                // copy the bytes from returndata[0:_toCopy]
                    returndatacopy(add(_returnData, 0x20), 0, _toCopy)
                }
                return (_success, _returnData);
            }
            /**
             * @notice Swaps function selectors in encoded contract calls
             * @dev Allows reuse of encoded calldata for functions with identical
             * argument types but different names. It simply swaps out the first 4 bytes
             * for the new selector. This function modifies memory in place, and should
             * only be used with caution.
             * @param _newSelector The new 4-byte selector
             * @param _buf The encoded contract args
             */
            function swapSelector(bytes4 _newSelector, bytes memory _buf)
            internal
            pure
            {
                require(_buf.length >= 4);
                uint256 _mask = LOW_28_MASK;
                assembly {
                // load the first word of
                    let _word := mload(add(_buf, 0x20))
                // mask out the top 4 bytes
                // /x
                    _word := and(_word, _mask)
                    _word := or(_newSelector, _word)
                    mstore(add(_buf, 0x20), _word)
                }
            }
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
        pragma solidity ^0.8.0;
        import "../utils/Context.sol";
        /**
         * @dev Contract module which provides a basic access control mechanism, where
         * there is an account (an owner) that can be granted exclusive access to
         * specific functions.
         *
         * By default, the owner account will be the one that deploys the contract. This
         * can later be changed with {transferOwnership}.
         *
         * This module is used through inheritance. It will make available the modifier
         * `onlyOwner`, which can be applied to your functions to restrict their use to
         * the owner.
         */
        abstract contract Ownable is Context {
            address private _owner;
            event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
            /**
             * @dev Initializes the contract setting the deployer as the initial owner.
             */
            constructor() {
                _transferOwnership(_msgSender());
            }
            /**
             * @dev Throws if called by any account other than the owner.
             */
            modifier onlyOwner() {
                _checkOwner();
                _;
            }
            /**
             * @dev Returns the address of the current owner.
             */
            function owner() public view virtual returns (address) {
                return _owner;
            }
            /**
             * @dev Throws if the sender is not the owner.
             */
            function _checkOwner() internal view virtual {
                require(owner() == _msgSender(), "Ownable: caller is not the owner");
            }
            /**
             * @dev Leaves the contract without owner. It will not be possible to call
             * `onlyOwner` functions anymore. Can only be called by the current owner.
             *
             * NOTE: Renouncing ownership will leave the contract without an owner,
             * thereby removing any functionality that is only available to the owner.
             */
            function renounceOwnership() public virtual onlyOwner {
                _transferOwnership(address(0));
            }
            /**
             * @dev Transfers ownership of the contract to a new account (`newOwner`).
             * Can only be called by the current owner.
             */
            function transferOwnership(address newOwner) public virtual onlyOwner {
                require(newOwner != address(0), "Ownable: new owner is the zero address");
                _transferOwnership(newOwner);
            }
            /**
             * @dev Transfers ownership of the contract to a new account (`newOwner`).
             * Internal function without access restriction.
             */
            function _transferOwnership(address newOwner) internal virtual {
                address oldOwner = _owner;
                _owner = newOwner;
                emit OwnershipTransferred(oldOwner, newOwner);
            }
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
        pragma solidity ^0.8.0;
        import "./IERC20.sol";
        import "./extensions/IERC20Metadata.sol";
        import "../../utils/Context.sol";
        /**
         * @dev Implementation of the {IERC20} interface.
         *
         * This implementation is agnostic to the way tokens are created. This means
         * that a supply mechanism has to be added in a derived contract using {_mint}.
         * For a generic mechanism see {ERC20PresetMinterPauser}.
         *
         * TIP: For a detailed writeup see our guide
         * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
         * to implement supply mechanisms].
         *
         * We have followed general OpenZeppelin Contracts guidelines: functions revert
         * instead returning `false` on failure. This behavior is nonetheless
         * conventional and does not conflict with the expectations of ERC20
         * applications.
         *
         * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
         * This allows applications to reconstruct the allowance for all accounts just
         * by listening to said events. Other implementations of the EIP may not emit
         * these events, as it isn't required by the specification.
         *
         * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
         * functions have been added to mitigate the well-known issues around setting
         * allowances. See {IERC20-approve}.
         */
        contract ERC20 is Context, IERC20, IERC20Metadata {
            mapping(address => uint256) private _balances;
            mapping(address => mapping(address => uint256)) private _allowances;
            uint256 private _totalSupply;
            string private _name;
            string private _symbol;
            /**
             * @dev Sets the values for {name} and {symbol}.
             *
             * The default value of {decimals} is 18. To select a different value for
             * {decimals} you should overload it.
             *
             * All two of these values are immutable: they can only be set once during
             * construction.
             */
            constructor(string memory name_, string memory symbol_) {
                _name = name_;
                _symbol = symbol_;
            }
            /**
             * @dev Returns the name of the token.
             */
            function name() public view virtual override returns (string memory) {
                return _name;
            }
            /**
             * @dev Returns the symbol of the token, usually a shorter version of the
             * name.
             */
            function symbol() public view virtual override returns (string memory) {
                return _symbol;
            }
            /**
             * @dev Returns the number of decimals used to get its user representation.
             * For example, if `decimals` equals `2`, a balance of `505` tokens should
             * be displayed to a user as `5.05` (`505 / 10 ** 2`).
             *
             * Tokens usually opt for a value of 18, imitating the relationship between
             * Ether and Wei. This is the value {ERC20} uses, unless this function is
             * overridden;
             *
             * NOTE: This information is only used for _display_ purposes: it in
             * no way affects any of the arithmetic of the contract, including
             * {IERC20-balanceOf} and {IERC20-transfer}.
             */
            function decimals() public view virtual override returns (uint8) {
                return 18;
            }
            /**
             * @dev See {IERC20-totalSupply}.
             */
            function totalSupply() public view virtual override returns (uint256) {
                return _totalSupply;
            }
            /**
             * @dev See {IERC20-balanceOf}.
             */
            function balanceOf(address account) public view virtual override returns (uint256) {
                return _balances[account];
            }
            /**
             * @dev See {IERC20-transfer}.
             *
             * Requirements:
             *
             * - `to` cannot be the zero address.
             * - the caller must have a balance of at least `amount`.
             */
            function transfer(address to, uint256 amount) public virtual override returns (bool) {
                address owner = _msgSender();
                _transfer(owner, to, amount);
                return true;
            }
            /**
             * @dev See {IERC20-allowance}.
             */
            function allowance(address owner, address spender) public view virtual override returns (uint256) {
                return _allowances[owner][spender];
            }
            /**
             * @dev See {IERC20-approve}.
             *
             * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
             * `transferFrom`. This is semantically equivalent to an infinite approval.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             */
            function approve(address spender, uint256 amount) public virtual override returns (bool) {
                address owner = _msgSender();
                _approve(owner, spender, amount);
                return true;
            }
            /**
             * @dev See {IERC20-transferFrom}.
             *
             * Emits an {Approval} event indicating the updated allowance. This is not
             * required by the EIP. See the note at the beginning of {ERC20}.
             *
             * NOTE: Does not update the allowance if the current allowance
             * is the maximum `uint256`.
             *
             * Requirements:
             *
             * - `from` and `to` cannot be the zero address.
             * - `from` must have a balance of at least `amount`.
             * - the caller must have allowance for ``from``'s tokens of at least
             * `amount`.
             */
            function transferFrom(
                address from,
                address to,
                uint256 amount
            ) public virtual override returns (bool) {
                address spender = _msgSender();
                _spendAllowance(from, spender, amount);
                _transfer(from, to, amount);
                return true;
            }
            /**
             * @dev Atomically increases the allowance granted to `spender` by the caller.
             *
             * This is an alternative to {approve} that can be used as a mitigation for
             * problems described in {IERC20-approve}.
             *
             * Emits an {Approval} event indicating the updated allowance.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             */
            function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
                address owner = _msgSender();
                _approve(owner, spender, allowance(owner, spender) + addedValue);
                return true;
            }
            /**
             * @dev Atomically decreases the allowance granted to `spender` by the caller.
             *
             * This is an alternative to {approve} that can be used as a mitigation for
             * problems described in {IERC20-approve}.
             *
             * Emits an {Approval} event indicating the updated allowance.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             * - `spender` must have allowance for the caller of at least
             * `subtractedValue`.
             */
            function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
                address owner = _msgSender();
                uint256 currentAllowance = allowance(owner, spender);
                require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
                unchecked {
                    _approve(owner, spender, currentAllowance - subtractedValue);
                }
                return true;
            }
            /**
             * @dev Moves `amount` of tokens from `from` to `to`.
             *
             * This internal function is equivalent to {transfer}, and can be used to
             * e.g. implement automatic token fees, slashing mechanisms, etc.
             *
             * Emits a {Transfer} event.
             *
             * Requirements:
             *
             * - `from` cannot be the zero address.
             * - `to` cannot be the zero address.
             * - `from` must have a balance of at least `amount`.
             */
            function _transfer(
                address from,
                address to,
                uint256 amount
            ) internal virtual {
                require(from != address(0), "ERC20: transfer from the zero address");
                require(to != address(0), "ERC20: transfer to the zero address");
                _beforeTokenTransfer(from, to, amount);
                uint256 fromBalance = _balances[from];
                require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
                unchecked {
                    _balances[from] = fromBalance - amount;
                    // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
                    // decrementing then incrementing.
                    _balances[to] += amount;
                }
                emit Transfer(from, to, amount);
                _afterTokenTransfer(from, to, amount);
            }
            /** @dev Creates `amount` tokens and assigns them to `account`, increasing
             * the total supply.
             *
             * Emits a {Transfer} event with `from` set to the zero address.
             *
             * Requirements:
             *
             * - `account` cannot be the zero address.
             */
            function _mint(address account, uint256 amount) internal virtual {
                require(account != address(0), "ERC20: mint to the zero address");
                _beforeTokenTransfer(address(0), account, amount);
                _totalSupply += amount;
                unchecked {
                    // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
                    _balances[account] += amount;
                }
                emit Transfer(address(0), account, amount);
                _afterTokenTransfer(address(0), account, amount);
            }
            /**
             * @dev Destroys `amount` tokens from `account`, reducing the
             * total supply.
             *
             * Emits a {Transfer} event with `to` set to the zero address.
             *
             * Requirements:
             *
             * - `account` cannot be the zero address.
             * - `account` must have at least `amount` tokens.
             */
            function _burn(address account, uint256 amount) internal virtual {
                require(account != address(0), "ERC20: burn from the zero address");
                _beforeTokenTransfer(account, address(0), amount);
                uint256 accountBalance = _balances[account];
                require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
                unchecked {
                    _balances[account] = accountBalance - amount;
                    // Overflow not possible: amount <= accountBalance <= totalSupply.
                    _totalSupply -= amount;
                }
                emit Transfer(account, address(0), amount);
                _afterTokenTransfer(account, address(0), amount);
            }
            /**
             * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
             *
             * This internal function is equivalent to `approve`, and can be used to
             * e.g. set automatic allowances for certain subsystems, etc.
             *
             * Emits an {Approval} event.
             *
             * Requirements:
             *
             * - `owner` cannot be the zero address.
             * - `spender` cannot be the zero address.
             */
            function _approve(
                address owner,
                address spender,
                uint256 amount
            ) internal virtual {
                require(owner != address(0), "ERC20: approve from the zero address");
                require(spender != address(0), "ERC20: approve to the zero address");
                _allowances[owner][spender] = amount;
                emit Approval(owner, spender, amount);
            }
            /**
             * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
             *
             * Does not update the allowance amount in case of infinite allowance.
             * Revert if not enough allowance is available.
             *
             * Might emit an {Approval} event.
             */
            function _spendAllowance(
                address owner,
                address spender,
                uint256 amount
            ) internal virtual {
                uint256 currentAllowance = allowance(owner, spender);
                if (currentAllowance != type(uint256).max) {
                    require(currentAllowance >= amount, "ERC20: insufficient allowance");
                    unchecked {
                        _approve(owner, spender, currentAllowance - amount);
                    }
                }
            }
            /**
             * @dev Hook that is called before any transfer of tokens. This includes
             * minting and burning.
             *
             * Calling conditions:
             *
             * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
             * will be transferred to `to`.
             * - when `from` is zero, `amount` tokens will be minted for `to`.
             * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
             * - `from` and `to` are never both zero.
             *
             * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
             */
            function _beforeTokenTransfer(
                address from,
                address to,
                uint256 amount
            ) internal virtual {}
            /**
             * @dev Hook that is called after any transfer of tokens. This includes
             * minting and burning.
             *
             * Calling conditions:
             *
             * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
             * has been transferred to `to`.
             * - when `from` is zero, `amount` tokens have been minted for `to`.
             * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
             * - `from` and `to` are never both zero.
             *
             * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
             */
            function _afterTokenTransfer(
                address from,
                address to,
                uint256 amount
            ) internal virtual {}
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)
        pragma solidity ^0.8.0;
        import "../ERC20.sol";
        /**
         * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
         */
        abstract contract ERC20Capped is ERC20 {
            uint256 private immutable _cap;
            /**
             * @dev Sets the value of the `cap`. This value is immutable, it can only be
             * set once during construction.
             */
            constructor(uint256 cap_) {
                require(cap_ > 0, "ERC20Capped: cap is 0");
                _cap = cap_;
            }
            /**
             * @dev Returns the cap on the token's total supply.
             */
            function cap() public view virtual returns (uint256) {
                return _cap;
            }
            /**
             * @dev See {ERC20-_mint}.
             */
            function _mint(address account, uint256 amount) internal virtual override {
                require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
                super._mint(account, amount);
            }
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
        pragma solidity ^0.8.0;
        import "../IERC20.sol";
        /**
         * @dev Interface for the optional metadata functions from the ERC20 standard.
         *
         * _Available since v4.1._
         */
        interface IERC20Metadata is IERC20 {
            /**
             * @dev Returns the name of the token.
             */
            function name() external view returns (string memory);
            /**
             * @dev Returns the symbol of the token.
             */
            function symbol() external view returns (string memory);
            /**
             * @dev Returns the decimals places of the token.
             */
            function decimals() external view returns (uint8);
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
        pragma solidity ^0.8.0;
        /**
         * @dev Interface of the ERC20 standard as defined in the EIP.
         */
        interface IERC20 {
            /**
             * @dev Emitted when `value` tokens are moved from one account (`from`) to
             * another (`to`).
             *
             * Note that `value` may be zero.
             */
            event Transfer(address indexed from, address indexed to, uint256 value);
            /**
             * @dev Emitted when the allowance of a `spender` for an `owner` is set by
             * a call to {approve}. `value` is the new allowance.
             */
            event Approval(address indexed owner, address indexed spender, uint256 value);
            /**
             * @dev Returns the amount of tokens in existence.
             */
            function totalSupply() external view returns (uint256);
            /**
             * @dev Returns the amount of tokens owned by `account`.
             */
            function balanceOf(address account) external view returns (uint256);
            /**
             * @dev Moves `amount` tokens from the caller's account to `to`.
             *
             * Returns a boolean value indicating whether the operation succeeded.
             *
             * Emits a {Transfer} event.
             */
            function transfer(address to, uint256 amount) external returns (bool);
            /**
             * @dev Returns the remaining number of tokens that `spender` will be
             * allowed to spend on behalf of `owner` through {transferFrom}. This is
             * zero by default.
             *
             * This value changes when {approve} or {transferFrom} are called.
             */
            function allowance(address owner, address spender) external view returns (uint256);
            /**
             * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
             *
             * Returns a boolean value indicating whether the operation succeeded.
             *
             * IMPORTANT: Beware that changing an allowance with this method brings the risk
             * that someone may use both the old and the new allowance by unfortunate
             * transaction ordering. One possible solution to mitigate this race
             * condition is to first reduce the spender's allowance to 0 and set the
             * desired value afterwards:
             * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
             *
             * Emits an {Approval} event.
             */
            function approve(address spender, uint256 amount) external returns (bool);
            /**
             * @dev Moves `amount` tokens from `from` to `to` using the
             * allowance mechanism. `amount` is then deducted from the caller's
             * allowance.
             *
             * Returns a boolean value indicating whether the operation succeeded.
             *
             * Emits a {Transfer} event.
             */
            function transferFrom(
                address from,
                address to,
                uint256 amount
            ) external returns (bool);
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
        pragma solidity ^0.8.0;
        /**
         * @dev Provides information about the current execution context, including the
         * sender of the transaction and its data. While these are generally available
         * via msg.sender and msg.data, they should not be accessed in such a direct
         * manner, since when dealing with meta-transactions the account sending and
         * paying for execution may not be the actual sender (as far as an application
         * is concerned).
         *
         * This contract is only required for intermediate, library-like contracts.
         */
        abstract contract Context {
            function _msgSender() internal view virtual returns (address) {
                return msg.sender;
            }
            function _msgData() internal view virtual returns (bytes calldata) {
                return msg.data;
            }
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
        pragma solidity ^0.8.0;
        import "./IERC165.sol";
        /**
         * @dev Implementation of the {IERC165} interface.
         *
         * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
         * for the additional interface id that will be supported. For example:
         *
         * ```solidity
         * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
         *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
         * }
         * ```
         *
         * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
         */
        abstract contract ERC165 is IERC165 {
            /**
             * @dev See {IERC165-supportsInterface}.
             */
            function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
                return interfaceId == type(IERC165).interfaceId;
            }
        }
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
        pragma solidity ^0.8.0;
        /**
         * @dev Interface of the ERC165 standard, as defined in the
         * https://eips.ethereum.org/EIPS/eip-165[EIP].
         *
         * Implementers can declare support of contract interfaces, which can then be
         * queried by others ({ERC165Checker}).
         *
         * For an implementation, see {ERC165}.
         */
        interface IERC165 {
            /**
             * @dev Returns true if this contract implements the interface defined by
             * `interfaceId`. See the corresponding
             * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
             * to learn more about how these ids are created.
             *
             * This function call must use less than 30 000 gas.
             */
            function supportsInterface(bytes4 interfaceId) external view returns (bool);
        }
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        import "@layerzerolabs/solidity-examples/contracts/token/oft/extension/GlobalCappedOFT.sol";
        /**
         * @notice Use this contract only on the BASE CHAIN. It locks tokens on source, on outgoing send(), and unlocks tokens when receiving from other chains.
         */
        contract WagmiToken is GlobalCappedOFT {
            uint256 public constant GLOBAL_MAX_TOTAL_SUPPLY = 4_761_000_000 ether;
            constructor(
                address _lzEndpoint
            ) GlobalCappedOFT("Wagmi", "WAGMI", GLOBAL_MAX_TOTAL_SUPPLY, _lzEndpoint) {}
            function mint(address _to, uint256 _amount) external onlyOwner {
                _mint(_to, _amount);
            }
        }