Skip to content

Instantly share code, notes, and snippets.

@Dustin4444
Forked from Dustinturner44/WETH9.sol
Created December 8, 2025 01:26
Show Gist options
  • Select an option

  • Save Dustin4444/c04e15f6c8e92ceb69ea7f7243d861a6 to your computer and use it in GitHub Desktop.

Select an option

Save Dustin4444/c04e15f6c8e92ceb69ea7f7243d861a6 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=undefined&runs=undefined&gist=
{
"id": "3a5c64045e231a34a9e419bf73597590",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.4.26",
"solcLongVersion": "0.4.26+commit.4563c3fc",
"input": {
"language": "Solidity",
"sources": {
"WETH9.sol": {
"content": "// Copyright (C) 2015, 2016, 2017 Dapphub\r\n\r\n// This program is free software: you can redistribute it and/or modify\r\n// it under the terms of the GNU General Public License as published by\r\n// the Free Software Foundation, either version 3 of the License, or\r\n// (at your option) any later version.\r\n\r\n// This program is distributed in the hope that it will be useful,\r\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n// GNU General Public License for more details.\r\n\r\n// You should have received a copy of the GNU General Public License\r\n// along with this program. If not, see <http://www.gnu.org/licenses/>.\r\n\r\npragma solidity ^0.4.18;\r\n\r\ncontract WETH9 {\r\n string public name = \"Wrapped Ether\";\r\n string public symbol = \"WETH\";\r\n uint8 public decimals = 18;\r\n\r\n event Approval(address indexed src, address indexed guy, uint wad);\r\n event Transfer(address indexed src, address indexed dst, uint wad);\r\n event Deposit(address indexed dst, uint wad);\r\n event Withdrawal(address indexed src, uint wad);\r\n\r\n mapping (address => uint) public balanceOf;\r\n mapping (address => mapping (address => uint)) public allowance;\r\n\r\n function() public payable {\r\n deposit();\r\n }\r\n function deposit() public payable {\r\n balanceOf[msg.sender] += msg.value;\r\n Deposit(msg.sender, msg.value);\r\n }\r\n function withdraw(uint wad) public {\r\n require(balanceOf[msg.sender] >= wad);\r\n balanceOf[msg.sender] -= wad;\r\n msg.sender.transfer(wad);\r\n Withdrawal(msg.sender, wad);\r\n }\r\n\r\n function totalSupply() public view returns (uint) {\r\n return this.balance;\r\n }\r\n\r\n function approve(address guy, uint wad) public returns (bool) {\r\n allowance[msg.sender][guy] = wad;\r\n Approval(msg.sender, guy, wad);\r\n return true;\r\n }\r\n\r\n function transfer(address dst, uint wad) public returns (bool) {\r\n return transferFrom(msg.sender, dst, wad);\r\n }\r\n\r\n function transferFrom(address src, address dst, uint wad)\r\n public\r\n returns (bool)\r\n {\r\n require(balanceOf[src] >= wad);\r\n\r\n if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) {\r\n require(allowance[src][msg.sender] >= wad);\r\n allowance[src][msg.sender] -= wad;\r\n }\r\n\r\n balanceOf[src] -= wad;\r\n balanceOf[dst] += wad;\r\n\r\n Transfer(src, dst, wad);\r\n\r\n return true;\r\n }\r\n}\r\n\r\n\r\n/*\r\n GNU GENERAL PUBLIC LICENSE\r\n Version 3, 29 June 2007\r\n\r\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\r\n Everyone is permitted to copy and distribute verbatim copies\r\n of this license document, but changing it is not allowed.\r\n\r\n Preamble\r\n\r\n The GNU General Public License is a free, copyleft license for\r\nsoftware and other kinds of works.\r\n\r\n The licenses for most software and other practical works are designed\r\nto take away your freedom to share and change the works. By contrast,\r\nthe GNU General Public License is intended to guarantee your freedom to\r\nshare and change all versions of a program--to make sure it remains free\r\nsoftware for all its users. We, the Free Software Foundation, use the\r\nGNU General Public License for most of our software; it applies also to\r\nany other work released this way by its authors. You can apply it to\r\nyour programs, too.\r\n\r\n When we speak of free software, we are referring to freedom, not\r\nprice. Our General Public Licenses are designed to make sure that you\r\nhave the freedom to distribute copies of free software (and charge for\r\nthem if you wish), that you receive source code or can get it if you\r\nwant it, that you can change the software or use pieces of it in new\r\nfree programs, and that you know you can do these things.\r\n\r\n To protect your rights, we need to prevent others from denying you\r\nthese rights or asking you to surrender the rights. Therefore, you have\r\ncertain responsibilities if you distribute copies of the software, or if\r\nyou modify it: responsibilities to respect the freedom of others.\r\n\r\n For example, if you distribute copies of such a program, whether\r\ngratis or for a fee, you must pass on to the recipients the same\r\nfreedoms that you received. You must make sure that they, too, receive\r\nor can get the source code. And you must show them these terms so they\r\nknow their rights.\r\n\r\n Developers that use the GNU GPL protect your rights with two steps:\r\n(1) assert copyright on the software, and (2) offer you this License\r\ngiving you legal permission to copy, distribute and/or modify it.\r\n\r\n For the developers' and authors' protection, the GPL clearly explains\r\nthat there is no warranty for this free software. For both users' and\r\nauthors' sake, the GPL requires that modified versions be marked as\r\nchanged, so that their problems will not be attributed erroneously to\r\nauthors of previous versions.\r\n\r\n Some devices are designed to deny users access to install or run\r\nmodified versions of the software inside them, although the manufacturer\r\ncan do so. This is fundamentally incompatible with the aim of\r\nprotecting users' freedom to change the software. The systematic\r\npattern of such abuse occurs in the area of products for individuals to\r\nuse, which is precisely where it is most unacceptable. Therefore, we\r\nhave designed this version of the GPL to prohibit the practice for those\r\nproducts. If such problems arise substantially in other domains, we\r\nstand ready to extend this provision to those domains in future versions\r\nof the GPL, as needed to protect the freedom of users.\r\n\r\n Finally, every program is threatened constantly by software patents.\r\nStates should not allow patents to restrict development and use of\r\nsoftware on general-purpose computers, but in those that do, we wish to\r\navoid the special danger that patents applied to a free program could\r\nmake it effectively proprietary. To prevent this, the GPL assures that\r\npatents cannot be used to render the program non-free.\r\n\r\n The precise terms and conditions for copying, distribution and\r\nmodification follow.\r\n\r\n TERMS AND CONDITIONS\r\n\r\n 0. Definitions.\r\n\r\n \"This License\" refers to version 3 of the GNU General Public License.\r\n\r\n \"Copyright\" also means copyright-like laws that apply to other kinds of\r\nworks, such as semiconductor masks.\r\n\r\n \"The Program\" refers to any copyrightable work licensed under this\r\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\r\n\"recipients\" may be individuals or organizations.\r\n\r\n To \"modify\" a work means to copy from or adapt all or part of the work\r\nin a fashion requiring copyright permission, other than the making of an\r\nexact copy. The resulting work is called a \"modified version\" of the\r\nearlier work or a work \"based on\" the earlier work.\r\n\r\n A \"covered work\" means either the unmodified Program or a work based\r\non the Program.\r\n\r\n To \"propagate\" a work means to do anything with it that, without\r\npermission, would make you directly or secondarily liable for\r\ninfringement under applicable copyright law, except executing it on a\r\ncomputer or modifying a private copy. Propagation includes copying,\r\ndistribution (with or without modification), making available to the\r\npublic, and in some countries other activities as well.\r\n\r\n To \"convey\" a work means any kind of propagation that enables other\r\nparties to make or receive copies. Mere interaction with a user through\r\na computer network, with no transfer of a copy, is not conveying.\r\n\r\n An interactive user interface displays \"Appropriate Legal Notices\"\r\nto the extent that it includes a convenient and prominently visible\r\nfeature that (1) displays an appropriate copyright notice, and (2)\r\ntells the user that there is no warranty for the work (except to the\r\nextent that warranties are provided), that licensees may convey the\r\nwork under this License, and how to view a copy of this License. If\r\nthe interface presents a list of user commands or options, such as a\r\nmenu, a prominent item in the list meets this criterion.\r\n\r\n 1. Source Code.\r\n\r\n The \"source code\" for a work means the preferred form of the work\r\nfor making modifications to it. \"Object code\" means any non-source\r\nform of a work.\r\n\r\n A \"Standard Interface\" means an interface that either is an official\r\nstandard defined by a recognized standards body, or, in the case of\r\ninterfaces specified for a particular programming language, one that\r\nis widely used among developers working in that language.\r\n\r\n The \"System Libraries\" of an executable work include anything, other\r\nthan the work as a whole, that (a) is included in the normal form of\r\npackaging a Major Component, but which is not part of that Major\r\nComponent, and (b) serves only to enable use of the work with that\r\nMajor Component, or to implement a Standard Interface for which an\r\nimplementation is available to the public in source code form. A\r\n\"Major Component\", in this context, means a major essential component\r\n(kernel, window system, and so on) of the specific operating system\r\n(if any) on which the executable work runs, or a compiler used to\r\nproduce the work, or an object code interpreter used to run it.\r\n\r\n The \"Corresponding Source\" for a work in object code form means all\r\nthe source code needed to generate, install, and (for an executable\r\nwork) run the object code and to modify the work, including scripts to\r\ncontrol those activities. However, it does not include the work's\r\nSystem Libraries, or general-purpose tools or generally available free\r\nprograms which are used unmodified in performing those activities but\r\nwhich are not part of the work. For example, Corresponding Source\r\nincludes interface definition files associated with source files for\r\nthe work, and the source code for shared libraries and dynamically\r\nlinked subprograms that the work is specifically designed to require,\r\nsuch as by intimate data communication or control flow between those\r\nsubprograms and other parts of the work.\r\n\r\n The Corresponding Source need not include anything that users\r\ncan regenerate automatically from other parts of the Corresponding\r\nSource.\r\n\r\n The Corresponding Source for a work in source code form is that\r\nsame work.\r\n\r\n 2. Basic Permissions.\r\n\r\n All rights granted under this License are granted for the term of\r\ncopyright on the Program, and are irrevocable provided the stated\r\nconditions are met. This License explicitly affirms your unlimited\r\npermission to run the unmodified Program. The output from running a\r\ncovered work is covered by this License only if the output, given its\r\ncontent, constitutes a covered work. This License acknowledges your\r\nrights of fair use or other equivalent, as provided by copyright law.\r\n\r\n You may make, run and propagate covered works that you do not\r\nconvey, without conditions so long as your license otherwise remains\r\nin force. You may convey covered works to others for the sole purpose\r\nof having them make modifications exclusively for you, or provide you\r\nwith facilities for running those works, provided that you comply with\r\nthe terms of this License in conveying all material for which you do\r\nnot control copyright. Those thus making or running the covered works\r\nfor you must do so exclusively on your behalf, under your direction\r\nand control, on terms that prohibit them from making any copies of\r\nyour copyrighted material outside their relationship with you.\r\n\r\n Conveying under any other circumstances is permitted solely under\r\nthe conditions stated below. Sublicensing is not allowed; section 10\r\nmakes it unnecessary.\r\n\r\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\r\n\r\n No covered work shall be deemed part of an effective technological\r\nmeasure under any applicable law fulfilling obligations under article\r\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\r\nsimilar laws prohibiting or restricting circumvention of such\r\nmeasures.\r\n\r\n When you convey a covered work, you waive any legal power to forbid\r\ncircumvention of technological measures to the extent such circumvention\r\nis effected by exercising rights under this License with respect to\r\nthe covered work, and you disclaim any intention to limit operation or\r\nmodification of the work as a means of enforcing, against the work's\r\nusers, your or third parties' legal rights to forbid circumvention of\r\ntechnological measures.\r\n\r\n 4. Conveying Verbatim Copies.\r\n\r\n You may convey verbatim copies of the Program's source code as you\r\nreceive it, in any medium, provided that you conspicuously and\r\nappropriately publish on each copy an appropriate copyright notice;\r\nkeep intact all notices stating that this License and any\r\nnon-permissive terms added in accord with section 7 apply to the code;\r\nkeep intact all notices of the absence of any warranty; and give all\r\nrecipients a copy of this License along with the Program.\r\n\r\n You may charge any price or no price for each copy that you convey,\r\nand you may offer support or warranty protection for a fee.\r\n\r\n 5. Conveying Modified Source Versions.\r\n\r\n You may convey a work based on the Program, or the modifications to\r\nproduce it from the Program, in the form of source code under the\r\nterms of section 4, provided that you also meet all of these conditions:\r\n\r\n a) The work must carry prominent notices stating that you modified\r\n it, and giving a relevant date.\r\n\r\n b) The work must carry prominent notices stating that it is\r\n released under this License and any conditions added under section\r\n 7. This requirement modifies the requirement in section 4 to\r\n \"keep intact all notices\".\r\n\r\n c) You must license the entire work, as a whole, under this\r\n License to anyone who comes into possession of a copy. This\r\n License will therefore apply, along with any applicable section 7\r\n additional terms, to the whole of the work, and all its parts,\r\n regardless of how they are packaged. This License gives no\r\n permission to license the work in any other way, but it does not\r\n invalidate such permission if you have separately received it.\r\n\r\n d) If the work has interactive user interfaces, each must display\r\n Appropriate Legal Notices; however, if the Program has interactive\r\n interfaces that do not display Appropriate Legal Notices, your\r\n work need not make them do so.\r\n\r\n A compilation of a covered work with other separate and independent\r\nworks, which are not by their nature extensions of the covered work,\r\nand which are not combined with it such as to form a larger program,\r\nin or on a volume of a storage or distribution medium, is called an\r\n\"aggregate\" if the compilation and its resulting copyright are not\r\nused to limit the access or legal rights of the compilation's users\r\nbeyond what the individual works permit. Inclusion of a covered work\r\nin an aggregate does not cause this License to apply to the other\r\nparts of the aggregate.\r\n\r\n 6. Conveying Non-Source Forms.\r\n\r\n You may convey a covered work in object code form under the terms\r\nof sections 4 and 5, provided that you also convey the\r\nmachine-readable Corresponding Source under the terms of this License,\r\nin one of these ways:\r\n\r\n a) Convey the object code in, or embodied in, a physical product\r\n (including a physical distribution medium), accompanied by the\r\n Corresponding Source fixed on a durable physical medium\r\n customarily used for software interchange.\r\n\r\n b) Convey the object code in, or embodied in, a physical product\r\n (including a physical distribution medium), accompanied by a\r\n written offer, valid for at least three years and valid for as\r\n long as you offer spare parts or customer support for that product\r\n model, to give anyone who possesses the object code either (1) a\r\n copy of the Corresponding Source for all the software in the\r\n product that is covered by this License, on a durable physical\r\n medium customarily used for software interchange, for a price no\r\n more than your reasonable cost of physically performing this\r\n conveying of source, or (2) access to copy the\r\n Corresponding Source from a network server at no charge.\r\n\r\n c) Convey individual copies of the object code with a copy of the\r\n written offer to provide the Corresponding Source. This\r\n alternative is allowed only occasionally and noncommercially, and\r\n only if you received the object code with such an offer, in accord\r\n with subsection 6b.\r\n\r\n d) Convey the object code by offering access from a designated\r\n place (gratis or for a charge), and offer equivalent access to the\r\n Corresponding Source in the same way through the same place at no\r\n further charge. You need not require recipients to copy the\r\n Corresponding Source along with the object code. If the place to\r\n copy the object code is a network server, the Corresponding Source\r\n may be on a different server (operated by you or a third party)\r\n that supports equivalent copying facilities, provided you maintain\r\n clear directions next to the object code saying where to find the\r\n Corresponding Source. Regardless of what server hosts the\r\n Corresponding Source, you remain obligated to ensure that it is\r\n available for as long as needed to satisfy these requirements.\r\n\r\n e) Convey the object code using peer-to-peer transmission, provided\r\n you inform other peers where the object code and Corresponding\r\n Source of the work are being offered to the general public at no\r\n charge under subsection 6d.\r\n\r\n A separable portion of the object code, whose source code is excluded\r\nfrom the Corresponding Source as a System Library, need not be\r\nincluded in conveying the object code work.\r\n\r\n A \"User Product\" is either (1) a \"consumer product\", which means any\r\ntangible personal property which is normally used for personal, family,\r\nor household purposes, or (2) anything designed or sold for incorporation\r\ninto a dwelling. In determining whether a product is a consumer product,\r\ndoubtful cases shall be resolved in favor of coverage. For a particular\r\nproduct received by a particular user, \"normally used\" refers to a\r\ntypical or common use of that class of product, regardless of the status\r\nof the particular user or of the way in which the particular user\r\nactually uses, or expects or is expected to use, the product. A product\r\nis a consumer product regardless of whether the product has substantial\r\ncommercial, industrial or non-consumer uses, unless such uses represent\r\nthe only significant mode of use of the product.\r\n\r\n \"Installation Information\" for a User Product means any methods,\r\nprocedures, authorization keys, or other information required to install\r\nand execute modified versions of a covered work in that User Product from\r\na modified version of its Corresponding Source. The information must\r\nsuffice to ensure that the continued functioning of the modified object\r\ncode is in no case prevented or interfered with solely because\r\nmodification has been made.\r\n\r\n If you convey an object code work under this section in, or with, or\r\nspecifically for use in, a User Product, and the conveying occurs as\r\npart of a transaction in which the right of possession and use of the\r\nUser Product is transferred to the recipient in perpetuity or for a\r\nfixed term (regardless of how the transaction is characterized), the\r\nCorresponding Source conveyed under this section must be accompanied\r\nby the Installation Information. But this requirement does not apply\r\nif neither you nor any third party retains the ability to install\r\nmodified object code on the User Product (for example, the work has\r\nbeen installed in ROM).\r\n\r\n The requirement to provide Installation Information does not include a\r\nrequirement to continue to provide support service, warranty, or updates\r\nfor a work that has been modified or installed by the recipient, or for\r\nthe User Product in which it has been modified or installed. Access to a\r\nnetwork may be denied when the modification itself materially and\r\nadversely affects the operation of the network or violates the rules and\r\nprotocols for communication across the network.\r\n\r\n Corresponding Source conveyed, and Installation Information provided,\r\nin accord with this section must be in a format that is publicly\r\ndocumented (and with an implementation available to the public in\r\nsource code form), and must require no special password or key for\r\nunpacking, reading or copying.\r\n\r\n 7. Additional Terms.\r\n\r\n \"Additional permissions\" are terms that supplement the terms of this\r\nLicense by making exceptions from one or more of its conditions.\r\nAdditional permissions that are applicable to the entire Program shall\r\nbe treated as though they were included in this License, to the extent\r\nthat they are valid under applicable law. If additional permissions\r\napply only to part of the Program, that part may be used separately\r\nunder those permissions, but the entire Program remains governed by\r\nthis License without regard to the additional permissions.\r\n\r\n When you convey a copy of a covered work, you may at your option\r\nremove any additional permissions from that copy, or from any part of\r\nit. (Additional permissions may be written to require their own\r\nremoval in certain cases when you modify the work.) You may place\r\nadditional permissions on material, added by you to a covered work,\r\nfor which you have or can give appropriate copyright permission.\r\n\r\n Notwithstanding any other provision of this License, for material you\r\nadd to a covered work, you may (if authorized by the copyright holders of\r\nthat material) supplement the terms of this License with terms:\r\n\r\n a) Disclaiming warranty or limiting liability differently from the\r\n terms of sections 15 and 16 of this License; or\r\n\r\n b) Requiring preservation of specified reasonable legal notices or\r\n author attributions in that material or in the Appropriate Legal\r\n Notices displayed by works containing it; or\r\n\r\n c) Prohibiting misrepresentation of the origin of that material, or\r\n requiring that modified versions of such material be marked in\r\n reasonable ways as different from the original version; or\r\n\r\n d) Limiting the use for publicity purposes of names of licensors or\r\n authors of the material; or\r\n\r\n e) Declining to grant rights under trademark law for use of some\r\n trade names, trademarks, or service marks; or\r\n\r\n f) Requiring indemnification of licensors and authors of that\r\n material by anyone who conveys the material (or modified versions of\r\n it) with contractual assumptions of liability to the recipient, for\r\n any liability that these contractual assumptions directly impose on\r\n those licensors and authors.\r\n\r\n All other non-permissive additional terms are considered \"further\r\nrestrictions\" within the meaning of section 10. If the Program as you\r\nreceived it, or any part of it, contains a notice stating that it is\r\ngoverned by this License along with a term that is a further\r\nrestriction, you may remove that term. If a license document contains\r\na further restriction but permits relicensing or conveying under this\r\nLicense, you may add to a covered work material governed by the terms\r\nof that license document, provided that the further restriction does\r\nnot survive such relicensing or conveying.\r\n\r\n If you add terms to a covered work in accord with this section, you\r\nmust place, in the relevant source files, a statement of the\r\nadditional terms that apply to those files, or a notice indicating\r\nwhere to find the applicable terms.\r\n\r\n Additional terms, permissive or non-permissive, may be stated in the\r\nform of a separately written license, or stated as exceptions;\r\nthe above requirements apply either way.\r\n\r\n 8. Termination.\r\n\r\n You may not propagate or modify a covered work except as expressly\r\nprovided under this License. Any attempt otherwise to propagate or\r\nmodify it is void, and will automatically terminate your rights under\r\nthis License (including any patent licenses granted under the third\r\nparagraph of section 11).\r\n\r\n However, if you cease all violation of this License, then your\r\nlicense from a particular copyright holder is reinstated (a)\r\nprovisionally, unless and until the copyright holder explicitly and\r\nfinally terminates your license, and (b) permanently, if the copyright\r\nholder fails to notify you of the violation by some reasonable means\r\nprior to 60 days after the cessation.\r\n\r\n Moreover, your license from a particular copyright holder is\r\nreinstated permanently if the copyright holder notifies you of the\r\nviolation by some reasonable means, this is the first time you have\r\nreceived notice of violation of this License (for any work) from that\r\ncopyright holder, and you cure the violation prior to 30 days after\r\nyour receipt of the notice.\r\n\r\n Termination of your rights under this section does not terminate the\r\nlicenses of parties who have received copies or rights from you under\r\nthis License. If your rights have been terminated and not permanently\r\nreinstated, you do not qualify to receive new licenses for the same\r\nmaterial under section 10.\r\n\r\n 9. Acceptance Not Required for Having Copies.\r\n\r\n You are not required to accept this License in order to receive or\r\nrun a copy of the Program. Ancillary propagation of a covered work\r\noccurring solely as a consequence of using peer-to-peer transmission\r\nto receive a copy likewise does not require acceptance. However,\r\nnothing other than this License grants you permission to propagate or\r\nmodify any covered work. These actions infringe copyright if you do\r\nnot accept this License. Therefore, by modifying or propagating a\r\ncovered work, you indicate your acceptance of this License to do so.\r\n\r\n 10. Automatic Licensing of Downstream Recipients.\r\n\r\n Each time you convey a covered work, the recipient automatically\r\nreceives a license from the original licensors, to run, modify and\r\npropagate that work, subject to this License. You are not responsible\r\nfor enforcing compliance by third parties with this License.\r\n\r\n An \"entity transaction\" is a transaction transferring control of an\r\norganization, or substantially all assets of one, or subdividing an\r\norganization, or merging organizations. If propagation of a covered\r\nwork results from an entity transaction, each party to that\r\ntransaction who receives a copy of the work also receives whatever\r\nlicenses to the work the party's predecessor in interest had or could\r\ngive under the previous paragraph, plus a right to possession of the\r\nCorresponding Source of the work from the predecessor in interest, if\r\nthe predecessor has it or can get it with reasonable efforts.\r\n\r\n You may not impose any further restrictions on the exercise of the\r\nrights granted or affirmed under this License. For example, you may\r\nnot impose a license fee, royalty, or other charge for exercise of\r\nrights granted under this License, and you may not initiate litigation\r\n(including a cross-claim or counterclaim in a lawsuit) alleging that\r\nany patent claim is infringed by making, using, selling, offering for\r\nsale, or importing the Program or any portion of it.\r\n\r\n 11. Patents.\r\n\r\n A \"contributor\" is a copyright holder who authorizes use under this\r\nLicense of the Program or a work on which the Program is based. The\r\nwork thus licensed is called the contributor's \"contributor version\".\r\n\r\n A contributor's \"essential patent claims\" are all patent claims\r\nowned or controlled by the contributor, whether already acquired or\r\nhereafter acquired, that would be infringed by some manner, permitted\r\nby this License, of making, using, or selling its contributor version,\r\nbut do not include claims that would be infringed only as a\r\nconsequence of further modification of the contributor version. For\r\npurposes of this definition, \"control\" includes the right to grant\r\npatent sublicenses in a manner consistent with the requirements of\r\nthis License.\r\n\r\n Each contributor grants you a non-exclusive, worldwide, royalty-free\r\npatent license under the contributor's essential patent claims, to\r\nmake, use, sell, offer for sale, import and otherwise run, modify and\r\npropagate the contents of its contributor version.\r\n\r\n In the following three paragraphs, a \"patent license\" is any express\r\nagreement or commitment, however denominated, not to enforce a patent\r\n(such as an express permission to practice a patent or covenant not to\r\nsue for patent infringement). To \"grant\" such a patent license to a\r\nparty means to make such an agreement or commitment not to enforce a\r\npatent against the party.\r\n\r\n If you convey a covered work, knowingly relying on a patent license,\r\nand the Corresponding Source of the work is not available for anyone\r\nto copy, free of charge and under the terms of this License, through a\r\npublicly available network server or other readily accessible means,\r\nthen you must either (1) cause the Corresponding Source to be so\r\navailable, or (2) arrange to deprive yourself of the benefit of the\r\npatent license for this particular work, or (3) arrange, in a manner\r\nconsistent with the requirements of this License, to extend the patent\r\nlicense to downstream recipients. \"Knowingly relying\" means you have\r\nactual knowledge that, but for the patent license, your conveying the\r\ncovered work in a country, or your recipient's use of the covered work\r\nin a country, would infringe one or more identifiable patents in that\r\ncountry that you have reason to believe are valid.\r\n\r\n If, pursuant to or in connection with a single transaction or\r\narrangement, you convey, or propagate by procuring conveyance of, a\r\ncovered work, and grant a patent license to some of the parties\r\nreceiving the covered work authorizing them to use, propagate, modify\r\nor convey a specific copy of the covered work, then the patent license\r\nyou grant is automatically extended to all recipients of the covered\r\nwork and works based on it.\r\n\r\n A patent license is \"discriminatory\" if it does not include within\r\nthe scope of its coverage, prohibits the exercise of, or is\r\nconditioned on the non-exercise of one or more of the rights that are\r\nspecifically granted under this License. You may not convey a covered\r\nwork if you are a party to an arrangement with a third party that is\r\nin the business of distributing software, under which you make payment\r\nto the third party based on the extent of your activity of conveying\r\nthe work, and under which the third party grants, to any of the\r\nparties who would receive the covered work from you, a discriminatory\r\npatent license (a) in connection with copies of the covered work\r\nconveyed by you (or copies made from those copies), or (b) primarily\r\nfor and in connection with specific products or compilations that\r\ncontain the covered work, unless you entered into that arrangement,\r\nor that patent license was granted, prior to 28 March 2007.\r\n\r\n Nothing in this License shall be construed as excluding or limiting\r\nany implied license or other defenses to infringement that may\r\notherwise be available to you under applicable patent law.\r\n\r\n 12. No Surrender of Others' Freedom.\r\n\r\n If conditions are imposed on you (whether by court order, agreement or\r\notherwise) that contradict the conditions of this License, they do not\r\nexcuse you from the conditions of this License. If you cannot convey a\r\ncovered work so as to satisfy simultaneously your obligations under this\r\nLicense and any other pertinent obligations, then as a consequence you may\r\nnot convey it at all. For example, if you agree to terms that obligate you\r\nto collect a royalty for further conveying from those to whom you convey\r\nthe Program, the only way you could satisfy both those terms and this\r\nLicense would be to refrain entirely from conveying the Program.\r\n\r\n 13. Use with the GNU Affero General Public License.\r\n\r\n Notwithstanding any other provision of this License, you have\r\npermission to link or combine any covered work with a work licensed\r\nunder version 3 of the GNU Affero General Public License into a single\r\ncombined work, and to convey the resulting work. The terms of this\r\nLicense will continue to apply to the part which is the covered work,\r\nbut the special requirements of the GNU Affero General Public License,\r\nsection 13, concerning interaction through a network will apply to the\r\ncombination as such.\r\n\r\n 14. Revised Versions of this License.\r\n\r\n The Free Software Foundation may publish revised and/or new versions of\r\nthe GNU General Public License from time to time. Such new versions will\r\nbe similar in spirit to the present version, but may differ in detail to\r\naddress new problems or concerns.\r\n\r\n Each version is given a distinguishing version number. If the\r\nProgram specifies that a certain numbered version of the GNU General\r\nPublic License \"or any later version\" applies to it, you have the\r\noption of following the terms and conditions either of that numbered\r\nversion or of any later version published by the Free Software\r\nFoundation. If the Program does not specify a version number of the\r\nGNU General Public License, you may choose any version ever published\r\nby the Free Software Foundation.\r\n\r\n If the Program specifies that a proxy can decide which future\r\nversions of the GNU General Public License can be used, that proxy's\r\npublic statement of acceptance of a version permanently authorizes you\r\nto choose that version for the Program.\r\n\r\n Later license versions may give you additional or different\r\npermissions. However, no additional obligations are imposed on any\r\nauthor or copyright holder as a result of your choosing to follow a\r\nlater version.\r\n\r\n 15. Disclaimer of Warranty.\r\n\r\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\r\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\r\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\r\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\r\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\r\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\r\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\r\n\r\n 16. Limitation of Liability.\r\n\r\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\r\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\r\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\r\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\r\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\r\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\r\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\r\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\r\nSUCH DAMAGES.\r\n\r\n 17. Interpretation of Sections 15 and 16.\r\n\r\n If the disclaimer of warranty and limitation of liability provided\r\nabove cannot be given local legal effect according to their terms,\r\nreviewing courts shall apply local law that most closely approximates\r\nan absolute waiver of all civil liability in connection with the\r\nProgram, unless a warranty or assumption of liability accompanies a\r\ncopy of the Program in return for a fee.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n How to Apply These Terms to Your New Programs\r\n\r\n If you develop a new program, and you want it to be of the greatest\r\npossible use to the public, the best way to achieve this is to make it\r\nfree software which everyone can redistribute and change under these terms.\r\n\r\n To do so, attach the following notices to the program. It is safest\r\nto attach them to the start of each source file to most effectively\r\nstate the exclusion of warranty; and each file should have at least\r\nthe \"copyright\" line and a pointer to where the full notice is found.\r\n\r\n <one line to give the program's name and a brief idea of what it does.>\r\n Copyright (C) <year> <name of author>\r\n\r\n This program is free software: you can redistribute it and/or modify\r\n it under the terms of the GNU General Public License as published by\r\n the Free Software Foundation, either version 3 of the License, or\r\n (at your option) any later version.\r\n\r\n This program is distributed in the hope that it will be useful,\r\n but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n GNU General Public License for more details.\r\n\r\n You should have received a copy of the GNU General Public License\r\n along with this program. If not, see <http://www.gnu.org/licenses/>.\r\n\r\nAlso add information on how to contact you by electronic and paper mail.\r\n\r\n If the program does terminal interaction, make it output a short\r\nnotice like this when it starts in an interactive mode:\r\n\r\n <program> Copyright (C) <year> <name of author>\r\n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\r\n This is free software, and you are welcome to redistribute it\r\n under certain conditions; type `show c' for details.\r\n\r\nThe hypothetical commands `show w' and `show c' should show the appropriate\r\nparts of the General Public License. Of course, your program's commands\r\nmight be different; for a GUI interface, you would use an \"about box\".\r\n\r\n You should also get your employer (if you work as a programmer) or school,\r\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\r\nFor more information on this, and how to apply and follow the GNU GPL, see\r\n<http://www.gnu.org/licenses/>.\r\n\r\n The GNU General Public License does not permit incorporating your program\r\ninto proprietary programs. If your program is a subroutine library, you\r\nmay consider it more useful to permit linking proprietary applications with\r\nthe library. If this is what you want to do, use the GNU Lesser General\r\nPublic License instead of this License. But first, please read\r\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\r\n\r\n*/"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"WETH9.sol": {
"WETH9": {
"abi": [
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "guy",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "src",
"type": "address"
},
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "wad",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "decimals",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "symbol",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "deposit",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
},
{
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "guy",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Deposit",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Withdrawal",
"type": "event"
}
],
"devdoc": {
"methods": {}
},
"evm": {
"assembly": " /* \"WETH9.sol\":729:2566 contract WETH9 {\r... */\n mstore(0x40, 0x80)\n /* \"WETH9.sol\":751:791 string public name = \"Wrapped Ether\" */\n 0x40\n dup1\n mload\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n 0xd\n dup2\n mstore\n 0x20\n add\n 0x5772617070656420457468657200000000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x0\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_1\n swap3\n swap2\n swap1\n jump\t// in(tag_2)\ntag_1:\n pop\n /* \"WETH9.sol\":798:829 string public symbol = \"WETH\" */\n 0x40\n dup1\n mload\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n 0x4\n dup2\n mstore\n 0x20\n add\n 0x5745544800000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x1\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_3\n swap3\n swap2\n swap1\n jump\t// in(tag_2)\ntag_3:\n pop\n /* \"WETH9.sol\":861:863 18 */\n 0x12\n /* \"WETH9.sol\":836:863 uint8 public decimals = 18 */\n 0x2\n exp(0x100, 0x0)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"WETH9.sol\":729:2566 contract WETH9 {\r... */\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_4\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\ntag_4:\n /* \"WETH9.sol\":729:2566 contract WETH9 {\r... */\n pop\n jump(tag_5)\ntag_2:\n dup3\n dup1\n sload\n 0x1\n dup2\n 0x1\n and\n iszero\n 0x100\n mul\n sub\n and\n 0x2\n swap1\n div\n swap1\n 0x0\n mstore\n keccak256(0x0, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n 0x1f\n lt\n tag_7\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_6)\ntag_7:\n dup3\n dup1\n add\n 0x1\n add\n dup6\n sstore\n dup3\n iszero\n tag_6\n jumpi\n swap2\n dup3\n add\ntag_8:\n dup3\n dup2\n gt\n iszero\n tag_9\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x1\n add\n swap1\n jump(tag_8)\ntag_9:\ntag_6:\n pop\n swap1\n pop\n tag_10\n swap2\n swap1\n jump\t// in(tag_11)\ntag_10:\n pop\n swap1\n jump\t// out\ntag_11:\n tag_12\n swap2\n swap1\ntag_13:\n dup1\n dup3\n gt\n iszero\n tag_14\n jumpi\n 0x0\n dup2\n 0x0\n swap1\n sstore\n pop\n 0x1\n add\n jump(tag_13)\ntag_14:\n pop\n swap1\n jump\ntag_12:\n swap1\n jump\t// out\ntag_5:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x0\n codecopy\n 0x0\n return\nstop\n\nsub_0: assembly {\n /* \"WETH9.sol\":729:2566 contract WETH9 {\r... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x4))\n calldataload(0x0)\n 0x100000000000000000000000000000000000000000000000000000000\n swap1\n div\n 0xffffffff\n and\n dup1\n 0x6fdde03\n eq\n tag_2\n jumpi\n dup1\n 0x95ea7b3\n eq\n tag_3\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_4\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_5\n jumpi\n dup1\n 0x2e1a7d4d\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n dup1\n 0x70a08231\n eq\n tag_8\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_9\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_10\n jumpi\n dup1\n 0xd0e30db0\n eq\n tag_11\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_12\n jumpi\n tag_1:\n /* \"WETH9.sol\":1312:1321 deposit() */\n tag_15\n /* \"WETH9.sol\":1312:1319 deposit */\n tag_16\n /* \"WETH9.sol\":1312:1321 deposit() */\n jump\t// in\n tag_15:\n /* \"WETH9.sol\":729:2566 contract WETH9 {\r... */\n stop\n /* \"WETH9.sol\":751:791 string public name = \"Wrapped Ether\" */\n tag_2:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_17\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_17:\n /* \"WETH9.sol\":751:791 string public name = \"Wrapped Ether\" */\n pop\n tag_18\n jump(tag_19)\n tag_18:\n mload(0x40)\n dup1\n dup1\n 0x20\n add\n dup3\n dup2\n sub\n dup3\n mstore\n dup4\n dup2\n dup2\n mload\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n dup1\n dup4\n dup4\n /* \"--CODEGEN--\":23:24 */\n 0x0\n /* \"--CODEGEN--\":8:108 */\n tag_20:\n /* \"--CODEGEN--\":33:36 */\n dup4\n /* \"--CODEGEN--\":30:31 */\n dup2\n /* \"--CODEGEN--\":27:37 */\n lt\n /* \"--CODEGEN--\":8:108 */\n iszero\n tag_21\n jumpi\n /* \"--CODEGEN--\":99:100 */\n dup1\n /* \"--CODEGEN--\":94:97 */\n dup3\n /* \"--CODEGEN--\":90:101 */\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":80:81 */\n dup2\n /* \"--CODEGEN--\":75:78 */\n dup5\n /* \"--CODEGEN--\":71:82 */\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":49:50 */\n dup2\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":40:55 */\n swap1\n pop\n /* \"--CODEGEN--\":8:108 */\n jump(tag_20)\n tag_21:\n /* \"--CODEGEN--\":12:26 */\n pop\n /* \"WETH9.sol\":751:791 string public name = \"Wrapped Ether\" */\n pop\n pop\n pop\n swap1\n pop\n swap1\n dup2\n add\n swap1\n 0x1f\n and\n dup1\n iszero\n tag_23\n jumpi\n dup1\n dup3\n sub\n dup1\n mload\n 0x1\n dup4\n 0x20\n sub\n 0x100\n exp\n sub\n not\n and\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n tag_23:\n pop\n swap3\n pop\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1776:1952 function approve(address guy, uint wad) public returns (bool) {\r... */\n tag_3:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_24\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_24:\n /* \"WETH9.sol\":1776:1952 function approve(address guy, uint wad) public returns (bool) {\r... */\n pop\n tag_25\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n dup1\n calldataload\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_26)\n tag_25:\n mload(0x40)\n dup1\n dup3\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1680:1768 function totalSupply() public view returns (uint) {\r... */\n tag_4:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_27\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_27:\n /* \"WETH9.sol\":1680:1768 function totalSupply() public view returns (uint) {\r... */\n pop\n tag_28\n jump(tag_29)\n tag_28:\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":2091:2563 function transferFrom(address src, address dst, uint wad)\r... */\n tag_5:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_30\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_30:\n /* \"WETH9.sol\":2091:2563 function transferFrom(address src, address dst, uint wad)\r... */\n pop\n tag_31\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n dup1\n calldataload\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_32)\n tag_31:\n mload(0x40)\n dup1\n dup3\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1469:1672 function withdraw(uint wad) public {\r... */\n tag_6:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_33\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_33:\n /* \"WETH9.sol\":1469:1672 function withdraw(uint wad) public {\r... */\n pop\n tag_34\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_35)\n tag_34:\n stop\n /* \"WETH9.sol\":836:863 uint8 public decimals = 18 */\n tag_7:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_36\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_36:\n /* \"WETH9.sol\":836:863 uint8 public decimals = 18 */\n pop\n tag_37\n jump(tag_38)\n tag_37:\n mload(0x40)\n dup1\n dup3\n 0xff\n and\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1129:1194 mapping (address => uint) public balanceOf */\n tag_8:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_39\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_39:\n /* \"WETH9.sol\":1129:1194 mapping (address => uint) public balanceOf */\n pop\n tag_40\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_41)\n tag_40:\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":798:829 string public symbol = \"WETH\" */\n tag_9:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_42\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_42:\n /* \"WETH9.sol\":798:829 string public symbol = \"WETH\" */\n pop\n tag_43\n jump(tag_44)\n tag_43:\n mload(0x40)\n dup1\n dup1\n 0x20\n add\n dup3\n dup2\n sub\n dup3\n mstore\n dup4\n dup2\n dup2\n mload\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n dup1\n dup4\n dup4\n /* \"--CODEGEN--\":23:24 */\n 0x0\n /* \"--CODEGEN--\":8:108 */\n tag_45:\n /* \"--CODEGEN--\":33:36 */\n dup4\n /* \"--CODEGEN--\":30:31 */\n dup2\n /* \"--CODEGEN--\":27:37 */\n lt\n /* \"--CODEGEN--\":8:108 */\n iszero\n tag_46\n jumpi\n /* \"--CODEGEN--\":99:100 */\n dup1\n /* \"--CODEGEN--\":94:97 */\n dup3\n /* \"--CODEGEN--\":90:101 */\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":80:81 */\n dup2\n /* \"--CODEGEN--\":75:78 */\n dup5\n /* \"--CODEGEN--\":71:82 */\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":49:50 */\n dup2\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":40:55 */\n swap1\n pop\n /* \"--CODEGEN--\":8:108 */\n jump(tag_45)\n tag_46:\n /* \"--CODEGEN--\":12:26 */\n pop\n /* \"WETH9.sol\":798:829 string public symbol = \"WETH\" */\n pop\n pop\n pop\n swap1\n pop\n swap1\n dup2\n add\n swap1\n 0x1f\n and\n dup1\n iszero\n tag_48\n jumpi\n dup1\n dup3\n sub\n dup1\n mload\n 0x1\n dup4\n 0x20\n sub\n 0x100\n exp\n sub\n not\n and\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n tag_48:\n pop\n swap3\n pop\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1960:2083 function transfer(address dst, uint wad) public returns (bool) {\r... */\n tag_10:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_49\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_49:\n /* \"WETH9.sol\":1960:2083 function transfer(address dst, uint wad) public returns (bool) {\r... */\n pop\n tag_50\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n dup1\n calldataload\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_51)\n tag_50:\n mload(0x40)\n dup1\n dup3\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1335:1463 function deposit() public payable {\r... */\n tag_11:\n tag_52\n jump(tag_16)\n tag_52:\n stop\n /* \"WETH9.sol\":1201:1266 mapping (address => mapping (address => uint)) public allowance */\n tag_12:\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_53\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x0\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_53:\n /* \"WETH9.sol\":1201:1266 mapping (address => mapping (address => uint)) public allowance */\n pop\n tag_54\n 0x4\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n dup1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n dup1\n calldataload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n 0x20\n add\n swap1\n swap3\n swap2\n swap1\n pop\n pop\n pop\n jump(tag_55)\n tag_54:\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"WETH9.sol\":1335:1463 function deposit() public payable {\r... */\n tag_16:\n /* \"WETH9.sol\":1405:1414 msg.value */\n callvalue\n /* \"WETH9.sol\":1380:1389 balanceOf */\n 0x3\n /* \"WETH9.sol\":1380:1401 balanceOf[msg.sender] */\n 0x0\n /* \"WETH9.sol\":1390:1400 msg.sender */\n caller\n /* \"WETH9.sol\":1380:1401 balanceOf[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n 0x0\n /* \"WETH9.sol\":1380:1414 balanceOf[msg.sender] += msg.value */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":1433:1443 msg.sender */\n caller\n /* \"WETH9.sol\":1425:1455 Deposit(msg.sender, msg.value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c\n /* \"WETH9.sol\":1445:1454 msg.value */\n callvalue\n /* \"WETH9.sol\":1425:1455 Deposit(msg.sender, msg.value) */\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log2\n /* \"WETH9.sol\":1335:1463 function deposit() public payable {\r... */\n jump\t// out\n /* \"WETH9.sol\":751:791 string public name = \"Wrapped Ether\" */\n tag_19:\n 0x0\n dup1\n sload\n 0x1\n dup2\n 0x1\n and\n iszero\n 0x100\n mul\n sub\n and\n 0x2\n swap1\n div\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n 0x1\n dup2\n 0x1\n and\n iszero\n 0x100\n mul\n sub\n and\n 0x2\n swap1\n div\n dup1\n iszero\n tag_57\n jumpi\n dup1\n 0x1f\n lt\n tag_58\n jumpi\n 0x100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_57)\n tag_58:\n dup3\n add\n swap2\n swap1\n 0x0\n mstore\n keccak256(0x0, 0x20)\n swap1\n tag_59:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x1\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_59\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_57:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"WETH9.sol\":1776:1952 function approve(address guy, uint wad) public returns (bool) {\r... */\n tag_26:\n /* \"WETH9.sol\":1832:1836 bool */\n 0x0\n /* \"WETH9.sol\":1878:1881 wad */\n dup2\n /* \"WETH9.sol\":1849:1858 allowance */\n 0x4\n /* \"WETH9.sol\":1849:1870 allowance[msg.sender] */\n 0x0\n /* \"WETH9.sol\":1859:1869 msg.sender */\n caller\n /* \"WETH9.sol\":1849:1870 allowance[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n /* \"WETH9.sol\":1849:1875 allowance[msg.sender][guy] */\n 0x0\n /* \"WETH9.sol\":1871:1874 guy */\n dup6\n /* \"WETH9.sol\":1849:1875 allowance[msg.sender][guy] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n /* \"WETH9.sol\":1849:1881 allowance[msg.sender][guy] = wad */\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":1913:1916 guy */\n dup3\n /* \"WETH9.sol\":1892:1922 Approval(msg.sender, guy, wad) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"WETH9.sol\":1901:1911 msg.sender */\n caller\n /* \"WETH9.sol\":1892:1922 Approval(msg.sender, guy, wad) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"WETH9.sol\":1918:1921 wad */\n dup5\n /* \"WETH9.sol\":1892:1922 Approval(msg.sender, guy, wad) */\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"WETH9.sol\":1940:1944 true */\n 0x1\n /* \"WETH9.sol\":1933:1944 return true */\n swap1\n pop\n /* \"WETH9.sol\":1776:1952 function approve(address guy, uint wad) public returns (bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"WETH9.sol\":1680:1768 function totalSupply() public view returns (uint) {\r... */\n tag_29:\n /* \"WETH9.sol\":1724:1728 uint */\n 0x0\n /* \"WETH9.sol\":1748:1752 this */\n address\n /* \"WETH9.sol\":1748:1760 this.balance */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n balance\n /* \"WETH9.sol\":1741:1760 return this.balance */\n swap1\n pop\n /* \"WETH9.sol\":1680:1768 function totalSupply() public view returns (uint) {\r... */\n swap1\n jump\t// out\n /* \"WETH9.sol\":2091:2563 function transferFrom(address src, address dst, uint wad)\r... */\n tag_32:\n /* \"WETH9.sol\":2183:2187 bool */\n 0x0\n /* \"WETH9.sol\":2231:2234 wad */\n dup2\n /* \"WETH9.sol\":2213:2222 balanceOf */\n 0x3\n /* \"WETH9.sol\":2213:2227 balanceOf[src] */\n 0x0\n /* \"WETH9.sol\":2223:2226 src */\n dup7\n /* \"WETH9.sol\":2213:2227 balanceOf[src] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n sload\n /* \"WETH9.sol\":2213:2234 balanceOf[src] >= wad */\n lt\n iszero\n /* \"WETH9.sol\":2205:2235 require(balanceOf[src] >= wad) */\n iszero\n iszero\n tag_63\n jumpi\n 0x0\n dup1\n revert\n tag_63:\n /* \"WETH9.sol\":2259:2269 msg.sender */\n caller\n /* \"WETH9.sol\":2252:2269 src != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"WETH9.sol\":2252:2255 src */\n dup5\n /* \"WETH9.sol\":2252:2269 src != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"WETH9.sol\":2252:2311 src != msg.sender && allowance[src][msg.sender] != uint(-1) */\n dup1\n iszero\n tag_64\n jumpi\n pop\n /* \"WETH9.sol\":2308:2310 -1 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"WETH9.sol\":2273:2282 allowance */\n 0x4\n /* \"WETH9.sol\":2273:2287 allowance[src] */\n 0x0\n /* \"WETH9.sol\":2283:2286 src */\n dup7\n /* \"WETH9.sol\":2273:2287 allowance[src] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n /* \"WETH9.sol\":2273:2299 allowance[src][msg.sender] */\n 0x0\n /* \"WETH9.sol\":2288:2298 msg.sender */\n caller\n /* \"WETH9.sol\":2273:2299 allowance[src][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n sload\n /* \"WETH9.sol\":2273:2311 allowance[src][msg.sender] != uint(-1) */\n eq\n iszero\n /* \"WETH9.sol\":2252:2311 src != msg.sender && allowance[src][msg.sender] != uint(-1) */\n tag_64:\n /* \"WETH9.sol\":2248:2430 if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) {\r... */\n iszero\n tag_65\n jumpi\n /* \"WETH9.sol\":2366:2369 wad */\n dup2\n /* \"WETH9.sol\":2336:2345 allowance */\n 0x4\n /* \"WETH9.sol\":2336:2350 allowance[src] */\n 0x0\n /* \"WETH9.sol\":2346:2349 src */\n dup7\n /* \"WETH9.sol\":2336:2350 allowance[src] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n /* \"WETH9.sol\":2336:2362 allowance[src][msg.sender] */\n 0x0\n /* \"WETH9.sol\":2351:2361 msg.sender */\n caller\n /* \"WETH9.sol\":2336:2362 allowance[src][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n sload\n /* \"WETH9.sol\":2336:2369 allowance[src][msg.sender] >= wad */\n lt\n iszero\n /* \"WETH9.sol\":2328:2370 require(allowance[src][msg.sender] >= wad) */\n iszero\n iszero\n tag_66\n jumpi\n 0x0\n dup1\n revert\n tag_66:\n /* \"WETH9.sol\":2415:2418 wad */\n dup2\n /* \"WETH9.sol\":2385:2394 allowance */\n 0x4\n /* \"WETH9.sol\":2385:2399 allowance[src] */\n 0x0\n /* \"WETH9.sol\":2395:2398 src */\n dup7\n /* \"WETH9.sol\":2385:2399 allowance[src] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n /* \"WETH9.sol\":2385:2411 allowance[src][msg.sender] */\n 0x0\n /* \"WETH9.sol\":2400:2410 msg.sender */\n caller\n /* \"WETH9.sol\":2385:2411 allowance[src][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n 0x0\n /* \"WETH9.sol\":2385:2418 allowance[src][msg.sender] -= wad */\n dup3\n dup3\n sload\n sub\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":2248:2430 if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) {\r... */\n tag_65:\n /* \"WETH9.sol\":2460:2463 wad */\n dup2\n /* \"WETH9.sol\":2442:2451 balanceOf */\n 0x3\n /* \"WETH9.sol\":2442:2456 balanceOf[src] */\n 0x0\n /* \"WETH9.sol\":2452:2455 src */\n dup7\n /* \"WETH9.sol\":2442:2456 balanceOf[src] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n 0x0\n /* \"WETH9.sol\":2442:2463 balanceOf[src] -= wad */\n dup3\n dup3\n sload\n sub\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":2492:2495 wad */\n dup2\n /* \"WETH9.sol\":2474:2483 balanceOf */\n 0x3\n /* \"WETH9.sol\":2474:2488 balanceOf[dst] */\n 0x0\n /* \"WETH9.sol\":2484:2487 dst */\n dup6\n /* \"WETH9.sol\":2474:2488 balanceOf[dst] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n 0x0\n /* \"WETH9.sol\":2474:2495 balanceOf[dst] += wad */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":2522:2525 dst */\n dup3\n /* \"WETH9.sol\":2508:2531 Transfer(src, dst, wad) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"WETH9.sol\":2517:2520 src */\n dup5\n /* \"WETH9.sol\":2508:2531 Transfer(src, dst, wad) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"WETH9.sol\":2527:2530 wad */\n dup5\n /* \"WETH9.sol\":2508:2531 Transfer(src, dst, wad) */\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"WETH9.sol\":2551:2555 true */\n 0x1\n /* \"WETH9.sol\":2544:2555 return true */\n swap1\n pop\n /* \"WETH9.sol\":2091:2563 function transferFrom(address src, address dst, uint wad)\r... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"WETH9.sol\":1469:1672 function withdraw(uint wad) public {\r... */\n tag_35:\n /* \"WETH9.sol\":1548:1551 wad */\n dup1\n /* \"WETH9.sol\":1523:1532 balanceOf */\n 0x3\n /* \"WETH9.sol\":1523:1544 balanceOf[msg.sender] */\n 0x0\n /* \"WETH9.sol\":1533:1543 msg.sender */\n caller\n /* \"WETH9.sol\":1523:1544 balanceOf[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n sload\n /* \"WETH9.sol\":1523:1551 balanceOf[msg.sender] >= wad */\n lt\n iszero\n /* \"WETH9.sol\":1515:1552 require(balanceOf[msg.sender] >= wad) */\n iszero\n iszero\n tag_68\n jumpi\n 0x0\n dup1\n revert\n tag_68:\n /* \"WETH9.sol\":1588:1591 wad */\n dup1\n /* \"WETH9.sol\":1563:1572 balanceOf */\n 0x3\n /* \"WETH9.sol\":1563:1584 balanceOf[msg.sender] */\n 0x0\n /* \"WETH9.sol\":1573:1583 msg.sender */\n caller\n /* \"WETH9.sol\":1563:1584 balanceOf[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x0\n keccak256\n 0x0\n /* \"WETH9.sol\":1563:1591 balanceOf[msg.sender] -= wad */\n dup3\n dup3\n sload\n sub\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"WETH9.sol\":1602:1612 msg.sender */\n caller\n /* \"WETH9.sol\":1602:1621 msg.sender.transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"WETH9.sol\":1602:1626 msg.sender.transfer(wad) */\n 0x8fc\n /* \"WETH9.sol\":1622:1625 wad */\n dup3\n /* \"WETH9.sol\":1602:1626 msg.sender.transfer(wad) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x0\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_69\n jumpi\n /* \"--CODEGEN--\":45:61 */\n returndatasize\n /* \"--CODEGEN--\":42:43 */\n 0x0\n /* \"--CODEGEN--\":39:40 */\n dup1\n /* \"--CODEGEN--\":24:62 */\n returndatacopy\n /* \"--CODEGEN--\":77:93 */\n returndatasize\n /* \"--CODEGEN--\":74:75 */\n 0x0\n /* \"--CODEGEN--\":67:94 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_69:\n /* \"WETH9.sol\":1602:1626 msg.sender.transfer(wad) */\n pop\n /* \"WETH9.sol\":1648:1658 msg.sender */\n caller\n /* \"WETH9.sol\":1637:1664 Withdrawal(msg.sender, wad) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65\n /* \"WETH9.sol\":1660:1663 wad */\n dup3\n /* \"WETH9.sol\":1637:1664 Withdrawal(msg.sender, wad) */\n mload(0x40)\n dup1\n dup3\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log2\n /* \"WETH9.sol\":1469:1672 function withdraw(uint wad) public {\r... */\n pop\n jump\t// out\n /* \"WETH9.sol\":836:863 uint8 public decimals = 18 */\n tag_38:\n 0x2\n 0x0\n swap1\n sload\n swap1\n 0x100\n exp\n swap1\n div\n 0xff\n and\n dup2\n jump\t// out\n /* \"WETH9.sol\":1129:1194 mapping (address => uint) public balanceOf */\n tag_41:\n mstore(0x20, 0x3)\n dup1\n 0x0\n mstore\n keccak256(0x0, 0x40)\n 0x0\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"WETH9.sol\":798:829 string public symbol = \"WETH\" */\n tag_44:\n 0x1\n dup1\n sload\n 0x1\n dup2\n 0x1\n and\n iszero\n 0x100\n mul\n sub\n and\n 0x2\n swap1\n div\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n 0x1\n dup2\n 0x1\n and\n iszero\n 0x100\n mul\n sub\n and\n 0x2\n swap1\n div\n dup1\n iszero\n tag_70\n jumpi\n dup1\n 0x1f\n lt\n tag_71\n jumpi\n 0x100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_70)\n tag_71:\n dup3\n add\n swap2\n swap1\n 0x0\n mstore\n keccak256(0x0, 0x20)\n swap1\n tag_72:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x1\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_72\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_70:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"WETH9.sol\":1960:2083 function transfer(address dst, uint wad) public returns (bool) {\r... */\n tag_51:\n /* \"WETH9.sol\":2017:2021 bool */\n 0x0\n /* \"WETH9.sol\":2041:2075 transferFrom(msg.sender, dst, wad) */\n tag_74\n /* \"WETH9.sol\":2054:2064 msg.sender */\n caller\n /* \"WETH9.sol\":2066:2069 dst */\n dup5\n /* \"WETH9.sol\":2071:2074 wad */\n dup5\n /* \"WETH9.sol\":2041:2053 transferFrom */\n tag_32\n /* \"WETH9.sol\":2041:2075 transferFrom(msg.sender, dst, wad) */\n jump\t// in\n tag_74:\n /* \"WETH9.sol\":2034:2075 return transferFrom(msg.sender, dst, wad) */\n swap1\n pop\n /* \"WETH9.sol\":1960:2083 function transfer(address dst, uint wad) public returns (bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"WETH9.sol\":1201:1266 mapping (address => mapping (address => uint)) public allowance */\n tag_55:\n mstore(0x20, 0x4)\n dup2\n 0x0\n mstore\n mstore(0x20, keccak256(0x0, 0x40))\n dup1\n 0x0\n mstore\n keccak256(0x0, 0x40)\n 0x0\n swap2\n pop\n swap2\n pop\n pop\n sload\n dup2\n jump\t// out\n\n auxdata: 0xa165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029\n}\n",
"bytecode": {
"linkReferences": {},
"object": "60806040526040805190810160405280600d81526020017f57726170706564204574686572000000000000000000000000000000000000008152506000908051906020019061004f9291906100ca565b506040805190810160405280600481526020017f57455448000000000000000000000000000000000000000000000000000000008152506001908051906020019061009b9291906100ca565b506012600260006101000a81548160ff021916908360ff1602179055503480156100c457600080fd5b5061016f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010b57805160ff1916838001178555610139565b82800160010185558215610139579182015b8281111561013857825182559160200191906001019061011d565b5b509050610146919061014a565b5090565b61016c91905b80821115610168576000816000905550600101610150565b5090565b90565b610c848061017e6000396000f3006080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100b9578063095ea7b31461014957806318160ddd146101ae57806323b872dd146101d95780632e1a7d4d1461025e578063313ce5671461028b57806370a08231146102bc57806395d89b4114610313578063a9059cbb146103a3578063d0e30db014610408578063dd62ed3e14610412575b6100b7610489565b005b3480156100c557600080fd5b506100ce610526565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561010e5780820151818401526020810190506100f3565b50505050905090810190601f16801561013b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015557600080fd5b50610194600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c4565b604051808215151515815260200191505060405180910390f35b3480156101ba57600080fd5b506101c36106b6565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610244600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506106d5565b604051808215151515815260200191505060405180910390f35b34801561026a57600080fd5b5061028960048036038101908080359060200190929190505050610a22565b005b34801561029757600080fd5b506102a0610b55565b604051808260ff1660ff16815260200191505060405180910390f35b3480156102c857600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b68565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b50610328610b80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036857808201518184015260208101905061034d565b50505050905090810190601f1680156103955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103af57600080fd5b506103ee600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1e565b604051808215151515815260200191505060405180910390f35b610410610489565b005b34801561041e57600080fd5b50610473600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c33565b6040518082815260200191505060405180910390f35b34600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a2565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561072557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156107fd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b156109185781600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561088d57600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b81600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610a7057600080fd5b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b03573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a250565b600260009054906101000a900460ff1681565b60036020528060005260406000206000915090505481565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c165780601f10610beb57610100808354040283529160200191610c16565b820191906000526020600020905b815481529060010190602001808311610bf957829003601f168201915b505050505081565b6000610c2b3384846106d5565b905092915050565b60046020528160005260406000206020528060005260406000206000915091505054815600a165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5772617070656420457468657200000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4F SWAP3 SWAP2 SWAP1 PUSH2 0xCA JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5745544800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x9B SWAP3 SWAP2 SWAP1 PUSH2 0xCA JUMP JUMPDEST POP PUSH1 0x12 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0xC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16F JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH1 0x1F LT PUSH2 0x10B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x139 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x139 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x138 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x11D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x14A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x16C SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x168 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x150 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0xC84 DUP1 PUSH2 0x17E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN STOP PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xAF JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x412 JUMPI JUMPDEST PUSH2 0xB7 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCE PUSH2 0x526 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF3 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x13B JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x194 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C3 PUSH2 0x6B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x244 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x289 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xA22 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xB55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xB68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0xB80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x368 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x34D JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x395 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x410 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x473 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xE1FFFCC4923D04B559F4D29A8BFC6CDA04EB5B0D3C460751C2402C5C5CC9109C CALLVALUE PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x5BC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x591 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5BC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x59F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x7FD JUMPI POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x918 JUMPI DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x88D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0xA70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x7FCF532C15F0A6DB0BD6D0E038BEA71D30D808C7D98CB3BF7268A95BF5081B65 DUP3 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0xC16 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBEB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC16 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBF9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC2B CALLER DUP5 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP STOP LOG1 PUSH6 0x627A7A723058 KECCAK256 0xd1 MSTORE8 0x5f CREATE2 PUSH18 0xB7F00258566D81FF08490208597367467272 DUP4 0x47 DUP7 0xd 0xeb LT 0xee 0xb9 SWAP15 STOP 0x29 ",
"sourceMap": "729:1837:0:-;;;751:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;798:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;861:2;836:27;;;;;;;;;;;;;;;;;;;;729:1837;8:9:-1;5:2;;;30:1;27;20:12;5:2;729:1837:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"linkReferences": {},
"object": "6080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100b9578063095ea7b31461014957806318160ddd146101ae57806323b872dd146101d95780632e1a7d4d1461025e578063313ce5671461028b57806370a08231146102bc57806395d89b4114610313578063a9059cbb146103a3578063d0e30db014610408578063dd62ed3e14610412575b6100b7610489565b005b3480156100c557600080fd5b506100ce610526565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561010e5780820151818401526020810190506100f3565b50505050905090810190601f16801561013b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015557600080fd5b50610194600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c4565b604051808215151515815260200191505060405180910390f35b3480156101ba57600080fd5b506101c36106b6565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610244600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506106d5565b604051808215151515815260200191505060405180910390f35b34801561026a57600080fd5b5061028960048036038101908080359060200190929190505050610a22565b005b34801561029757600080fd5b506102a0610b55565b604051808260ff1660ff16815260200191505060405180910390f35b3480156102c857600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b68565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b50610328610b80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036857808201518184015260208101905061034d565b50505050905090810190601f1680156103955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103af57600080fd5b506103ee600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1e565b604051808215151515815260200191505060405180910390f35b610410610489565b005b34801561041e57600080fd5b50610473600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c33565b6040518082815260200191505060405180910390f35b34600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a2565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561072557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156107fd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b156109185781600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561088d57600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b81600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610a7057600080fd5b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b03573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a250565b600260009054906101000a900460ff1681565b60036020528060005260406000206000915090505481565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c165780601f10610beb57610100808354040283529160200191610c16565b820191906000526020600020905b815481529060010190602001808311610bf957829003601f168201915b505050505081565b6000610c2b3384846106d5565b905092915050565b60046020528160005260406000206020528060005260406000206000915091505054815600a165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xAF JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x412 JUMPI JUMPDEST PUSH2 0xB7 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCE PUSH2 0x526 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF3 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x13B JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x194 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C3 PUSH2 0x6B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x244 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x289 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xA22 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xB55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xB68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0xB80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x368 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x34D JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x395 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x410 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x473 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xE1FFFCC4923D04B559F4D29A8BFC6CDA04EB5B0D3C460751C2402C5C5CC9109C CALLVALUE PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x5BC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x591 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5BC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x59F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x7FD JUMPI POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x918 JUMPI DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x88D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0xA70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x7FCF532C15F0A6DB0BD6D0E038BEA71D30D808C7D98CB3BF7268A95BF5081B65 DUP3 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0xC16 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBEB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC16 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBF9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC2B CALLER DUP5 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP STOP LOG1 PUSH6 0x627A7A723058 KECCAK256 0xd1 MSTORE8 0x5f CREATE2 PUSH18 0xB7F00258566D81FF08490208597367467272 DUP4 0x47 DUP7 0xd 0xeb LT 0xee 0xb9 SWAP15 STOP 0x29 ",
"sourceMap": "729:1837:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312:9;:7;:9::i;:::-;729:1837;751:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;751:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;751:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1776:176;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1776:176:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1680:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1680:88:0;;;;;;;;;;;;;;;;;;;;;;;2091:472;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2091:472:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1469:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;836:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;836:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1129:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1129:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;798:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;798:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1960:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335:128;;;;;;1201:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1201:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335:128;1405:9;1380;:21;1390:10;1380:21;;;;;;;;;;;;;;;;:34;;;;;;;;;;;1433:10;1425:30;;;1445:9;1425:30;;;;;;;;;;;;;;;;;;1335:128::o;751:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1776:176::-;1832:4;1878:3;1849:9;:21;1859:10;1849:21;;;;;;;;;;;;;;;:26;1871:3;1849:26;;;;;;;;;;;;;;;:32;;;;1913:3;1892:30;;1901:10;1892:30;;;1918:3;1892:30;;;;;;;;;;;;;;;;;;1940:4;1933:11;;1776:176;;;;:::o;1680:88::-;1724:4;1748;:12;;;1741:19;;1680:88;:::o;2091:472::-;2183:4;2231:3;2213:9;:14;2223:3;2213:14;;;;;;;;;;;;;;;;:21;;2205:30;;;;;;;;2259:10;2252:17;;:3;:17;;;;:59;;;;;2308:2;2273:9;:14;2283:3;2273:14;;;;;;;;;;;;;;;:26;2288:10;2273:26;;;;;;;;;;;;;;;;:38;;2252:59;2248:182;;;2366:3;2336:9;:14;2346:3;2336:14;;;;;;;;;;;;;;;:26;2351:10;2336:26;;;;;;;;;;;;;;;;:33;;2328:42;;;;;;;;2415:3;2385:9;:14;2395:3;2385:14;;;;;;;;;;;;;;;:26;2400:10;2385:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;2248:182;2460:3;2442:9;:14;2452:3;2442:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;2492:3;2474:9;:14;2484:3;2474:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;2522:3;2508:23;;2517:3;2508:23;;;2527:3;2508:23;;;;;;;;;;;;;;;;;;2551:4;2544:11;;2091:472;;;;;:::o;1469:203::-;1548:3;1523:9;:21;1533:10;1523:21;;;;;;;;;;;;;;;;:28;;1515:37;;;;;;;;1588:3;1563:9;:21;1573:10;1563:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;1602:10;:19;;:24;1622:3;1602:24;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1602:24:0;1648:10;1637:27;;;1660:3;1637:27;;;;;;;;;;;;;;;;;;1469:203;:::o;836:27::-;;;;;;;;;;;;;:::o;1129:65::-;;;;;;;;;;;;;;;;;:::o;798:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1960:123::-;2017:4;2041:34;2054:10;2066:3;2071;2041:12;:34::i;:::-;2034:41;;1960:123;;;;:::o;1201:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "640800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "22099",
"allowance(address,address)": "850",
"approve(address,uint256)": "22353",
"balanceOf(address)": "664",
"decimals()": "552",
"deposit()": "22077",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "651",
"transfer(address,uint256)": "43395",
"transferFrom(address,address,uint256)": "64484",
"withdraw(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "80"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "40"
},
{
"begin": 729,
"end": 2566,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "D"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "5772617070656420457468657200000000000000000000000000000000000000"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "0"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "SWAP3"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "2"
},
{
"begin": 751,
"end": 791,
"name": "JUMP",
"value": "[in]"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "4"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "5745544800000000000000000000000000000000000000000000000000000000"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "3"
},
{
"begin": 798,
"end": 829,
"name": "SWAP3"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "2"
},
{
"begin": 798,
"end": 829,
"name": "JUMP",
"value": "[in]"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "3"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 861,
"end": 863,
"name": "PUSH",
"value": "12"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "2"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "0"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "100"
},
{
"begin": 836,
"end": 863,
"name": "EXP"
},
{
"begin": 836,
"end": 863,
"name": "DUP2"
},
{
"begin": 836,
"end": 863,
"name": "SLOAD"
},
{
"begin": 836,
"end": 863,
"name": "DUP2"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "FF"
},
{
"begin": 836,
"end": 863,
"name": "MUL"
},
{
"begin": 836,
"end": 863,
"name": "NOT"
},
{
"begin": 836,
"end": 863,
"name": "AND"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "DUP4"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "FF"
},
{
"begin": 836,
"end": 863,
"name": "AND"
},
{
"begin": 836,
"end": 863,
"name": "MUL"
},
{
"begin": 836,
"end": 863,
"name": "OR"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "SSTORE"
},
{
"begin": 836,
"end": 863,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "4"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "4"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "5"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "2"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "SLOAD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "DUP2"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "AND"
},
{
"begin": 729,
"end": 2566,
"name": "ISZERO"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "100"
},
{
"begin": 729,
"end": 2566,
"name": "MUL"
},
{
"begin": 729,
"end": 2566,
"name": "SUB"
},
{
"begin": 729,
"end": 2566,
"name": "AND"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "2"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "DIV"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "MSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "20"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "KECCAK256"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1F"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "20"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "DIV"
},
{
"begin": 729,
"end": 2566,
"name": "DUP2"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP3"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1F"
},
{
"begin": 729,
"end": 2566,
"name": "LT"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "7"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "MLOAD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "FF"
},
{
"begin": 729,
"end": 2566,
"name": "NOT"
},
{
"begin": 729,
"end": 2566,
"name": "AND"
},
{
"begin": 729,
"end": 2566,
"name": "DUP4"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "OR"
},
{
"begin": 729,
"end": 2566,
"name": "DUP6"
},
{
"begin": 729,
"end": 2566,
"name": "SSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "6"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "7"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "DUP6"
},
{
"begin": 729,
"end": 2566,
"name": "SSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "ISZERO"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "6"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP2"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "8"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "DUP2"
},
{
"begin": 729,
"end": 2566,
"name": "GT"
},
{
"begin": 729,
"end": 2566,
"name": "ISZERO"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "9"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "MLOAD"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "SSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP2"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "20"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP2"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "8"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "9"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "6"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "10"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP2"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "11"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP",
"value": "[in]"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "10"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "11"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "12"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP2"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "13"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "DUP3"
},
{
"begin": 729,
"end": 2566,
"name": "GT"
},
{
"begin": 729,
"end": 2566,
"name": "ISZERO"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "14"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "DUP2"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "SSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "ADD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "13"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "14"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "POP"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "12"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "5"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH #[$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "CODECOPY"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "RETURN"
}
],
".data": {
"0": {
".auxdata": "a165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029",
".code": [
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "80"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "40"
},
{
"begin": 729,
"end": 2566,
"name": "MSTORE"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "4"
},
{
"begin": 729,
"end": 2566,
"name": "CALLDATASIZE"
},
{
"begin": 729,
"end": 2566,
"name": "LT"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "0"
},
{
"begin": 729,
"end": 2566,
"name": "CALLDATALOAD"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 729,
"end": 2566,
"name": "SWAP1"
},
{
"begin": 729,
"end": 2566,
"name": "DIV"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "FFFFFFFF"
},
{
"begin": 729,
"end": 2566,
"name": "AND"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "6FDDE03"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "2"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "95EA7B3"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "3"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "18160DDD"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "4"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "23B872DD"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "5"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "2E1A7D4D"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "6"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "313CE567"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "7"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "70A08231"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "8"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "95D89B41"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "9"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "A9059CBB"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "10"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "D0E30DB0"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "11"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "DUP1"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH",
"value": "DD62ED3E"
},
{
"begin": 729,
"end": 2566,
"name": "EQ"
},
{
"begin": 729,
"end": 2566,
"name": "PUSH [tag]",
"value": "12"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPI"
},
{
"begin": 729,
"end": 2566,
"name": "tag",
"value": "1"
},
{
"begin": 729,
"end": 2566,
"name": "JUMPDEST"
},
{
"begin": 1312,
"end": 1321,
"name": "PUSH [tag]",
"value": "15"
},
{
"begin": 1312,
"end": 1319,
"name": "PUSH [tag]",
"value": "16"
},
{
"begin": 1312,
"end": 1321,
"name": "JUMP",
"value": "[in]"
},
{
"begin": 1312,
"end": 1321,
"name": "tag",
"value": "15"
},
{
"begin": 1312,
"end": 1321,
"name": "JUMPDEST"
},
{
"begin": 729,
"end": 2566,
"name": "STOP"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "2"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "17"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "17"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "18"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "19"
},
{
"begin": 751,
"end": 791,
"name": "JUMP"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "18"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 23,
"end": 24,
"name": "PUSH",
"value": "0"
},
{
"begin": 8,
"end": 108,
"name": "tag",
"value": "20"
},
{
"begin": 8,
"end": 108,
"name": "JUMPDEST"
},
{
"begin": 33,
"end": 36,
"name": "DUP4"
},
{
"begin": 30,
"end": 31,
"name": "DUP2"
},
{
"begin": 27,
"end": 37,
"name": "LT"
},
{
"begin": 8,
"end": 108,
"name": "ISZERO"
},
{
"begin": 8,
"end": 108,
"name": "PUSH [tag]",
"value": "21"
},
{
"begin": 8,
"end": 108,
"name": "JUMPI"
},
{
"begin": 99,
"end": 100,
"name": "DUP1"
},
{
"begin": 94,
"end": 97,
"name": "DUP3"
},
{
"begin": 90,
"end": 101,
"name": "ADD"
},
{
"begin": 84,
"end": 102,
"name": "MLOAD"
},
{
"begin": 80,
"end": 81,
"name": "DUP2"
},
{
"begin": 75,
"end": 78,
"name": "DUP5"
},
{
"begin": 71,
"end": 82,
"name": "ADD"
},
{
"begin": 64,
"end": 103,
"name": "MSTORE"
},
{
"begin": 52,
"end": 54,
"name": "PUSH",
"value": "20"
},
{
"begin": 49,
"end": 50,
"name": "DUP2"
},
{
"begin": 45,
"end": 55,
"name": "ADD"
},
{
"begin": 40,
"end": 55,
"name": "SWAP1"
},
{
"begin": 40,
"end": 55,
"name": "POP"
},
{
"begin": 8,
"end": 108,
"name": "PUSH [tag]",
"value": "20"
},
{
"begin": 8,
"end": 108,
"name": "JUMP"
},
{
"begin": 8,
"end": 108,
"name": "tag",
"value": "21"
},
{
"begin": 8,
"end": 108,
"name": "JUMPDEST"
},
{
"begin": 12,
"end": 26,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1F"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "ISZERO"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "23"
},
{
"begin": 751,
"end": 791,
"name": "JUMPI"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "100"
},
{
"begin": 751,
"end": 791,
"name": "EXP"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "NOT"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "23"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "SWAP3"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "RETURN"
},
{
"begin": 1776,
"end": 1952,
"name": "tag",
"value": "3"
},
{
"begin": 1776,
"end": 1952,
"name": "JUMPDEST"
},
{
"begin": 1776,
"end": 1952,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "24"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "24"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH [tag]",
"value": "25"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "4"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "CALLDATASIZE"
},
{
"begin": 1776,
"end": 1952,
"name": "SUB"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP2"
},
{
"begin": 1776,
"end": 1952,
"name": "ADD"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "CALLDATALOAD"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1776,
"end": 1952,
"name": "AND"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "20"
},
{
"begin": 1776,
"end": 1952,
"name": "ADD"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP3"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP2"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "CALLDATALOAD"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "20"
},
{
"begin": 1776,
"end": 1952,
"name": "ADD"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP3"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP2"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH [tag]",
"value": "26"
},
{
"begin": 1776,
"end": 1952,
"name": "JUMP"
},
{
"begin": 1776,
"end": 1952,
"name": "tag",
"value": "25"
},
{
"begin": 1776,
"end": 1952,
"name": "JUMPDEST"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "40"
},
{
"begin": 1776,
"end": 1952,
"name": "MLOAD"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP3"
},
{
"begin": 1776,
"end": 1952,
"name": "ISZERO"
},
{
"begin": 1776,
"end": 1952,
"name": "ISZERO"
},
{
"begin": 1776,
"end": 1952,
"name": "ISZERO"
},
{
"begin": 1776,
"end": 1952,
"name": "ISZERO"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP2"
},
{
"begin": 1776,
"end": 1952,
"name": "MSTORE"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "20"
},
{
"begin": 1776,
"end": 1952,
"name": "ADD"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP2"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "PUSH",
"value": "40"
},
{
"begin": 1776,
"end": 1952,
"name": "MLOAD"
},
{
"begin": 1776,
"end": 1952,
"name": "DUP1"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP2"
},
{
"begin": 1776,
"end": 1952,
"name": "SUB"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP1"
},
{
"begin": 1776,
"end": 1952,
"name": "RETURN"
},
{
"begin": 1680,
"end": 1768,
"name": "tag",
"value": "4"
},
{
"begin": 1680,
"end": 1768,
"name": "JUMPDEST"
},
{
"begin": 1680,
"end": 1768,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "27"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "27"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1680,
"end": 1768,
"name": "POP"
},
{
"begin": 1680,
"end": 1768,
"name": "PUSH [tag]",
"value": "28"
},
{
"begin": 1680,
"end": 1768,
"name": "PUSH [tag]",
"value": "29"
},
{
"begin": 1680,
"end": 1768,
"name": "JUMP"
},
{
"begin": 1680,
"end": 1768,
"name": "tag",
"value": "28"
},
{
"begin": 1680,
"end": 1768,
"name": "JUMPDEST"
},
{
"begin": 1680,
"end": 1768,
"name": "PUSH",
"value": "40"
},
{
"begin": 1680,
"end": 1768,
"name": "MLOAD"
},
{
"begin": 1680,
"end": 1768,
"name": "DUP1"
},
{
"begin": 1680,
"end": 1768,
"name": "DUP3"
},
{
"begin": 1680,
"end": 1768,
"name": "DUP2"
},
{
"begin": 1680,
"end": 1768,
"name": "MSTORE"
},
{
"begin": 1680,
"end": 1768,
"name": "PUSH",
"value": "20"
},
{
"begin": 1680,
"end": 1768,
"name": "ADD"
},
{
"begin": 1680,
"end": 1768,
"name": "SWAP2"
},
{
"begin": 1680,
"end": 1768,
"name": "POP"
},
{
"begin": 1680,
"end": 1768,
"name": "POP"
},
{
"begin": 1680,
"end": 1768,
"name": "PUSH",
"value": "40"
},
{
"begin": 1680,
"end": 1768,
"name": "MLOAD"
},
{
"begin": 1680,
"end": 1768,
"name": "DUP1"
},
{
"begin": 1680,
"end": 1768,
"name": "SWAP2"
},
{
"begin": 1680,
"end": 1768,
"name": "SUB"
},
{
"begin": 1680,
"end": 1768,
"name": "SWAP1"
},
{
"begin": 1680,
"end": 1768,
"name": "RETURN"
},
{
"begin": 2091,
"end": 2563,
"name": "tag",
"value": "5"
},
{
"begin": 2091,
"end": 2563,
"name": "JUMPDEST"
},
{
"begin": 2091,
"end": 2563,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "30"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "30"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH [tag]",
"value": "31"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "4"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "CALLDATASIZE"
},
{
"begin": 2091,
"end": 2563,
"name": "SUB"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP2"
},
{
"begin": 2091,
"end": 2563,
"name": "ADD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "CALLDATALOAD"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2091,
"end": 2563,
"name": "AND"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "20"
},
{
"begin": 2091,
"end": 2563,
"name": "ADD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP3"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP2"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "CALLDATALOAD"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2091,
"end": 2563,
"name": "AND"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "20"
},
{
"begin": 2091,
"end": 2563,
"name": "ADD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP3"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP2"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "CALLDATALOAD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "20"
},
{
"begin": 2091,
"end": 2563,
"name": "ADD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP3"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP2"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH [tag]",
"value": "32"
},
{
"begin": 2091,
"end": 2563,
"name": "JUMP"
},
{
"begin": 2091,
"end": 2563,
"name": "tag",
"value": "31"
},
{
"begin": 2091,
"end": 2563,
"name": "JUMPDEST"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "40"
},
{
"begin": 2091,
"end": 2563,
"name": "MLOAD"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP3"
},
{
"begin": 2091,
"end": 2563,
"name": "ISZERO"
},
{
"begin": 2091,
"end": 2563,
"name": "ISZERO"
},
{
"begin": 2091,
"end": 2563,
"name": "ISZERO"
},
{
"begin": 2091,
"end": 2563,
"name": "ISZERO"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP2"
},
{
"begin": 2091,
"end": 2563,
"name": "MSTORE"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "20"
},
{
"begin": 2091,
"end": 2563,
"name": "ADD"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP2"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "PUSH",
"value": "40"
},
{
"begin": 2091,
"end": 2563,
"name": "MLOAD"
},
{
"begin": 2091,
"end": 2563,
"name": "DUP1"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP2"
},
{
"begin": 2091,
"end": 2563,
"name": "SUB"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP1"
},
{
"begin": 2091,
"end": 2563,
"name": "RETURN"
},
{
"begin": 1469,
"end": 1672,
"name": "tag",
"value": "6"
},
{
"begin": 1469,
"end": 1672,
"name": "JUMPDEST"
},
{
"begin": 1469,
"end": 1672,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "33"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "33"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1469,
"end": 1672,
"name": "POP"
},
{
"begin": 1469,
"end": 1672,
"name": "PUSH [tag]",
"value": "34"
},
{
"begin": 1469,
"end": 1672,
"name": "PUSH",
"value": "4"
},
{
"begin": 1469,
"end": 1672,
"name": "DUP1"
},
{
"begin": 1469,
"end": 1672,
"name": "CALLDATASIZE"
},
{
"begin": 1469,
"end": 1672,
"name": "SUB"
},
{
"begin": 1469,
"end": 1672,
"name": "DUP2"
},
{
"begin": 1469,
"end": 1672,
"name": "ADD"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP1"
},
{
"begin": 1469,
"end": 1672,
"name": "DUP1"
},
{
"begin": 1469,
"end": 1672,
"name": "DUP1"
},
{
"begin": 1469,
"end": 1672,
"name": "CALLDATALOAD"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP1"
},
{
"begin": 1469,
"end": 1672,
"name": "PUSH",
"value": "20"
},
{
"begin": 1469,
"end": 1672,
"name": "ADD"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP1"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP3"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP2"
},
{
"begin": 1469,
"end": 1672,
"name": "SWAP1"
},
{
"begin": 1469,
"end": 1672,
"name": "POP"
},
{
"begin": 1469,
"end": 1672,
"name": "POP"
},
{
"begin": 1469,
"end": 1672,
"name": "POP"
},
{
"begin": 1469,
"end": 1672,
"name": "PUSH [tag]",
"value": "35"
},
{
"begin": 1469,
"end": 1672,
"name": "JUMP"
},
{
"begin": 1469,
"end": 1672,
"name": "tag",
"value": "34"
},
{
"begin": 1469,
"end": 1672,
"name": "JUMPDEST"
},
{
"begin": 1469,
"end": 1672,
"name": "STOP"
},
{
"begin": 836,
"end": 863,
"name": "tag",
"value": "7"
},
{
"begin": 836,
"end": 863,
"name": "JUMPDEST"
},
{
"begin": 836,
"end": 863,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "36"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "36"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 836,
"end": 863,
"name": "POP"
},
{
"begin": 836,
"end": 863,
"name": "PUSH [tag]",
"value": "37"
},
{
"begin": 836,
"end": 863,
"name": "PUSH [tag]",
"value": "38"
},
{
"begin": 836,
"end": 863,
"name": "JUMP"
},
{
"begin": 836,
"end": 863,
"name": "tag",
"value": "37"
},
{
"begin": 836,
"end": 863,
"name": "JUMPDEST"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "40"
},
{
"begin": 836,
"end": 863,
"name": "MLOAD"
},
{
"begin": 836,
"end": 863,
"name": "DUP1"
},
{
"begin": 836,
"end": 863,
"name": "DUP3"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "FF"
},
{
"begin": 836,
"end": 863,
"name": "AND"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "FF"
},
{
"begin": 836,
"end": 863,
"name": "AND"
},
{
"begin": 836,
"end": 863,
"name": "DUP2"
},
{
"begin": 836,
"end": 863,
"name": "MSTORE"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "20"
},
{
"begin": 836,
"end": 863,
"name": "ADD"
},
{
"begin": 836,
"end": 863,
"name": "SWAP2"
},
{
"begin": 836,
"end": 863,
"name": "POP"
},
{
"begin": 836,
"end": 863,
"name": "POP"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "40"
},
{
"begin": 836,
"end": 863,
"name": "MLOAD"
},
{
"begin": 836,
"end": 863,
"name": "DUP1"
},
{
"begin": 836,
"end": 863,
"name": "SWAP2"
},
{
"begin": 836,
"end": 863,
"name": "SUB"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "RETURN"
},
{
"begin": 1129,
"end": 1194,
"name": "tag",
"value": "8"
},
{
"begin": 1129,
"end": 1194,
"name": "JUMPDEST"
},
{
"begin": 1129,
"end": 1194,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "39"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "39"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH [tag]",
"value": "40"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "4"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "CALLDATASIZE"
},
{
"begin": 1129,
"end": 1194,
"name": "SUB"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP2"
},
{
"begin": 1129,
"end": 1194,
"name": "ADD"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "CALLDATALOAD"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1129,
"end": 1194,
"name": "AND"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "20"
},
{
"begin": 1129,
"end": 1194,
"name": "ADD"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP3"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP2"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH [tag]",
"value": "41"
},
{
"begin": 1129,
"end": 1194,
"name": "JUMP"
},
{
"begin": 1129,
"end": 1194,
"name": "tag",
"value": "40"
},
{
"begin": 1129,
"end": 1194,
"name": "JUMPDEST"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "40"
},
{
"begin": 1129,
"end": 1194,
"name": "MLOAD"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP3"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP2"
},
{
"begin": 1129,
"end": 1194,
"name": "MSTORE"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "20"
},
{
"begin": 1129,
"end": 1194,
"name": "ADD"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP2"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "40"
},
{
"begin": 1129,
"end": 1194,
"name": "MLOAD"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP2"
},
{
"begin": 1129,
"end": 1194,
"name": "SUB"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "RETURN"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "9"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "42"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "42"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "43"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "44"
},
{
"begin": 798,
"end": 829,
"name": "JUMP"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "43"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 23,
"end": 24,
"name": "PUSH",
"value": "0"
},
{
"begin": 8,
"end": 108,
"name": "tag",
"value": "45"
},
{
"begin": 8,
"end": 108,
"name": "JUMPDEST"
},
{
"begin": 33,
"end": 36,
"name": "DUP4"
},
{
"begin": 30,
"end": 31,
"name": "DUP2"
},
{
"begin": 27,
"end": 37,
"name": "LT"
},
{
"begin": 8,
"end": 108,
"name": "ISZERO"
},
{
"begin": 8,
"end": 108,
"name": "PUSH [tag]",
"value": "46"
},
{
"begin": 8,
"end": 108,
"name": "JUMPI"
},
{
"begin": 99,
"end": 100,
"name": "DUP1"
},
{
"begin": 94,
"end": 97,
"name": "DUP3"
},
{
"begin": 90,
"end": 101,
"name": "ADD"
},
{
"begin": 84,
"end": 102,
"name": "MLOAD"
},
{
"begin": 80,
"end": 81,
"name": "DUP2"
},
{
"begin": 75,
"end": 78,
"name": "DUP5"
},
{
"begin": 71,
"end": 82,
"name": "ADD"
},
{
"begin": 64,
"end": 103,
"name": "MSTORE"
},
{
"begin": 52,
"end": 54,
"name": "PUSH",
"value": "20"
},
{
"begin": 49,
"end": 50,
"name": "DUP2"
},
{
"begin": 45,
"end": 55,
"name": "ADD"
},
{
"begin": 40,
"end": 55,
"name": "SWAP1"
},
{
"begin": 40,
"end": 55,
"name": "POP"
},
{
"begin": 8,
"end": 108,
"name": "PUSH [tag]",
"value": "45"
},
{
"begin": 8,
"end": 108,
"name": "JUMP"
},
{
"begin": 8,
"end": 108,
"name": "tag",
"value": "46"
},
{
"begin": 8,
"end": 108,
"name": "JUMPDEST"
},
{
"begin": 12,
"end": 26,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1F"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "ISZERO"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "48"
},
{
"begin": 798,
"end": 829,
"name": "JUMPI"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "100"
},
{
"begin": 798,
"end": 829,
"name": "EXP"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "NOT"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "48"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "SWAP3"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "RETURN"
},
{
"begin": 1960,
"end": 2083,
"name": "tag",
"value": "10"
},
{
"begin": 1960,
"end": 2083,
"name": "JUMPDEST"
},
{
"begin": 1960,
"end": 2083,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "49"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "49"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH [tag]",
"value": "50"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "4"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "CALLDATASIZE"
},
{
"begin": 1960,
"end": 2083,
"name": "SUB"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP2"
},
{
"begin": 1960,
"end": 2083,
"name": "ADD"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "CALLDATALOAD"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1960,
"end": 2083,
"name": "AND"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "20"
},
{
"begin": 1960,
"end": 2083,
"name": "ADD"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP3"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP2"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "CALLDATALOAD"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "20"
},
{
"begin": 1960,
"end": 2083,
"name": "ADD"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP3"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP2"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH [tag]",
"value": "51"
},
{
"begin": 1960,
"end": 2083,
"name": "JUMP"
},
{
"begin": 1960,
"end": 2083,
"name": "tag",
"value": "50"
},
{
"begin": 1960,
"end": 2083,
"name": "JUMPDEST"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "40"
},
{
"begin": 1960,
"end": 2083,
"name": "MLOAD"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP3"
},
{
"begin": 1960,
"end": 2083,
"name": "ISZERO"
},
{
"begin": 1960,
"end": 2083,
"name": "ISZERO"
},
{
"begin": 1960,
"end": 2083,
"name": "ISZERO"
},
{
"begin": 1960,
"end": 2083,
"name": "ISZERO"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP2"
},
{
"begin": 1960,
"end": 2083,
"name": "MSTORE"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "20"
},
{
"begin": 1960,
"end": 2083,
"name": "ADD"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP2"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "PUSH",
"value": "40"
},
{
"begin": 1960,
"end": 2083,
"name": "MLOAD"
},
{
"begin": 1960,
"end": 2083,
"name": "DUP1"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP2"
},
{
"begin": 1960,
"end": 2083,
"name": "SUB"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP1"
},
{
"begin": 1960,
"end": 2083,
"name": "RETURN"
},
{
"begin": 1335,
"end": 1463,
"name": "tag",
"value": "11"
},
{
"begin": 1335,
"end": 1463,
"name": "JUMPDEST"
},
{
"begin": 1335,
"end": 1463,
"name": "PUSH [tag]",
"value": "52"
},
{
"begin": 1335,
"end": 1463,
"name": "PUSH [tag]",
"value": "16"
},
{
"begin": 1335,
"end": 1463,
"name": "JUMP"
},
{
"begin": 1335,
"end": 1463,
"name": "tag",
"value": "52"
},
{
"begin": 1335,
"end": 1463,
"name": "JUMPDEST"
},
{
"begin": 1335,
"end": 1463,
"name": "STOP"
},
{
"begin": 1201,
"end": 1266,
"name": "tag",
"value": "12"
},
{
"begin": 1201,
"end": 1266,
"name": "JUMPDEST"
},
{
"begin": 1201,
"end": 1266,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "53"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "53"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH [tag]",
"value": "54"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "4"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "CALLDATASIZE"
},
{
"begin": 1201,
"end": 1266,
"name": "SUB"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP2"
},
{
"begin": 1201,
"end": 1266,
"name": "ADD"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "CALLDATALOAD"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1201,
"end": 1266,
"name": "AND"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "20"
},
{
"begin": 1201,
"end": 1266,
"name": "ADD"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP3"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "CALLDATALOAD"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1201,
"end": 1266,
"name": "AND"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "20"
},
{
"begin": 1201,
"end": 1266,
"name": "ADD"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP3"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH [tag]",
"value": "55"
},
{
"begin": 1201,
"end": 1266,
"name": "JUMP"
},
{
"begin": 1201,
"end": 1266,
"name": "tag",
"value": "54"
},
{
"begin": 1201,
"end": 1266,
"name": "JUMPDEST"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "40"
},
{
"begin": 1201,
"end": 1266,
"name": "MLOAD"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP3"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP2"
},
{
"begin": 1201,
"end": 1266,
"name": "MSTORE"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "20"
},
{
"begin": 1201,
"end": 1266,
"name": "ADD"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "40"
},
{
"begin": 1201,
"end": 1266,
"name": "MLOAD"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "SUB"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP1"
},
{
"begin": 1201,
"end": 1266,
"name": "RETURN"
},
{
"begin": 1335,
"end": 1463,
"name": "tag",
"value": "16"
},
{
"begin": 1335,
"end": 1463,
"name": "JUMPDEST"
},
{
"begin": 1405,
"end": 1414,
"name": "CALLVALUE"
},
{
"begin": 1380,
"end": 1389,
"name": "PUSH",
"value": "3"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "0"
},
{
"begin": 1390,
"end": 1400,
"name": "CALLER"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1380,
"end": 1401,
"name": "AND"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1380,
"end": 1401,
"name": "AND"
},
{
"begin": 1380,
"end": 1401,
"name": "DUP2"
},
{
"begin": 1380,
"end": 1401,
"name": "MSTORE"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "20"
},
{
"begin": 1380,
"end": 1401,
"name": "ADD"
},
{
"begin": 1380,
"end": 1401,
"name": "SWAP1"
},
{
"begin": 1380,
"end": 1401,
"name": "DUP2"
},
{
"begin": 1380,
"end": 1401,
"name": "MSTORE"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "20"
},
{
"begin": 1380,
"end": 1401,
"name": "ADD"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "0"
},
{
"begin": 1380,
"end": 1401,
"name": "KECCAK256"
},
{
"begin": 1380,
"end": 1401,
"name": "PUSH",
"value": "0"
},
{
"begin": 1380,
"end": 1414,
"name": "DUP3"
},
{
"begin": 1380,
"end": 1414,
"name": "DUP3"
},
{
"begin": 1380,
"end": 1414,
"name": "SLOAD"
},
{
"begin": 1380,
"end": 1414,
"name": "ADD"
},
{
"begin": 1380,
"end": 1414,
"name": "SWAP3"
},
{
"begin": 1380,
"end": 1414,
"name": "POP"
},
{
"begin": 1380,
"end": 1414,
"name": "POP"
},
{
"begin": 1380,
"end": 1414,
"name": "DUP2"
},
{
"begin": 1380,
"end": 1414,
"name": "SWAP1"
},
{
"begin": 1380,
"end": 1414,
"name": "SSTORE"
},
{
"begin": 1380,
"end": 1414,
"name": "POP"
},
{
"begin": 1433,
"end": 1443,
"name": "CALLER"
},
{
"begin": 1425,
"end": 1455,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1425,
"end": 1455,
"name": "AND"
},
{
"begin": 1425,
"end": 1455,
"name": "PUSH",
"value": "E1FFFCC4923D04B559F4D29A8BFC6CDA04EB5B0D3C460751C2402C5C5CC9109C"
},
{
"begin": 1445,
"end": 1454,
"name": "CALLVALUE"
},
{
"begin": 1425,
"end": 1455,
"name": "PUSH",
"value": "40"
},
{
"begin": 1425,
"end": 1455,
"name": "MLOAD"
},
{
"begin": 1425,
"end": 1455,
"name": "DUP1"
},
{
"begin": 1425,
"end": 1455,
"name": "DUP3"
},
{
"begin": 1425,
"end": 1455,
"name": "DUP2"
},
{
"begin": 1425,
"end": 1455,
"name": "MSTORE"
},
{
"begin": 1425,
"end": 1455,
"name": "PUSH",
"value": "20"
},
{
"begin": 1425,
"end": 1455,
"name": "ADD"
},
{
"begin": 1425,
"end": 1455,
"name": "SWAP2"
},
{
"begin": 1425,
"end": 1455,
"name": "POP"
},
{
"begin": 1425,
"end": 1455,
"name": "POP"
},
{
"begin": 1425,
"end": 1455,
"name": "PUSH",
"value": "40"
},
{
"begin": 1425,
"end": 1455,
"name": "MLOAD"
},
{
"begin": 1425,
"end": 1455,
"name": "DUP1"
},
{
"begin": 1425,
"end": 1455,
"name": "SWAP2"
},
{
"begin": 1425,
"end": 1455,
"name": "SUB"
},
{
"begin": 1425,
"end": 1455,
"name": "SWAP1"
},
{
"begin": 1425,
"end": 1455,
"name": "LOG2"
},
{
"begin": 1335,
"end": 1463,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "19"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "0"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "SLOAD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "ISZERO"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "100"
},
{
"begin": 751,
"end": 791,
"name": "MUL"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "2"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DIV"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1F"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "DIV"
},
{
"begin": 751,
"end": 791,
"name": "MUL"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "MLOAD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "40"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "SWAP3"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "SLOAD"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "ISZERO"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "100"
},
{
"begin": 751,
"end": 791,
"name": "MUL"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "2"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "DIV"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "ISZERO"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "57"
},
{
"begin": 751,
"end": 791,
"name": "JUMPI"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1F"
},
{
"begin": 751,
"end": 791,
"name": "LT"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "58"
},
{
"begin": 751,
"end": 791,
"name": "JUMPI"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "100"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "SLOAD"
},
{
"begin": 751,
"end": 791,
"name": "DIV"
},
{
"begin": 751,
"end": 791,
"name": "MUL"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "57"
},
{
"begin": 751,
"end": 791,
"name": "JUMP"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "58"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "0"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "0"
},
{
"begin": 751,
"end": 791,
"name": "KECCAK256"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "59"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "SLOAD"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "MSTORE"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "20"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "DUP1"
},
{
"begin": 751,
"end": 791,
"name": "DUP4"
},
{
"begin": 751,
"end": 791,
"name": "GT"
},
{
"begin": 751,
"end": 791,
"name": "PUSH [tag]",
"value": "59"
},
{
"begin": 751,
"end": 791,
"name": "JUMPI"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "SWAP1"
},
{
"begin": 751,
"end": 791,
"name": "SUB"
},
{
"begin": 751,
"end": 791,
"name": "PUSH",
"value": "1F"
},
{
"begin": 751,
"end": 791,
"name": "AND"
},
{
"begin": 751,
"end": 791,
"name": "DUP3"
},
{
"begin": 751,
"end": 791,
"name": "ADD"
},
{
"begin": 751,
"end": 791,
"name": "SWAP2"
},
{
"begin": 751,
"end": 791,
"name": "tag",
"value": "57"
},
{
"begin": 751,
"end": 791,
"name": "JUMPDEST"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "POP"
},
{
"begin": 751,
"end": 791,
"name": "DUP2"
},
{
"begin": 751,
"end": 791,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1776,
"end": 1952,
"name": "tag",
"value": "26"
},
{
"begin": 1776,
"end": 1952,
"name": "JUMPDEST"
},
{
"begin": 1832,
"end": 1836,
"name": "PUSH",
"value": "0"
},
{
"begin": 1878,
"end": 1881,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1858,
"name": "PUSH",
"value": "4"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "0"
},
{
"begin": 1859,
"end": 1869,
"name": "CALLER"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1849,
"end": 1870,
"name": "AND"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1849,
"end": 1870,
"name": "AND"
},
{
"begin": 1849,
"end": 1870,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1870,
"name": "MSTORE"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "20"
},
{
"begin": 1849,
"end": 1870,
"name": "ADD"
},
{
"begin": 1849,
"end": 1870,
"name": "SWAP1"
},
{
"begin": 1849,
"end": 1870,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1870,
"name": "MSTORE"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "20"
},
{
"begin": 1849,
"end": 1870,
"name": "ADD"
},
{
"begin": 1849,
"end": 1870,
"name": "PUSH",
"value": "0"
},
{
"begin": 1849,
"end": 1870,
"name": "KECCAK256"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "0"
},
{
"begin": 1871,
"end": 1874,
"name": "DUP6"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1849,
"end": 1875,
"name": "AND"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1849,
"end": 1875,
"name": "AND"
},
{
"begin": 1849,
"end": 1875,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1875,
"name": "MSTORE"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "20"
},
{
"begin": 1849,
"end": 1875,
"name": "ADD"
},
{
"begin": 1849,
"end": 1875,
"name": "SWAP1"
},
{
"begin": 1849,
"end": 1875,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1875,
"name": "MSTORE"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "20"
},
{
"begin": 1849,
"end": 1875,
"name": "ADD"
},
{
"begin": 1849,
"end": 1875,
"name": "PUSH",
"value": "0"
},
{
"begin": 1849,
"end": 1875,
"name": "KECCAK256"
},
{
"begin": 1849,
"end": 1881,
"name": "DUP2"
},
{
"begin": 1849,
"end": 1881,
"name": "SWAP1"
},
{
"begin": 1849,
"end": 1881,
"name": "SSTORE"
},
{
"begin": 1849,
"end": 1881,
"name": "POP"
},
{
"begin": 1913,
"end": 1916,
"name": "DUP3"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1892,
"end": 1922,
"name": "AND"
},
{
"begin": 1901,
"end": 1911,
"name": "CALLER"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1892,
"end": 1922,
"name": "AND"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925"
},
{
"begin": 1918,
"end": 1921,
"name": "DUP5"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "40"
},
{
"begin": 1892,
"end": 1922,
"name": "MLOAD"
},
{
"begin": 1892,
"end": 1922,
"name": "DUP1"
},
{
"begin": 1892,
"end": 1922,
"name": "DUP3"
},
{
"begin": 1892,
"end": 1922,
"name": "DUP2"
},
{
"begin": 1892,
"end": 1922,
"name": "MSTORE"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "20"
},
{
"begin": 1892,
"end": 1922,
"name": "ADD"
},
{
"begin": 1892,
"end": 1922,
"name": "SWAP2"
},
{
"begin": 1892,
"end": 1922,
"name": "POP"
},
{
"begin": 1892,
"end": 1922,
"name": "POP"
},
{
"begin": 1892,
"end": 1922,
"name": "PUSH",
"value": "40"
},
{
"begin": 1892,
"end": 1922,
"name": "MLOAD"
},
{
"begin": 1892,
"end": 1922,
"name": "DUP1"
},
{
"begin": 1892,
"end": 1922,
"name": "SWAP2"
},
{
"begin": 1892,
"end": 1922,
"name": "SUB"
},
{
"begin": 1892,
"end": 1922,
"name": "SWAP1"
},
{
"begin": 1892,
"end": 1922,
"name": "LOG3"
},
{
"begin": 1940,
"end": 1944,
"name": "PUSH",
"value": "1"
},
{
"begin": 1933,
"end": 1944,
"name": "SWAP1"
},
{
"begin": 1933,
"end": 1944,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP3"
},
{
"begin": 1776,
"end": 1952,
"name": "SWAP2"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "POP"
},
{
"begin": 1776,
"end": 1952,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1680,
"end": 1768,
"name": "tag",
"value": "29"
},
{
"begin": 1680,
"end": 1768,
"name": "JUMPDEST"
},
{
"begin": 1724,
"end": 1728,
"name": "PUSH",
"value": "0"
},
{
"begin": 1748,
"end": 1752,
"name": "ADDRESS"
},
{
"begin": 1748,
"end": 1760,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1748,
"end": 1760,
"name": "AND"
},
{
"begin": 1748,
"end": 1760,
"name": "BALANCE"
},
{
"begin": 1741,
"end": 1760,
"name": "SWAP1"
},
{
"begin": 1741,
"end": 1760,
"name": "POP"
},
{
"begin": 1680,
"end": 1768,
"name": "SWAP1"
},
{
"begin": 1680,
"end": 1768,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 2091,
"end": 2563,
"name": "tag",
"value": "32"
},
{
"begin": 2091,
"end": 2563,
"name": "JUMPDEST"
},
{
"begin": 2183,
"end": 2187,
"name": "PUSH",
"value": "0"
},
{
"begin": 2231,
"end": 2234,
"name": "DUP2"
},
{
"begin": 2213,
"end": 2222,
"name": "PUSH",
"value": "3"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "0"
},
{
"begin": 2223,
"end": 2226,
"name": "DUP7"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2213,
"end": 2227,
"name": "AND"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2213,
"end": 2227,
"name": "AND"
},
{
"begin": 2213,
"end": 2227,
"name": "DUP2"
},
{
"begin": 2213,
"end": 2227,
"name": "MSTORE"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "20"
},
{
"begin": 2213,
"end": 2227,
"name": "ADD"
},
{
"begin": 2213,
"end": 2227,
"name": "SWAP1"
},
{
"begin": 2213,
"end": 2227,
"name": "DUP2"
},
{
"begin": 2213,
"end": 2227,
"name": "MSTORE"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "20"
},
{
"begin": 2213,
"end": 2227,
"name": "ADD"
},
{
"begin": 2213,
"end": 2227,
"name": "PUSH",
"value": "0"
},
{
"begin": 2213,
"end": 2227,
"name": "KECCAK256"
},
{
"begin": 2213,
"end": 2227,
"name": "SLOAD"
},
{
"begin": 2213,
"end": 2234,
"name": "LT"
},
{
"begin": 2213,
"end": 2234,
"name": "ISZERO"
},
{
"begin": 2205,
"end": 2235,
"name": "ISZERO"
},
{
"begin": 2205,
"end": 2235,
"name": "ISZERO"
},
{
"begin": 2205,
"end": 2235,
"name": "PUSH [tag]",
"value": "63"
},
{
"begin": 2205,
"end": 2235,
"name": "JUMPI"
},
{
"begin": 2205,
"end": 2235,
"name": "PUSH",
"value": "0"
},
{
"begin": 2205,
"end": 2235,
"name": "DUP1"
},
{
"begin": 2205,
"end": 2235,
"name": "REVERT"
},
{
"begin": 2205,
"end": 2235,
"name": "tag",
"value": "63"
},
{
"begin": 2205,
"end": 2235,
"name": "JUMPDEST"
},
{
"begin": 2259,
"end": 2269,
"name": "CALLER"
},
{
"begin": 2252,
"end": 2269,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2252,
"end": 2269,
"name": "AND"
},
{
"begin": 2252,
"end": 2255,
"name": "DUP5"
},
{
"begin": 2252,
"end": 2269,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2252,
"end": 2269,
"name": "AND"
},
{
"begin": 2252,
"end": 2269,
"name": "EQ"
},
{
"begin": 2252,
"end": 2269,
"name": "ISZERO"
},
{
"begin": 2252,
"end": 2311,
"name": "DUP1"
},
{
"begin": 2252,
"end": 2311,
"name": "ISZERO"
},
{
"begin": 2252,
"end": 2311,
"name": "PUSH [tag]",
"value": "64"
},
{
"begin": 2252,
"end": 2311,
"name": "JUMPI"
},
{
"begin": 2252,
"end": 2311,
"name": "POP"
},
{
"begin": 2308,
"end": 2310,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2273,
"end": 2282,
"name": "PUSH",
"value": "4"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "0"
},
{
"begin": 2283,
"end": 2286,
"name": "DUP7"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2273,
"end": 2287,
"name": "AND"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2273,
"end": 2287,
"name": "AND"
},
{
"begin": 2273,
"end": 2287,
"name": "DUP2"
},
{
"begin": 2273,
"end": 2287,
"name": "MSTORE"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "20"
},
{
"begin": 2273,
"end": 2287,
"name": "ADD"
},
{
"begin": 2273,
"end": 2287,
"name": "SWAP1"
},
{
"begin": 2273,
"end": 2287,
"name": "DUP2"
},
{
"begin": 2273,
"end": 2287,
"name": "MSTORE"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "20"
},
{
"begin": 2273,
"end": 2287,
"name": "ADD"
},
{
"begin": 2273,
"end": 2287,
"name": "PUSH",
"value": "0"
},
{
"begin": 2273,
"end": 2287,
"name": "KECCAK256"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "0"
},
{
"begin": 2288,
"end": 2298,
"name": "CALLER"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2273,
"end": 2299,
"name": "AND"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2273,
"end": 2299,
"name": "AND"
},
{
"begin": 2273,
"end": 2299,
"name": "DUP2"
},
{
"begin": 2273,
"end": 2299,
"name": "MSTORE"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "20"
},
{
"begin": 2273,
"end": 2299,
"name": "ADD"
},
{
"begin": 2273,
"end": 2299,
"name": "SWAP1"
},
{
"begin": 2273,
"end": 2299,
"name": "DUP2"
},
{
"begin": 2273,
"end": 2299,
"name": "MSTORE"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "20"
},
{
"begin": 2273,
"end": 2299,
"name": "ADD"
},
{
"begin": 2273,
"end": 2299,
"name": "PUSH",
"value": "0"
},
{
"begin": 2273,
"end": 2299,
"name": "KECCAK256"
},
{
"begin": 2273,
"end": 2299,
"name": "SLOAD"
},
{
"begin": 2273,
"end": 2311,
"name": "EQ"
},
{
"begin": 2273,
"end": 2311,
"name": "ISZERO"
},
{
"begin": 2252,
"end": 2311,
"name": "tag",
"value": "64"
},
{
"begin": 2252,
"end": 2311,
"name": "JUMPDEST"
},
{
"begin": 2248,
"end": 2430,
"name": "ISZERO"
},
{
"begin": 2248,
"end": 2430,
"name": "PUSH [tag]",
"value": "65"
},
{
"begin": 2248,
"end": 2430,
"name": "JUMPI"
},
{
"begin": 2366,
"end": 2369,
"name": "DUP2"
},
{
"begin": 2336,
"end": 2345,
"name": "PUSH",
"value": "4"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "0"
},
{
"begin": 2346,
"end": 2349,
"name": "DUP7"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2336,
"end": 2350,
"name": "AND"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2336,
"end": 2350,
"name": "AND"
},
{
"begin": 2336,
"end": 2350,
"name": "DUP2"
},
{
"begin": 2336,
"end": 2350,
"name": "MSTORE"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "20"
},
{
"begin": 2336,
"end": 2350,
"name": "ADD"
},
{
"begin": 2336,
"end": 2350,
"name": "SWAP1"
},
{
"begin": 2336,
"end": 2350,
"name": "DUP2"
},
{
"begin": 2336,
"end": 2350,
"name": "MSTORE"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "20"
},
{
"begin": 2336,
"end": 2350,
"name": "ADD"
},
{
"begin": 2336,
"end": 2350,
"name": "PUSH",
"value": "0"
},
{
"begin": 2336,
"end": 2350,
"name": "KECCAK256"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "0"
},
{
"begin": 2351,
"end": 2361,
"name": "CALLER"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2336,
"end": 2362,
"name": "AND"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2336,
"end": 2362,
"name": "AND"
},
{
"begin": 2336,
"end": 2362,
"name": "DUP2"
},
{
"begin": 2336,
"end": 2362,
"name": "MSTORE"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "20"
},
{
"begin": 2336,
"end": 2362,
"name": "ADD"
},
{
"begin": 2336,
"end": 2362,
"name": "SWAP1"
},
{
"begin": 2336,
"end": 2362,
"name": "DUP2"
},
{
"begin": 2336,
"end": 2362,
"name": "MSTORE"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "20"
},
{
"begin": 2336,
"end": 2362,
"name": "ADD"
},
{
"begin": 2336,
"end": 2362,
"name": "PUSH",
"value": "0"
},
{
"begin": 2336,
"end": 2362,
"name": "KECCAK256"
},
{
"begin": 2336,
"end": 2362,
"name": "SLOAD"
},
{
"begin": 2336,
"end": 2369,
"name": "LT"
},
{
"begin": 2336,
"end": 2369,
"name": "ISZERO"
},
{
"begin": 2328,
"end": 2370,
"name": "ISZERO"
},
{
"begin": 2328,
"end": 2370,
"name": "ISZERO"
},
{
"begin": 2328,
"end": 2370,
"name": "PUSH [tag]",
"value": "66"
},
{
"begin": 2328,
"end": 2370,
"name": "JUMPI"
},
{
"begin": 2328,
"end": 2370,
"name": "PUSH",
"value": "0"
},
{
"begin": 2328,
"end": 2370,
"name": "DUP1"
},
{
"begin": 2328,
"end": 2370,
"name": "REVERT"
},
{
"begin": 2328,
"end": 2370,
"name": "tag",
"value": "66"
},
{
"begin": 2328,
"end": 2370,
"name": "JUMPDEST"
},
{
"begin": 2415,
"end": 2418,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2394,
"name": "PUSH",
"value": "4"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "0"
},
{
"begin": 2395,
"end": 2398,
"name": "DUP7"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2385,
"end": 2399,
"name": "AND"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2385,
"end": 2399,
"name": "AND"
},
{
"begin": 2385,
"end": 2399,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2399,
"name": "MSTORE"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "20"
},
{
"begin": 2385,
"end": 2399,
"name": "ADD"
},
{
"begin": 2385,
"end": 2399,
"name": "SWAP1"
},
{
"begin": 2385,
"end": 2399,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2399,
"name": "MSTORE"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "20"
},
{
"begin": 2385,
"end": 2399,
"name": "ADD"
},
{
"begin": 2385,
"end": 2399,
"name": "PUSH",
"value": "0"
},
{
"begin": 2385,
"end": 2399,
"name": "KECCAK256"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "0"
},
{
"begin": 2400,
"end": 2410,
"name": "CALLER"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2385,
"end": 2411,
"name": "AND"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2385,
"end": 2411,
"name": "AND"
},
{
"begin": 2385,
"end": 2411,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2411,
"name": "MSTORE"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "20"
},
{
"begin": 2385,
"end": 2411,
"name": "ADD"
},
{
"begin": 2385,
"end": 2411,
"name": "SWAP1"
},
{
"begin": 2385,
"end": 2411,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2411,
"name": "MSTORE"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "20"
},
{
"begin": 2385,
"end": 2411,
"name": "ADD"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "0"
},
{
"begin": 2385,
"end": 2411,
"name": "KECCAK256"
},
{
"begin": 2385,
"end": 2411,
"name": "PUSH",
"value": "0"
},
{
"begin": 2385,
"end": 2418,
"name": "DUP3"
},
{
"begin": 2385,
"end": 2418,
"name": "DUP3"
},
{
"begin": 2385,
"end": 2418,
"name": "SLOAD"
},
{
"begin": 2385,
"end": 2418,
"name": "SUB"
},
{
"begin": 2385,
"end": 2418,
"name": "SWAP3"
},
{
"begin": 2385,
"end": 2418,
"name": "POP"
},
{
"begin": 2385,
"end": 2418,
"name": "POP"
},
{
"begin": 2385,
"end": 2418,
"name": "DUP2"
},
{
"begin": 2385,
"end": 2418,
"name": "SWAP1"
},
{
"begin": 2385,
"end": 2418,
"name": "SSTORE"
},
{
"begin": 2385,
"end": 2418,
"name": "POP"
},
{
"begin": 2248,
"end": 2430,
"name": "tag",
"value": "65"
},
{
"begin": 2248,
"end": 2430,
"name": "JUMPDEST"
},
{
"begin": 2460,
"end": 2463,
"name": "DUP2"
},
{
"begin": 2442,
"end": 2451,
"name": "PUSH",
"value": "3"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "0"
},
{
"begin": 2452,
"end": 2455,
"name": "DUP7"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2442,
"end": 2456,
"name": "AND"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2442,
"end": 2456,
"name": "AND"
},
{
"begin": 2442,
"end": 2456,
"name": "DUP2"
},
{
"begin": 2442,
"end": 2456,
"name": "MSTORE"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "20"
},
{
"begin": 2442,
"end": 2456,
"name": "ADD"
},
{
"begin": 2442,
"end": 2456,
"name": "SWAP1"
},
{
"begin": 2442,
"end": 2456,
"name": "DUP2"
},
{
"begin": 2442,
"end": 2456,
"name": "MSTORE"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "20"
},
{
"begin": 2442,
"end": 2456,
"name": "ADD"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "0"
},
{
"begin": 2442,
"end": 2456,
"name": "KECCAK256"
},
{
"begin": 2442,
"end": 2456,
"name": "PUSH",
"value": "0"
},
{
"begin": 2442,
"end": 2463,
"name": "DUP3"
},
{
"begin": 2442,
"end": 2463,
"name": "DUP3"
},
{
"begin": 2442,
"end": 2463,
"name": "SLOAD"
},
{
"begin": 2442,
"end": 2463,
"name": "SUB"
},
{
"begin": 2442,
"end": 2463,
"name": "SWAP3"
},
{
"begin": 2442,
"end": 2463,
"name": "POP"
},
{
"begin": 2442,
"end": 2463,
"name": "POP"
},
{
"begin": 2442,
"end": 2463,
"name": "DUP2"
},
{
"begin": 2442,
"end": 2463,
"name": "SWAP1"
},
{
"begin": 2442,
"end": 2463,
"name": "SSTORE"
},
{
"begin": 2442,
"end": 2463,
"name": "POP"
},
{
"begin": 2492,
"end": 2495,
"name": "DUP2"
},
{
"begin": 2474,
"end": 2483,
"name": "PUSH",
"value": "3"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "0"
},
{
"begin": 2484,
"end": 2487,
"name": "DUP6"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2474,
"end": 2488,
"name": "AND"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2474,
"end": 2488,
"name": "AND"
},
{
"begin": 2474,
"end": 2488,
"name": "DUP2"
},
{
"begin": 2474,
"end": 2488,
"name": "MSTORE"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "20"
},
{
"begin": 2474,
"end": 2488,
"name": "ADD"
},
{
"begin": 2474,
"end": 2488,
"name": "SWAP1"
},
{
"begin": 2474,
"end": 2488,
"name": "DUP2"
},
{
"begin": 2474,
"end": 2488,
"name": "MSTORE"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "20"
},
{
"begin": 2474,
"end": 2488,
"name": "ADD"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "0"
},
{
"begin": 2474,
"end": 2488,
"name": "KECCAK256"
},
{
"begin": 2474,
"end": 2488,
"name": "PUSH",
"value": "0"
},
{
"begin": 2474,
"end": 2495,
"name": "DUP3"
},
{
"begin": 2474,
"end": 2495,
"name": "DUP3"
},
{
"begin": 2474,
"end": 2495,
"name": "SLOAD"
},
{
"begin": 2474,
"end": 2495,
"name": "ADD"
},
{
"begin": 2474,
"end": 2495,
"name": "SWAP3"
},
{
"begin": 2474,
"end": 2495,
"name": "POP"
},
{
"begin": 2474,
"end": 2495,
"name": "POP"
},
{
"begin": 2474,
"end": 2495,
"name": "DUP2"
},
{
"begin": 2474,
"end": 2495,
"name": "SWAP1"
},
{
"begin": 2474,
"end": 2495,
"name": "SSTORE"
},
{
"begin": 2474,
"end": 2495,
"name": "POP"
},
{
"begin": 2522,
"end": 2525,
"name": "DUP3"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2508,
"end": 2531,
"name": "AND"
},
{
"begin": 2517,
"end": 2520,
"name": "DUP5"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2508,
"end": 2531,
"name": "AND"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "DDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF"
},
{
"begin": 2527,
"end": 2530,
"name": "DUP5"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "40"
},
{
"begin": 2508,
"end": 2531,
"name": "MLOAD"
},
{
"begin": 2508,
"end": 2531,
"name": "DUP1"
},
{
"begin": 2508,
"end": 2531,
"name": "DUP3"
},
{
"begin": 2508,
"end": 2531,
"name": "DUP2"
},
{
"begin": 2508,
"end": 2531,
"name": "MSTORE"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "20"
},
{
"begin": 2508,
"end": 2531,
"name": "ADD"
},
{
"begin": 2508,
"end": 2531,
"name": "SWAP2"
},
{
"begin": 2508,
"end": 2531,
"name": "POP"
},
{
"begin": 2508,
"end": 2531,
"name": "POP"
},
{
"begin": 2508,
"end": 2531,
"name": "PUSH",
"value": "40"
},
{
"begin": 2508,
"end": 2531,
"name": "MLOAD"
},
{
"begin": 2508,
"end": 2531,
"name": "DUP1"
},
{
"begin": 2508,
"end": 2531,
"name": "SWAP2"
},
{
"begin": 2508,
"end": 2531,
"name": "SUB"
},
{
"begin": 2508,
"end": 2531,
"name": "SWAP1"
},
{
"begin": 2508,
"end": 2531,
"name": "LOG3"
},
{
"begin": 2551,
"end": 2555,
"name": "PUSH",
"value": "1"
},
{
"begin": 2544,
"end": 2555,
"name": "SWAP1"
},
{
"begin": 2544,
"end": 2555,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP4"
},
{
"begin": 2091,
"end": 2563,
"name": "SWAP3"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "POP"
},
{
"begin": 2091,
"end": 2563,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1469,
"end": 1672,
"name": "tag",
"value": "35"
},
{
"begin": 1469,
"end": 1672,
"name": "JUMPDEST"
},
{
"begin": 1548,
"end": 1551,
"name": "DUP1"
},
{
"begin": 1523,
"end": 1532,
"name": "PUSH",
"value": "3"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "0"
},
{
"begin": 1533,
"end": 1543,
"name": "CALLER"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1523,
"end": 1544,
"name": "AND"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1523,
"end": 1544,
"name": "AND"
},
{
"begin": 1523,
"end": 1544,
"name": "DUP2"
},
{
"begin": 1523,
"end": 1544,
"name": "MSTORE"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "20"
},
{
"begin": 1523,
"end": 1544,
"name": "ADD"
},
{
"begin": 1523,
"end": 1544,
"name": "SWAP1"
},
{
"begin": 1523,
"end": 1544,
"name": "DUP2"
},
{
"begin": 1523,
"end": 1544,
"name": "MSTORE"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "20"
},
{
"begin": 1523,
"end": 1544,
"name": "ADD"
},
{
"begin": 1523,
"end": 1544,
"name": "PUSH",
"value": "0"
},
{
"begin": 1523,
"end": 1544,
"name": "KECCAK256"
},
{
"begin": 1523,
"end": 1544,
"name": "SLOAD"
},
{
"begin": 1523,
"end": 1551,
"name": "LT"
},
{
"begin": 1523,
"end": 1551,
"name": "ISZERO"
},
{
"begin": 1515,
"end": 1552,
"name": "ISZERO"
},
{
"begin": 1515,
"end": 1552,
"name": "ISZERO"
},
{
"begin": 1515,
"end": 1552,
"name": "PUSH [tag]",
"value": "68"
},
{
"begin": 1515,
"end": 1552,
"name": "JUMPI"
},
{
"begin": 1515,
"end": 1552,
"name": "PUSH",
"value": "0"
},
{
"begin": 1515,
"end": 1552,
"name": "DUP1"
},
{
"begin": 1515,
"end": 1552,
"name": "REVERT"
},
{
"begin": 1515,
"end": 1552,
"name": "tag",
"value": "68"
},
{
"begin": 1515,
"end": 1552,
"name": "JUMPDEST"
},
{
"begin": 1588,
"end": 1591,
"name": "DUP1"
},
{
"begin": 1563,
"end": 1572,
"name": "PUSH",
"value": "3"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "0"
},
{
"begin": 1573,
"end": 1583,
"name": "CALLER"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1563,
"end": 1584,
"name": "AND"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1563,
"end": 1584,
"name": "AND"
},
{
"begin": 1563,
"end": 1584,
"name": "DUP2"
},
{
"begin": 1563,
"end": 1584,
"name": "MSTORE"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "20"
},
{
"begin": 1563,
"end": 1584,
"name": "ADD"
},
{
"begin": 1563,
"end": 1584,
"name": "SWAP1"
},
{
"begin": 1563,
"end": 1584,
"name": "DUP2"
},
{
"begin": 1563,
"end": 1584,
"name": "MSTORE"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "20"
},
{
"begin": 1563,
"end": 1584,
"name": "ADD"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "0"
},
{
"begin": 1563,
"end": 1584,
"name": "KECCAK256"
},
{
"begin": 1563,
"end": 1584,
"name": "PUSH",
"value": "0"
},
{
"begin": 1563,
"end": 1591,
"name": "DUP3"
},
{
"begin": 1563,
"end": 1591,
"name": "DUP3"
},
{
"begin": 1563,
"end": 1591,
"name": "SLOAD"
},
{
"begin": 1563,
"end": 1591,
"name": "SUB"
},
{
"begin": 1563,
"end": 1591,
"name": "SWAP3"
},
{
"begin": 1563,
"end": 1591,
"name": "POP"
},
{
"begin": 1563,
"end": 1591,
"name": "POP"
},
{
"begin": 1563,
"end": 1591,
"name": "DUP2"
},
{
"begin": 1563,
"end": 1591,
"name": "SWAP1"
},
{
"begin": 1563,
"end": 1591,
"name": "SSTORE"
},
{
"begin": 1563,
"end": 1591,
"name": "POP"
},
{
"begin": 1602,
"end": 1612,
"name": "CALLER"
},
{
"begin": 1602,
"end": 1621,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1602,
"end": 1621,
"name": "AND"
},
{
"begin": 1602,
"end": 1626,
"name": "PUSH",
"value": "8FC"
},
{
"begin": 1622,
"end": 1625,
"name": "DUP3"
},
{
"begin": 1602,
"end": 1626,
"name": "SWAP1"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP2"
},
{
"begin": 1602,
"end": 1626,
"name": "ISZERO"
},
{
"begin": 1602,
"end": 1626,
"name": "MUL"
},
{
"begin": 1602,
"end": 1626,
"name": "SWAP1"
},
{
"begin": 1602,
"end": 1626,
"name": "PUSH",
"value": "40"
},
{
"begin": 1602,
"end": 1626,
"name": "MLOAD"
},
{
"begin": 1602,
"end": 1626,
"name": "PUSH",
"value": "0"
},
{
"begin": 1602,
"end": 1626,
"name": "PUSH",
"value": "40"
},
{
"begin": 1602,
"end": 1626,
"name": "MLOAD"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP1"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP4"
},
{
"begin": 1602,
"end": 1626,
"name": "SUB"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP2"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP6"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP9"
},
{
"begin": 1602,
"end": 1626,
"name": "DUP9"
},
{
"begin": 1602,
"end": 1626,
"name": "CALL"
},
{
"begin": 1602,
"end": 1626,
"name": "SWAP4"
},
{
"begin": 1602,
"end": 1626,
"name": "POP"
},
{
"begin": 1602,
"end": 1626,
"name": "POP"
},
{
"begin": 1602,
"end": 1626,
"name": "POP"
},
{
"begin": 1602,
"end": 1626,
"name": "POP"
},
{
"begin": 1602,
"end": 1626,
"name": "ISZERO"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "69"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 45,
"end": 61,
"name": "RETURNDATASIZE"
},
{
"begin": 42,
"end": 43,
"name": "PUSH",
"value": "0"
},
{
"begin": 39,
"end": 40,
"name": "DUP1"
},
{
"begin": 24,
"end": 62,
"name": "RETURNDATACOPY"
},
{
"begin": 77,
"end": 93,
"name": "RETURNDATASIZE"
},
{
"begin": 74,
"end": 75,
"name": "PUSH",
"value": "0"
},
{
"begin": 67,
"end": 94,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "69"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 1602,
"end": 1626,
"name": "POP"
},
{
"begin": 1648,
"end": 1658,
"name": "CALLER"
},
{
"begin": 1637,
"end": 1664,
"name": "PUSH",
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1637,
"end": 1664,
"name": "AND"
},
{
"begin": 1637,
"end": 1664,
"name": "PUSH",
"value": "7FCF532C15F0A6DB0BD6D0E038BEA71D30D808C7D98CB3BF7268A95BF5081B65"
},
{
"begin": 1660,
"end": 1663,
"name": "DUP3"
},
{
"begin": 1637,
"end": 1664,
"name": "PUSH",
"value": "40"
},
{
"begin": 1637,
"end": 1664,
"name": "MLOAD"
},
{
"begin": 1637,
"end": 1664,
"name": "DUP1"
},
{
"begin": 1637,
"end": 1664,
"name": "DUP3"
},
{
"begin": 1637,
"end": 1664,
"name": "DUP2"
},
{
"begin": 1637,
"end": 1664,
"name": "MSTORE"
},
{
"begin": 1637,
"end": 1664,
"name": "PUSH",
"value": "20"
},
{
"begin": 1637,
"end": 1664,
"name": "ADD"
},
{
"begin": 1637,
"end": 1664,
"name": "SWAP2"
},
{
"begin": 1637,
"end": 1664,
"name": "POP"
},
{
"begin": 1637,
"end": 1664,
"name": "POP"
},
{
"begin": 1637,
"end": 1664,
"name": "PUSH",
"value": "40"
},
{
"begin": 1637,
"end": 1664,
"name": "MLOAD"
},
{
"begin": 1637,
"end": 1664,
"name": "DUP1"
},
{
"begin": 1637,
"end": 1664,
"name": "SWAP2"
},
{
"begin": 1637,
"end": 1664,
"name": "SUB"
},
{
"begin": 1637,
"end": 1664,
"name": "SWAP1"
},
{
"begin": 1637,
"end": 1664,
"name": "LOG2"
},
{
"begin": 1469,
"end": 1672,
"name": "POP"
},
{
"begin": 1469,
"end": 1672,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 836,
"end": 863,
"name": "tag",
"value": "38"
},
{
"begin": 836,
"end": 863,
"name": "JUMPDEST"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "2"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "0"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "SLOAD"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "100"
},
{
"begin": 836,
"end": 863,
"name": "EXP"
},
{
"begin": 836,
"end": 863,
"name": "SWAP1"
},
{
"begin": 836,
"end": 863,
"name": "DIV"
},
{
"begin": 836,
"end": 863,
"name": "PUSH",
"value": "FF"
},
{
"begin": 836,
"end": 863,
"name": "AND"
},
{
"begin": 836,
"end": 863,
"name": "DUP2"
},
{
"begin": 836,
"end": 863,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1129,
"end": 1194,
"name": "tag",
"value": "41"
},
{
"begin": 1129,
"end": 1194,
"name": "JUMPDEST"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "3"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "20"
},
{
"begin": 1129,
"end": 1194,
"name": "MSTORE"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP1"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "0"
},
{
"begin": 1129,
"end": 1194,
"name": "MSTORE"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "40"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "0"
},
{
"begin": 1129,
"end": 1194,
"name": "KECCAK256"
},
{
"begin": 1129,
"end": 1194,
"name": "PUSH",
"value": "0"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP2"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "SWAP1"
},
{
"begin": 1129,
"end": 1194,
"name": "POP"
},
{
"begin": 1129,
"end": 1194,
"name": "SLOAD"
},
{
"begin": 1129,
"end": 1194,
"name": "DUP2"
},
{
"begin": 1129,
"end": 1194,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "44"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "SLOAD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "ISZERO"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "100"
},
{
"begin": 798,
"end": 829,
"name": "MUL"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "2"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DIV"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1F"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "DIV"
},
{
"begin": 798,
"end": 829,
"name": "MUL"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "MLOAD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "40"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "SWAP3"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "SLOAD"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "ISZERO"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "100"
},
{
"begin": 798,
"end": 829,
"name": "MUL"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "2"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "DIV"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "ISZERO"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "70"
},
{
"begin": 798,
"end": 829,
"name": "JUMPI"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1F"
},
{
"begin": 798,
"end": 829,
"name": "LT"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "71"
},
{
"begin": 798,
"end": 829,
"name": "JUMPI"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "100"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "SLOAD"
},
{
"begin": 798,
"end": 829,
"name": "DIV"
},
{
"begin": 798,
"end": 829,
"name": "MUL"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "70"
},
{
"begin": 798,
"end": 829,
"name": "JUMP"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "71"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "0"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "0"
},
{
"begin": 798,
"end": 829,
"name": "KECCAK256"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "72"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "SLOAD"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "MSTORE"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "20"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "DUP1"
},
{
"begin": 798,
"end": 829,
"name": "DUP4"
},
{
"begin": 798,
"end": 829,
"name": "GT"
},
{
"begin": 798,
"end": 829,
"name": "PUSH [tag]",
"value": "72"
},
{
"begin": 798,
"end": 829,
"name": "JUMPI"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "SWAP1"
},
{
"begin": 798,
"end": 829,
"name": "SUB"
},
{
"begin": 798,
"end": 829,
"name": "PUSH",
"value": "1F"
},
{
"begin": 798,
"end": 829,
"name": "AND"
},
{
"begin": 798,
"end": 829,
"name": "DUP3"
},
{
"begin": 798,
"end": 829,
"name": "ADD"
},
{
"begin": 798,
"end": 829,
"name": "SWAP2"
},
{
"begin": 798,
"end": 829,
"name": "tag",
"value": "70"
},
{
"begin": 798,
"end": 829,
"name": "JUMPDEST"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "POP"
},
{
"begin": 798,
"end": 829,
"name": "DUP2"
},
{
"begin": 798,
"end": 829,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1960,
"end": 2083,
"name": "tag",
"value": "51"
},
{
"begin": 1960,
"end": 2083,
"name": "JUMPDEST"
},
{
"begin": 2017,
"end": 2021,
"name": "PUSH",
"value": "0"
},
{
"begin": 2041,
"end": 2075,
"name": "PUSH [tag]",
"value": "74"
},
{
"begin": 2054,
"end": 2064,
"name": "CALLER"
},
{
"begin": 2066,
"end": 2069,
"name": "DUP5"
},
{
"begin": 2071,
"end": 2074,
"name": "DUP5"
},
{
"begin": 2041,
"end": 2053,
"name": "PUSH [tag]",
"value": "32"
},
{
"begin": 2041,
"end": 2075,
"name": "JUMP",
"value": "[in]"
},
{
"begin": 2041,
"end": 2075,
"name": "tag",
"value": "74"
},
{
"begin": 2041,
"end": 2075,
"name": "JUMPDEST"
},
{
"begin": 2034,
"end": 2075,
"name": "SWAP1"
},
{
"begin": 2034,
"end": 2075,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP3"
},
{
"begin": 1960,
"end": 2083,
"name": "SWAP2"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "POP"
},
{
"begin": 1960,
"end": 2083,
"name": "JUMP",
"value": "[out]"
},
{
"begin": 1201,
"end": 1266,
"name": "tag",
"value": "55"
},
{
"begin": 1201,
"end": 1266,
"name": "JUMPDEST"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "4"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "20"
},
{
"begin": 1201,
"end": 1266,
"name": "MSTORE"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP2"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "0"
},
{
"begin": 1201,
"end": 1266,
"name": "MSTORE"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "40"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "0"
},
{
"begin": 1201,
"end": 1266,
"name": "KECCAK256"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "20"
},
{
"begin": 1201,
"end": 1266,
"name": "MSTORE"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP1"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "0"
},
{
"begin": 1201,
"end": 1266,
"name": "MSTORE"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "40"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "0"
},
{
"begin": 1201,
"end": 1266,
"name": "KECCAK256"
},
{
"begin": 1201,
"end": 1266,
"name": "PUSH",
"value": "0"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "SWAP2"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "POP"
},
{
"begin": 1201,
"end": 1266,
"name": "SLOAD"
},
{
"begin": 1201,
"end": 1266,
"name": "DUP2"
},
{
"begin": 1201,
"end": 1266,
"name": "JUMP",
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"deposit()": "d0e30db0",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"withdraw(uint256)": "2e1a7d4d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.4.26+commit.4563c3fc\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"constant\":true,\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"name\":\"\",\"type\":\"string\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"guy\",\"type\":\"address\"},{\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"src\",\"type\":\"address\"},{\"name\":\"dst\",\"type\":\"address\"},{\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"withdraw\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"name\":\"\",\"type\":\"uint8\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"name\":\"\",\"type\":\"string\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"dst\",\"type\":\"address\"},{\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[],\"name\":\"deposit\",\"outputs\":[],\"payable\":true,\"stateMutability\":\"payable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"\",\"type\":\"address\"},{\"name\":\"\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"payable\":true,\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"src\",\"type\":\"address\"},{\"indexed\":true,\"name\":\"guy\",\"type\":\"address\"},{\"indexed\":false,\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"src\",\"type\":\"address\"},{\"indexed\":true,\"name\":\"dst\",\"type\":\"address\"},{\"indexed\":false,\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"dst\",\"type\":\"address\"},{\"indexed\":false,\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"src\",\"type\":\"address\"},{\"indexed\":false,\"name\":\"wad\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"WETH9.sol\":\"WETH9\"},\"evmVersion\":\"byzantium\",\"libraries\":{},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"WETH9.sol\":{\"keccak256\":\"0x4f98b4d0620142d8bea339d134eecd64cbd578b042cf6bc88cb3f23a13a4c893\",\"urls\":[\"bzzr://8f5718790b18ad332003e9f8386333ce182399563925546c3130699d4932de3e\"]}},\"version\":1}",
"userdoc": {
"methods": {}
}
}
}
},
"errors": [
{
"component": "general",
"formattedMessage": "WETH9.sol:36:9: Warning: Invoking events without \"emit\" prefix is deprecated.\n Deposit(msg.sender, msg.value);\r\n ^----------------------------^\n",
"message": "Invoking events without \"emit\" prefix is deprecated.",
"severity": "warning",
"sourceLocation": {
"end": 1455,
"file": "WETH9.sol",
"start": 1425
},
"type": "Warning"
},
{
"component": "general",
"formattedMessage": "WETH9.sol:42:9: Warning: Invoking events without \"emit\" prefix is deprecated.\n Withdrawal(msg.sender, wad);\r\n ^-------------------------^\n",
"message": "Invoking events without \"emit\" prefix is deprecated.",
"severity": "warning",
"sourceLocation": {
"end": 1664,
"file": "WETH9.sol",
"start": 1637
},
"type": "Warning"
},
{
"component": "general",
"formattedMessage": "WETH9.sol:46:16: Warning: Using contract member \"balance\" inherited from the address type is deprecated. Convert the contract to \"address\" type to access the member, for example use \"address(contract).balance\" instead.\n return this.balance;\r\n ^----------^\n",
"message": "Using contract member \"balance\" inherited from the address type is deprecated. Convert the contract to \"address\" type to access the member, for example use \"address(contract).balance\" instead.",
"severity": "warning",
"sourceLocation": {
"end": 1760,
"file": "WETH9.sol",
"start": 1748
},
"type": "Warning"
},
{
"component": "general",
"formattedMessage": "WETH9.sol:51:9: Warning: Invoking events without \"emit\" prefix is deprecated.\n Approval(msg.sender, guy, wad);\r\n ^----------------------------^\n",
"message": "Invoking events without \"emit\" prefix is deprecated.",
"severity": "warning",
"sourceLocation": {
"end": 1922,
"file": "WETH9.sol",
"start": 1892
},
"type": "Warning"
},
{
"component": "general",
"formattedMessage": "WETH9.sol:73:9: Warning: Invoking events without \"emit\" prefix is deprecated.\n Transfer(src, dst, wad);\r\n ^---------------------^\n",
"message": "Invoking events without \"emit\" prefix is deprecated.",
"severity": "warning",
"sourceLocation": {
"end": 2531,
"file": "WETH9.sol",
"start": 2508
},
"type": "Warning"
}
],
"sources": {
"WETH9.sol": {
"ast": {
"absolutePath": "WETH9.sol",
"exportedSymbols": {
"WETH9": [
243
]
},
"id": 244,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.4",
".18"
],
"nodeType": "PragmaDirective",
"src": "701:24:0"
},
{
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"documentation": null,
"fullyImplemented": true,
"id": 243,
"linearizedBaseContracts": [
243
],
"name": "WETH9",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 4,
"name": "name",
"nodeType": "VariableDeclaration",
"scope": 243,
"src": "751:40:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage",
"typeString": "string"
},
"typeName": {
"id": 2,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "751:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"value": {
"argumentTypes": null,
"hexValue": "57726170706564204574686572",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "776:15:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_00cd3d46df44f2cbb950cf84eb2e92aa2ddd23195b1a009173ea59a063357ed3",
"typeString": "literal_string \"Wrapped Ether\""
},
"value": "Wrapped Ether"
},
"visibility": "public"
},
{
"constant": false,
"id": 7,
"name": "symbol",
"nodeType": "VariableDeclaration",
"scope": 243,
"src": "798:31:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage",
"typeString": "string"
},
"typeName": {
"id": 5,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "798:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"value": {
"argumentTypes": null,
"hexValue": "57455448",
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "823:6:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_0f8a193ff464434486c0daf7db2a895884365d2bc84ba47a68fcf89c1b14b5b8",
"typeString": "literal_string \"WETH\""
},
"value": "WETH"
},
"visibility": "public"
},
{
"constant": false,
"id": 10,
"name": "decimals",
"nodeType": "VariableDeclaration",
"scope": 243,
"src": "836:27:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 8,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "836:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"value": {
"argumentTypes": null,
"hexValue": "3138",
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "861:2:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_rational_18_by_1",
"typeString": "int_const 18"
},
"value": "18"
},
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 18,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 17,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 12,
"indexed": true,
"name": "src",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "888:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 11,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "888:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 14,
"indexed": true,
"name": "guy",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "909:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 13,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "909:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"indexed": false,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "930:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 15,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "930:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "887:52:0"
},
"src": "872:68:0"
},
{
"anonymous": false,
"documentation": null,
"id": 26,
"name": "Transfer",
"nodeType": "EventDefinition",
"parameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 20,
"indexed": true,
"name": "src",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "962:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 19,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "962:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 22,
"indexed": true,
"name": "dst",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "983:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 21,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "983:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 24,
"indexed": false,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "1004:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 23,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1004:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "961:52:0"
},
"src": "946:68:0"
},
{
"anonymous": false,
"documentation": null,
"id": 32,
"name": "Deposit",
"nodeType": "EventDefinition",
"parameters": {
"id": 31,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 28,
"indexed": true,
"name": "dst",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "1035:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 27,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1035:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 30,
"indexed": false,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "1056:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 29,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1056:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1034:31:0"
},
"src": "1020:46:0"
},
{
"anonymous": false,
"documentation": null,
"id": 38,
"name": "Withdrawal",
"nodeType": "EventDefinition",
"parameters": {
"id": 37,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 34,
"indexed": true,
"name": "src",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "1090:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 33,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1090:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 36,
"indexed": false,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "1111:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 35,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1111:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1089:31:0"
},
"src": "1072:49:0"
},
{
"constant": false,
"id": 42,
"name": "balanceOf",
"nodeType": "VariableDeclaration",
"scope": 243,
"src": "1129:65:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"typeName": {
"id": 41,
"keyType": {
"id": 39,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1138:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "1129:25:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"valueType": {
"id": 40,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1149:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
},
"value": null,
"visibility": "public"
},
{
"constant": false,
"id": 48,
"name": "allowance",
"nodeType": "VariableDeclaration",
"scope": 243,
"src": "1201:65:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
},
"typeName": {
"id": 47,
"keyType": {
"id": 43,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1210:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "1201:46:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
},
"valueType": {
"id": 46,
"keyType": {
"id": 44,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1230:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "1221:25:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"valueType": {
"id": 45,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1241:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
}
},
"value": null,
"visibility": "public"
},
{
"body": {
"id": 54,
"nodeType": "Block",
"src": "1301:28:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 51,
"name": "deposit",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 74,
"src": "1312:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
"typeString": "function ()"
}
},
"id": 52,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1312:9:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 53,
"nodeType": "ExpressionStatement",
"src": "1312:9:0"
}
]
},
"documentation": null,
"id": 55,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 49,
"nodeType": "ParameterList",
"parameters": [],
"src": "1283:2:0"
},
"payable": true,
"returnParameters": {
"id": 50,
"nodeType": "ParameterList",
"parameters": [],
"src": "1301:0:0"
},
"scope": 243,
"src": "1275:54:0",
"stateMutability": "payable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 73,
"nodeType": "Block",
"src": "1369:94:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"id": 64,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 58,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "1380:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 61,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 59,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1390:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 60,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1390:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "1380:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "+=",
"rightHandSide": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 62,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1405:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 63,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1405:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1380:34:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 65,
"nodeType": "ExpressionStatement",
"src": "1380:34:0"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 67,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1433:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 68,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1433:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 69,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1445:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 70,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1445:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 66,
"name": "Deposit",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 32,
"src": "1425:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
"typeString": "function (address,uint256)"
}
},
"id": 71,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1425:30:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 72,
"nodeType": "ExpressionStatement",
"src": "1425:30:0"
}
]
},
"documentation": null,
"id": 74,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "deposit",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 56,
"nodeType": "ParameterList",
"parameters": [],
"src": "1351:2:0"
},
"payable": true,
"returnParameters": {
"id": 57,
"nodeType": "ParameterList",
"parameters": [],
"src": "1369:0:0"
},
"scope": 243,
"src": "1335:128:0",
"stateMutability": "payable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 109,
"nodeType": "Block",
"src": "1504:168:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 85,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 80,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "1523:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 83,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 81,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1533:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 82,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1533:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1523:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">=",
"rightExpression": {
"argumentTypes": null,
"id": 84,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 76,
"src": "1548:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1523:28:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 79,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
261,
262
],
"referencedDeclaration": 261,
"src": "1515:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 86,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1515:37:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 87,
"nodeType": "ExpressionStatement",
"src": "1515:37:0"
},
{
"expression": {
"argumentTypes": null,
"id": 93,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 88,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "1563:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 91,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 89,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1573:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 90,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1573:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "1563:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "-=",
"rightHandSide": {
"argumentTypes": null,
"id": 92,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 76,
"src": "1588:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1563:28:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 94,
"nodeType": "ExpressionStatement",
"src": "1563:28:0"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 100,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 76,
"src": "1622:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 95,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1602:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 98,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1602:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 99,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "transfer",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1602:19:0",
"typeDescriptions": {
"typeIdentifier": "t_function_transfer_nonpayable$_t_uint256_$returns$__$",
"typeString": "function (uint256)"
}
},
"id": 101,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1602:24:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 102,
"nodeType": "ExpressionStatement",
"src": "1602:24:0"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 104,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1648:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 105,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1648:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 106,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 76,
"src": "1660:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 103,
"name": "Withdrawal",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 38,
"src": "1637:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
"typeString": "function (address,uint256)"
}
},
"id": 107,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1637:27:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 108,
"nodeType": "ExpressionStatement",
"src": "1637:27:0"
}
]
},
"documentation": null,
"id": 110,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "withdraw",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 77,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 76,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 110,
"src": "1487:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 75,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1487:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1486:10:0"
},
"payable": false,
"returnParameters": {
"id": 78,
"nodeType": "ParameterList",
"parameters": [],
"src": "1504:0:0"
},
"scope": 243,
"src": "1469:203:0",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 118,
"nodeType": "Block",
"src": "1730:38:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 115,
"name": "this",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 271,
"src": "1748:4:0",
"typeDescriptions": {
"typeIdentifier": "t_contract$_WETH9_$243",
"typeString": "contract WETH9"
}
},
"id": 116,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "balance",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1748:12:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"functionReturnParameters": 114,
"id": 117,
"nodeType": "Return",
"src": "1741:19:0"
}
]
},
"documentation": null,
"id": 119,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "totalSupply",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 111,
"nodeType": "ParameterList",
"parameters": [],
"src": "1700:2:0"
},
"payable": false,
"returnParameters": {
"id": 114,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 113,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 119,
"src": "1724:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 112,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1724:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1723:6:0"
},
"scope": 243,
"src": "1680:88:0",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 146,
"nodeType": "Block",
"src": "1838:114:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"id": 135,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 128,
"name": "allowance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 48,
"src": "1849:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
}
},
"id": 132,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 129,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1859:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 130,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1859:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1849:21:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 133,
"indexExpression": {
"argumentTypes": null,
"id": 131,
"name": "guy",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 121,
"src": "1871:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "1849:26:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"argumentTypes": null,
"id": 134,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 123,
"src": "1878:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1849:32:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 136,
"nodeType": "ExpressionStatement",
"src": "1849:32:0"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 138,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "1901:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 139,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "1901:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 140,
"name": "guy",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 121,
"src": "1913:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 141,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 123,
"src": "1918:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 137,
"name": "Approval",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 18,
"src": "1892:8:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
"typeString": "function (address,address,uint256)"
}
},
"id": 142,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1892:30:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 143,
"nodeType": "ExpressionStatement",
"src": "1892:30:0"
},
{
"expression": {
"argumentTypes": null,
"hexValue": "74727565",
"id": 144,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1940:4:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 127,
"id": 145,
"nodeType": "Return",
"src": "1933:11:0"
}
]
},
"documentation": null,
"id": 147,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 124,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 121,
"name": "guy",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "1793:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 120,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1793:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 123,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "1806:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 122,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1806:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1792:23:0"
},
"payable": false,
"returnParameters": {
"id": 127,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 126,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "1832:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 125,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1832:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1831:6:0"
},
"scope": 243,
"src": "1776:176:0",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 163,
"nodeType": "Block",
"src": "2023:60:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 157,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "2054:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 158,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "2054:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 159,
"name": "dst",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 149,
"src": "2066:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 160,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 151,
"src": "2071:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 156,
"name": "transferFrom",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 242,
"src": "2041:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
"typeString": "function (address,address,uint256) returns (bool)"
}
},
"id": 161,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2041:34:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 155,
"id": 162,
"nodeType": "Return",
"src": "2034:41:0"
}
]
},
"documentation": null,
"id": 164,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transfer",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 152,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 149,
"name": "dst",
"nodeType": "VariableDeclaration",
"scope": 164,
"src": "1978:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 148,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1978:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 151,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 164,
"src": "1991:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 150,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1991:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "1977:23:0"
},
"payable": false,
"returnParameters": {
"id": 155,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 154,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 164,
"src": "2017:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 153,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2017:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "2016:6:0"
},
"scope": 243,
"src": "1960:123:0",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 241,
"nodeType": "Block",
"src": "2194:369:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 180,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 176,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "2213:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 178,
"indexExpression": {
"argumentTypes": null,
"id": 177,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2223:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2213:14:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">=",
"rightExpression": {
"argumentTypes": null,
"id": 179,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2231:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2213:21:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 175,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
261,
262
],
"referencedDeclaration": 261,
"src": "2205:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 181,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2205:30:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 182,
"nodeType": "ExpressionStatement",
"src": "2205:30:0"
},
{
"condition": {
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"id": 198,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 186,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"id": 183,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2252:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 184,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "2259:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 185,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "2259:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2252:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "BinaryOperation",
"operator": "&&",
"rightExpression": {
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 197,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 187,
"name": "allowance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 48,
"src": "2273:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
}
},
"id": 189,
"indexExpression": {
"argumentTypes": null,
"id": 188,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2283:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2273:14:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 192,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 190,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "2288:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 191,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "2288:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2273:26:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 195,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "-",
"prefix": true,
"src": "2308:2:0",
"subExpression": {
"argumentTypes": null,
"hexValue": "31",
"id": 194,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2309:1:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_rational_1_by_1",
"typeString": "int_const 1"
},
"value": "1"
},
"typeDescriptions": {
"typeIdentifier": "t_rational_-1_by_1",
"typeString": "int_const -1"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_-1_by_1",
"typeString": "int_const -1"
}
],
"id": 193,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2303:4:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_uint256_$",
"typeString": "type(uint256)"
},
"typeName": "uint"
},
"id": 196,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2303:8:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2273:38:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"src": "2252:59:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"falseBody": null,
"id": 220,
"nodeType": "IfStatement",
"src": "2248:182:0",
"trueBody": {
"id": 219,
"nodeType": "Block",
"src": "2313:117:0",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 207,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 200,
"name": "allowance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 48,
"src": "2336:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
}
},
"id": 202,
"indexExpression": {
"argumentTypes": null,
"id": 201,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2346:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2336:14:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 205,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 203,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "2351:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 204,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "2351:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2336:26:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">=",
"rightExpression": {
"argumentTypes": null,
"id": 206,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2366:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2336:33:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 199,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
261,
262
],
"referencedDeclaration": 261,
"src": "2328:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 208,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2328:42:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 209,
"nodeType": "ExpressionStatement",
"src": "2328:42:0"
},
{
"expression": {
"argumentTypes": null,
"id": 217,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 210,
"name": "allowance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 48,
"src": "2385:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
"typeString": "mapping(address => mapping(address => uint256))"
}
},
"id": 214,
"indexExpression": {
"argumentTypes": null,
"id": 211,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2395:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2385:14:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 215,
"indexExpression": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 212,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 258,
"src": "2400:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 213,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "2400:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "2385:26:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "-=",
"rightHandSide": {
"argumentTypes": null,
"id": 216,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2415:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2385:33:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 218,
"nodeType": "ExpressionStatement",
"src": "2385:33:0"
}
]
}
},
{
"expression": {
"argumentTypes": null,
"id": 225,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 221,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "2442:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 223,
"indexExpression": {
"argumentTypes": null,
"id": 222,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2452:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "2442:14:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "-=",
"rightHandSide": {
"argumentTypes": null,
"id": 224,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2460:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2442:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 226,
"nodeType": "ExpressionStatement",
"src": "2442:21:0"
},
{
"expression": {
"argumentTypes": null,
"id": 231,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"argumentTypes": null,
"baseExpression": {
"argumentTypes": null,
"id": 227,
"name": "balanceOf",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "2474:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 229,
"indexExpression": {
"argumentTypes": null,
"id": 228,
"name": "dst",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 168,
"src": "2484:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "2474:14:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "+=",
"rightHandSide": {
"argumentTypes": null,
"id": 230,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2492:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "2474:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 232,
"nodeType": "ExpressionStatement",
"src": "2474:21:0"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 234,
"name": "src",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "2517:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 235,
"name": "dst",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 168,
"src": "2522:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 236,
"name": "wad",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 170,
"src": "2527:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 233,
"name": "Transfer",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 26,
"src": "2508:8:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
"typeString": "function (address,address,uint256)"
}
},
"id": 237,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2508:23:0",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 238,
"nodeType": "ExpressionStatement",
"src": "2508:23:0"
},
{
"expression": {
"argumentTypes": null,
"hexValue": "74727565",
"id": 239,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2551:4:0",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 174,
"id": 240,
"nodeType": "Return",
"src": "2544:11:0"
}
]
},
"documentation": null,
"id": 242,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 171,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 166,
"name": "src",
"nodeType": "VariableDeclaration",
"scope": 242,
"src": "2113:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 165,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2113:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 168,
"name": "dst",
"nodeType": "VariableDeclaration",
"scope": 242,
"src": "2126:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 167,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2126:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 170,
"name": "wad",
"nodeType": "VariableDeclaration",
"scope": 242,
"src": "2139:8:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 169,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "2139:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "2112:36:0"
},
"payable": false,
"returnParameters": {
"id": 174,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 173,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 242,
"src": "2183:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 172,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2183:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "2182:6:0"
},
"scope": 243,
"src": "2091:472:0",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
}
],
"scope": 244,
"src": "729:1837:0"
}
],
"src": "701:37700:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"sepolia:11155111": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"linkReferences": {},
"object": "60806040526040805190810160405280600d81526020017f57726170706564204574686572000000000000000000000000000000000000008152506000908051906020019061004f9291906100ca565b506040805190810160405280600481526020017f57455448000000000000000000000000000000000000000000000000000000008152506001908051906020019061009b9291906100ca565b506012600260006101000a81548160ff021916908360ff1602179055503480156100c457600080fd5b5061016f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010b57805160ff1916838001178555610139565b82800160010185558215610139579182015b8281111561013857825182559160200191906001019061011d565b5b509050610146919061014a565b5090565b61016c91905b80821115610168576000816000905550600101610150565b5090565b90565b610c848061017e6000396000f3006080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100b9578063095ea7b31461014957806318160ddd146101ae57806323b872dd146101d95780632e1a7d4d1461025e578063313ce5671461028b57806370a08231146102bc57806395d89b4114610313578063a9059cbb146103a3578063d0e30db014610408578063dd62ed3e14610412575b6100b7610489565b005b3480156100c557600080fd5b506100ce610526565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561010e5780820151818401526020810190506100f3565b50505050905090810190601f16801561013b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015557600080fd5b50610194600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c4565b604051808215151515815260200191505060405180910390f35b3480156101ba57600080fd5b506101c36106b6565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610244600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506106d5565b604051808215151515815260200191505060405180910390f35b34801561026a57600080fd5b5061028960048036038101908080359060200190929190505050610a22565b005b34801561029757600080fd5b506102a0610b55565b604051808260ff1660ff16815260200191505060405180910390f35b3480156102c857600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b68565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b50610328610b80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036857808201518184015260208101905061034d565b50505050905090810190601f1680156103955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103af57600080fd5b506103ee600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1e565b604051808215151515815260200191505060405180910390f35b610410610489565b005b34801561041e57600080fd5b50610473600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c33565b6040518082815260200191505060405180910390f35b34600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a2565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561072557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156107fd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b156109185781600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561088d57600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b81600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610a7057600080fd5b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b03573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a250565b600260009054906101000a900460ff1681565b60036020528060005260406000206000915090505481565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c165780601f10610beb57610100808354040283529160200191610c16565b820191906000526020600020905b815481529060010190602001808311610bf957829003601f168201915b505050505081565b6000610c2b3384846106d5565b905092915050565b60046020528160005260406000206020528060005260406000206000915091505054815600a165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5772617070656420457468657200000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4F SWAP3 SWAP2 SWAP1 PUSH2 0xCA JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5745544800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x9B SWAP3 SWAP2 SWAP1 PUSH2 0xCA JUMP JUMPDEST POP PUSH1 0x12 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0xC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16F JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH1 0x1F LT PUSH2 0x10B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x139 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x139 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x138 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x11D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x14A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x16C SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x168 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x150 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0xC84 DUP1 PUSH2 0x17E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN STOP PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xAF JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x412 JUMPI JUMPDEST PUSH2 0xB7 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCE PUSH2 0x526 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF3 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x13B JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x194 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C3 PUSH2 0x6B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x244 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x289 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xA22 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xB55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xB68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0xB80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x368 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x34D JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x395 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x410 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x473 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xE1FFFCC4923D04B559F4D29A8BFC6CDA04EB5B0D3C460751C2402C5C5CC9109C CALLVALUE PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x5BC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x591 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5BC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x59F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x7FD JUMPI POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x918 JUMPI DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x88D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0xA70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x7FCF532C15F0A6DB0BD6D0E038BEA71D30D808C7D98CB3BF7268A95BF5081B65 DUP3 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0xC16 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBEB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC16 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBF9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC2B CALLER DUP5 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP STOP LOG1 PUSH6 0x627A7A723058 KECCAK256 0xd1 MSTORE8 0x5f CREATE2 PUSH18 0xB7F00258566D81FF08490208597367467272 DUP4 0x47 DUP7 0xd 0xeb LT 0xee 0xb9 SWAP15 STOP 0x29 ",
"sourceMap": "729:1837:0:-;;;751:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;798:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;861:2;836:27;;;;;;;;;;;;;;;;;;;;729:1837;8:9:-1;5:2;;;30:1;27;20:12;5:2;729:1837:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"linkReferences": {},
"object": "6080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100b9578063095ea7b31461014957806318160ddd146101ae57806323b872dd146101d95780632e1a7d4d1461025e578063313ce5671461028b57806370a08231146102bc57806395d89b4114610313578063a9059cbb146103a3578063d0e30db014610408578063dd62ed3e14610412575b6100b7610489565b005b3480156100c557600080fd5b506100ce610526565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561010e5780820151818401526020810190506100f3565b50505050905090810190601f16801561013b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015557600080fd5b50610194600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c4565b604051808215151515815260200191505060405180910390f35b3480156101ba57600080fd5b506101c36106b6565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610244600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506106d5565b604051808215151515815260200191505060405180910390f35b34801561026a57600080fd5b5061028960048036038101908080359060200190929190505050610a22565b005b34801561029757600080fd5b506102a0610b55565b604051808260ff1660ff16815260200191505060405180910390f35b3480156102c857600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b68565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b50610328610b80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036857808201518184015260208101905061034d565b50505050905090810190601f1680156103955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103af57600080fd5b506103ee600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1e565b604051808215151515815260200191505060405180910390f35b610410610489565b005b34801561041e57600080fd5b50610473600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c33565b6040518082815260200191505060405180910390f35b34600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a2565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561072557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156107fd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b156109185781600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561088d57600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b81600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610a7057600080fd5b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b03573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a250565b600260009054906101000a900460ff1681565b60036020528060005260406000206000915090505481565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c165780601f10610beb57610100808354040283529160200191610c16565b820191906000526020600020905b815481529060010190602001808311610bf957829003601f168201915b505050505081565b6000610c2b3384846106d5565b905092915050565b60046020528160005260406000206020528060005260406000206000915091505054815600a165627a7a72305820d1535ffb71b7f00258566d81ff084902085973674672728347860deb10eeb99e0029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xAF JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x412 JUMPI JUMPDEST PUSH2 0xB7 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCE PUSH2 0x526 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF3 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x13B JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x194 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C3 PUSH2 0x6B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x244 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x289 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xA22 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xB55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xB68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0xB80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x368 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x34D JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x395 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x410 PUSH2 0x489 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x473 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0xC33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xE1FFFCC4923D04B559F4D29A8BFC6CDA04EB5B0D3C460751C2402C5C5CC9109C CALLVALUE PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x5BC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x591 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5BC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x59F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x7FD JUMPI POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x918 JUMPI DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0x88D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO ISZERO ISZERO PUSH2 0xA70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x7FCF532C15F0A6DB0BD6D0E038BEA71D30D808C7D98CB3BF7268A95BF5081B65 DUP3 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0xC16 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBEB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC16 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBF9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC2B CALLER DUP5 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP STOP LOG1 PUSH6 0x627A7A723058 KECCAK256 0xd1 MSTORE8 0x5f CREATE2 PUSH18 0xB7F00258566D81FF08490208597367467272 DUP4 0x47 DUP7 0xd 0xeb LT 0xee 0xb9 SWAP15 STOP 0x29 ",
"sourceMap": "729:1837:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312:9;:7;:9::i;:::-;729:1837;751:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;751:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;751:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1776:176;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1776:176:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1680:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1680:88:0;;;;;;;;;;;;;;;;;;;;;;;2091:472;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2091:472:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1469:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;836:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;836:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1129:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1129:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;798:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;798:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1960:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335:128;;;;;;1201:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1201:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335:128;1405:9;1380;:21;1390:10;1380:21;;;;;;;;;;;;;;;;:34;;;;;;;;;;;1433:10;1425:30;;;1445:9;1425:30;;;;;;;;;;;;;;;;;;1335:128::o;751:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1776:176::-;1832:4;1878:3;1849:9;:21;1859:10;1849:21;;;;;;;;;;;;;;;:26;1871:3;1849:26;;;;;;;;;;;;;;;:32;;;;1913:3;1892:30;;1901:10;1892:30;;;1918:3;1892:30;;;;;;;;;;;;;;;;;;1940:4;1933:11;;1776:176;;;;:::o;1680:88::-;1724:4;1748;:12;;;1741:19;;1680:88;:::o;2091:472::-;2183:4;2231:3;2213:9;:14;2223:3;2213:14;;;;;;;;;;;;;;;;:21;;2205:30;;;;;;;;2259:10;2252:17;;:3;:17;;;;:59;;;;;2308:2;2273:9;:14;2283:3;2273:14;;;;;;;;;;;;;;;:26;2288:10;2273:26;;;;;;;;;;;;;;;;:38;;2252:59;2248:182;;;2366:3;2336:9;:14;2346:3;2336:14;;;;;;;;;;;;;;;:26;2351:10;2336:26;;;;;;;;;;;;;;;;:33;;2328:42;;;;;;;;2415:3;2385:9;:14;2395:3;2385:14;;;;;;;;;;;;;;;:26;2400:10;2385:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;2248:182;2460:3;2442:9;:14;2452:3;2442:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;2492:3;2474:9;:14;2484:3;2474:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;2522:3;2508:23;;2517:3;2508:23;;;2527:3;2508:23;;;;;;;;;;;;;;;;;;2551:4;2544:11;;2091:472;;;;;:::o;1469:203::-;1548:3;1523:9;:21;1533:10;1523:21;;;;;;;;;;;;;;;;:28;;1515:37;;;;;;;;1588:3;1563:9;:21;1573:10;1563:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;1602:10;:19;;:24;1622:3;1602:24;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1602:24:0;1648:10;1637:27;;;1660:3;1637:27;;;;;;;;;;;;;;;;;;1469:203;:::o;836:27::-;;;;;;;;;;;;;:::o;1129:65::-;;;;;;;;;;;;;;;;;:::o;798:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1960:123::-;2017:4;2041:34;2054:10;2066:3;2071;2041:12;:34::i;:::-;2034:41;;1960:123;;;;:::o;1201:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "640800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "22099",
"allowance(address,address)": "850",
"approve(address,uint256)": "22353",
"balanceOf(address)": "664",
"decimals()": "552",
"deposit()": "22077",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "651",
"transfer(address,uint256)": "43395",
"transferFrom(address,address,uint256)": "64484",
"withdraw(uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"deposit()": "d0e30db0",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"withdraw(uint256)": "2e1a7d4d"
}
},
"abi": [
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "guy",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "src",
"type": "address"
},
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "wad",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "decimals",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "symbol",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "deposit",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
},
{
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "guy",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Deposit",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Withdrawal",
"type": "event"
}
]
}
{
"compiler": {
"version": "0.4.26+commit.4563c3fc"
},
"language": "Solidity",
"output": {
"abi": [
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "guy",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "src",
"type": "address"
},
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "wad",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "decimals",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "symbol",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "dst",
"type": "address"
},
{
"name": "wad",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "deposit",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "address"
},
{
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "guy",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "dst",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Deposit",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "src",
"type": "address"
},
{
"indexed": false,
"name": "wad",
"type": "uint256"
}
],
"name": "Withdrawal",
"type": "event"
}
],
"devdoc": {
"methods": {}
},
"userdoc": {
"methods": {}
}
},
"settings": {
"compilationTarget": {
"WETH9.sol": "WETH9"
},
"evmVersion": "byzantium",
"libraries": {},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"WETH9.sol": {
"keccak256": "0x4f98b4d0620142d8bea339d134eecd64cbd578b042cf6bc88cb3f23a13a4c893",
"urls": [
"bzzr://8f5718790b18ad332003e9f8386333ce182399563925546c3130699d4932de3e"
]
}
},
"version": 1
}
{
"language": "Solidity"
}
{
"0": {
"type": "LOCAL_WALLET",
"network": "TESTNET",
"public_key": "0x4A5dc8B7109CFeBd44d1cDae83773547871512D8",
"private_key": "0xd2f8047edbc6e8e1edec681955da31a2b15ed1622b66c7eb6427319c5e23f8b6"
},
"1": {
"type": "LOCAL_WALLET",
"network": "TESTNET",
"public_key": "0xC490B5ceF551850C1655886C756A3AFc894c9df1",
"private_key": "0x6403d94c119a2349f3f2d146271f2da5291bec461948d572b661a4652c8dd519"
}
}
// 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>.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment