POL Price: $0.218314 (-0.00%)
Gas: 30 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Set Approval For...349065762022-10-28 14:01:22907 days ago1666965682IN
0x70E98762...433e2180A
0 POL0.0012427550.17584116
Burn284042592022-05-16 21:45:041072 days ago1652737504IN
0x70E98762...433e2180A
0 POL0.013865500
Burn283906452022-05-16 13:29:111072 days ago1652707751IN
0x70E98762...433e2180A
0 POL0.0013165547.47775466
Burn257890492022-03-10 3:28:141140 days ago1646882894IN
0x70E98762...433e2180A
0 POL0.0008926732.19154904
Burn238892352022-01-19 2:13:551190 days ago1642558435IN
0x70E98762...433e2180A
0 POL0.0017719363.89971815
Burn230808992021-12-28 23:18:151211 days ago1640733495IN
0x70E98762...433e2180A
0 POL0.000525930
Burn230061462021-12-27 1:48:141213 days ago1640569694IN
0x70E98762...433e2180A
0 POL0.000525930
Burn229986112021-12-26 21:01:251213 days ago1640552485IN
0x70E98762...433e2180A
0 POL0.000525930
Burn229357682021-12-25 6:41:381215 days ago1640414498IN
0x70E98762...433e2180A
0 POL0.00206854118
Burn229356822021-12-25 6:38:421215 days ago1640414322IN
0x70E98762...433e2180A
0 POL0.00224762106
Burn229086882021-12-24 14:09:101215 days ago1640354950IN
0x70E98762...433e2180A
0 POL0.000975930
Burn228942762021-12-24 5:06:091216 days ago1640322369IN
0x70E98762...433e2180A
0 POL0.000525930
Burn227465632021-12-20 11:03:111219 days ago1639998191IN
0x70E98762...433e2180A
0 POL0.000525930
Set Approval For...227103892021-12-19 13:03:321220 days ago1639919012IN
0x70E98762...433e2180A
0 POL0.001400430
Burn226100962021-12-16 23:50:381223 days ago1639698638IN
0x70E98762...433e2180A
0 POL0.00003762.14519934
Burn225482402021-12-15 9:53:421224 days ago1639562022IN
0x70E98762...433e2180A
0 POL0.000525930
Set Approval For...224165932021-12-12 0:48:111228 days ago1639270091IN
0x70E98762...433e2180A
0 POL0.001400430
Burn223847532021-12-11 5:10:401229 days ago1639199440IN
0x70E98762...433e2180A
0 POL0.000525930
Burn221482752021-12-05 2:29:391235 days ago1638671379IN
0x70E98762...433e2180A
0 POL0.000525930
Burn221119962021-12-04 4:04:141236 days ago1638590654IN
0x70E98762...433e2180A
0 POL0.000525930
Burn220805692021-12-03 7:36:501237 days ago1638517010IN
0x70E98762...433e2180A
0 POL0.000975930
Burn220558402021-12-02 16:36:371237 days ago1638462997IN
0x70E98762...433e2180A
0 POL0.000525930
Set Approval For...220297302021-12-02 0:04:191238 days ago1638403459IN
0x70E98762...433e2180A
0 POL0.0015544433.3
Set Approval For...219621282021-11-30 5:24:111240 days ago1638249851IN
0x70E98762...433e2180A
0 POL0.001400430
Burn218026852021-11-26 0:12:361244 days ago1637885556IN
0x70E98762...433e2180A
0 POL0.000525930
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PumpkinPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PumpkinPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/token/ERC1155/ERC1155.sol";
import "./JunkyardScraps.sol";

contract PumpkinPass is Ownable, ERC1155 {
  string public contractURI = "https://api.junkyarddogs.io/contract/";
  JunkyardScraps internal jys;
  uint256 public cost = 5;
  uint256 public supply = 5000;

  event UsePumpkinPass(address user, uint256 amount);

  constructor(address jysAddress) ERC1155("ipfs://QmRE3MAxF861wLg7shypfsKDhiswYkLyKm7XF4HuaUsJy7") {
    jys = JunkyardScraps(jysAddress);
  }

  function spendScraps(uint256 burnRate, uint256[] memory scrapIds, uint256[] memory scrapAmounts) internal returns (uint256) {
    uint256 totalSent = 0;
    for (uint256 i = 0; i < scrapIds.length; i++) {
      uint256 scrapId = scrapIds[i];
      uint256 scrapAmount = scrapAmounts[i];
      uint256 level = uint256(scrapId / 10) - 1;
      require(jys.balanceOf(msg.sender, scrapId) >= scrapAmount, "Must have enough scraps of that type");
      jys.burn(msg.sender, scrapId, scrapAmount);
      totalSent += scrapAmount * (burnRate ** level);
    }
    return totalSent;
  }

  function mint(address user, uint256 amount) public onlyOwner {
    require(supply >= amount, "Not enough supply");
    supply -= amount;
    _mint(user, 1, amount, "");
  }

  function purchase(uint256[] memory scrapIds, uint256[] memory scrapAmounts) public {
    require(supply > 0, "Not enough supply");
    uint256 burnRate = jys.burningRate();
    uint256 spent = spendScraps(burnRate, scrapIds, scrapAmounts);
    uint256 amount = spent / cost;
    require(amount >= 1, "You must at least buy 1 pumpkin pass");
    uint256 change = spent - amount * cost;

    supply -= amount;
    if (change > 0) {
      jys.mint(msg.sender, 1, change);
    }
    _mint(msg.sender, 1, amount, "");
  }

  function burn(uint256 amount) public {
    require(
        balanceOf(msg.sender, 1) >= amount,
        "Requires enough sprays to burn"
    );
    _burn(msg.sender, 1, amount);
    emit UsePumpkinPass(msg.sender, amount);
  }

  function setURI(string memory newURI) public onlyOwner {
    _setURI(newURI);
  }

  function setContractURI(string memory _cURI) public onlyOwner {
    contractURI = _cURI;
  }

  function setCost(uint256 c) public onlyOwner {
    cost = c;
  }
}

File 2 of 14 : Whitelist.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "openzeppelin-solidity/contracts/access/Ownable.sol";

contract Whitelist is Ownable {
  // address[] private whitelisted;
  mapping(address => bool) private whitelisted;

  function addWhitelistedAddress(address addr) public onlyOwner {
    whitelisted[addr] = true;
  }

  function removeWhitelistedAddress(address addr) public onlyOwner {
    whitelisted[addr] = false;
  }

  function checkWhitelist(address addr) internal view returns (bool) {
    return msg.sender == owner() || whitelisted[addr];    
  }

  modifier isWhitelisted {
    require(checkWhitelist(msg.sender), "Only whitelisted address can call this");
    _;
  }
}

File 3 of 14 : JunkyardScraps.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "openzeppelin-solidity/contracts/utils/Strings.sol";
import "openzeppelin-solidity/contracts/token/ERC1155/ERC1155.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "./Whitelist.sol";
import "./JunkyardDroppable.sol";
import "openzeppelin-solidity/contracts/utils/Strings.sol";

contract JunkyardScraps is Ownable, ERC1155, Whitelist, JunkyardDroppable1155 {
    using Strings for string;
    uint256 public burningRate = 4;
    string internal cURI = "https://api.junkyarddogs.io/contract/";
    event LevelUp(address account, uint256 tokenId);

    constructor() ERC1155("ipfs://QmUggyMxJ4dL5jrxoQ43Xi16UuLVNPuS1PxXvinhRyyx8Z/") {}
    // Level 1 -> 11,12,13,14,15
    // Level 2 -> 21,22,23,24,25
    // Level 3 -> 31,32,33,34,35

    function mintOfLevel(address account, uint256 level, uint256 amount) internal returns (uint256) {
      require(amount <= 200, "Amount requested too large");
      require(level >=1 && level <= 3, "Incorrect level");
      uint256 tokenId;
      for (uint256 i = 0; i < amount; i++) {
        uint256 random = uint256(keccak256(abi.encode(blockhash(block.number - i - 1), i))) % 5;
        tokenId = 10 * level + 1 + random;
        _mint(account, tokenId, 1, "");
      }
      return tokenId;
    }

    function balanceOfLevel(address account, uint256 level) public view returns (uint256) {
      uint256 balance = 0;
      for (uint256 i = 1; i <= 5; i++) {
        balance += balanceOf(account, 10 * level + i);
      }
      return balance;
    }

    function levelUp(uint256 level, uint256[] memory amounts) public {
      require(level == 1 || level == 2, "Must use a correct scrap level");
      require(amounts.length <= 5, "Incorrect amounts");
      uint256 totalAmount = 0;
      for (uint256 i = 0; i < amounts.length; i++) {
        require(balanceOf(msg.sender, 10 * level + i + 1) >= amounts[i], "You must have enough of that type of token");
        totalAmount += amounts[i];
      }
      require(totalAmount == burningRate, "Amount not equal to burning rate");
      for (uint256 i = 0; i < amounts.length; i++) {
        if (amounts[i] > 0) {
          _burn(msg.sender, 10 * level + i + 1, amounts[i]);
        }
      }
      uint256 tokenId = mintOfLevel(msg.sender, level + 1, 1);
      emit LevelUp(msg.sender, tokenId);
    }

    function mint(address holder, uint256 level, uint256 amount) public override isWhitelisted {
      require(level >= 1 && level <= 3, "Incorrect level");
      mintOfLevel(holder, level, amount);
    }

    function burn(address holder, uint256 tokenId, uint256 amount) public isWhitelisted {
      require(
          balanceOf(holder, tokenId) >= amount,
          "Requires enough scraps to burn"
      );
      _burn(holder, tokenId, amount);
    }

    function setBurningRate(uint256 _burningRate) public onlyOwner {
      burningRate = _burningRate;
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
      string memory baseURI = ERC1155.uri(tokenId);
      return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
    }

    function setURI(string memory newURI) public onlyOwner {
      _setURI(newURI);
    }

    function setContractURI(string memory _cURI) public onlyOwner {
      cURI = _cURI;
    }

    function contractURI() public view returns (string memory) {
      return cURI;
    }
}

File 4 of 14 : JunkyardDroppable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface JunkyardDroppable1155 {
  function mint(address holder, uint256 tokenId, uint256 amount) external;
}

interface JunkyardDroppable721 {
  function mint(address holder, uint256 amount) external;
}

File 5 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 11 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 13 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 14 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"jysAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UsePumpkinPass","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"scrapIds","type":"uint256[]"},{"internalType":"uint256[]","name":"scrapAmounts","type":"uint256[]"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"c","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260405180606001604052806025815260200162004467602591396004908051906020019062000035929190620001f0565b5060056006556113886007553480156200004e57600080fd5b506040516200448c3803806200448c8339818101604052810190620000749190620002b7565b6040518060600160405280603581526020016200443260359139620000ae620000a26200010860201b60201c565b6200011060201b60201c565b620000bf81620001d460201b60201c565b5080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003a1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060039080519060200190620001ec929190620001f0565b5050565b828054620001fe906200031d565b90600052602060002090601f0160209004810192826200022257600085556200026e565b82601f106200023d57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026d57825182559160200191906001019062000250565b5b5090506200027d919062000281565b5090565b5b808211156200029c57600081600090555060010162000282565b5090565b600081519050620002b18162000387565b92915050565b600060208284031215620002d057620002cf62000382565b5b6000620002e084828501620002a0565b91505092915050565b6000620002f682620002fd565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c62000353565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200039281620002e9565b81146200039e57600080fd5b50565b61408180620003b16000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80634e1273f4116100ad578063a22cb46511610071578063a22cb46514610318578063e8a3d48514610334578063e985e9c514610352578063f242432a14610382578063f2fde38b1461039e5761012b565b80634e1273f414610288578063715018a6146102b857806386f3b23d146102c25780638da5cb5b146102de578063938e3d7b146102fc5761012b565b806313faede6116100f457806313faede6146101fa5780632eb2c2d61461021857806340c10f191461023457806342966c681461025057806344a0d68a1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806302fe530514610190578063047fc9aa146101ac5780630e89341c146101ca575b600080fd5b61014a600480360381019061014591906128ac565b6103ba565b604051610157919061330f565b60405180910390f35b61017a600480360381019061017591906129dc565b610484565b6040516101879190613072565b60405180910390f35b6101aa60048036038101906101a59190612a36565b610566565b005b6101b46105ee565b6040516101c1919061330f565b60405180910390f35b6101e460048036038101906101df9190612a7f565b6105f4565b6040516101f1919061308d565b60405180910390f35b610202610688565b60405161020f919061330f565b60405180910390f35b610232600480360381019061022d9190612706565b61068e565b005b61024e600480360381019061024991906128ac565b61072f565b005b61026a60048036038101906102659190612a7f565b610829565b005b61028660048036038101906102819190612a7f565b6108be565b005b6102a2600480360381019061029d91906128ec565b610944565b6040516102af9190613019565b60405180910390f35b6102c0610a5d565b005b6102dc60048036038101906102d79190612964565b610ae5565b005b6102e6610d29565b6040516102f39190612ea5565b60405180910390f35b61031660048036038101906103119190612a36565b610d52565b005b610332600480360381019061032d919061286c565b610de8565b005b61033c610f69565b604051610349919061308d565b60405180910390f35b61036c600480360381019061036791906126c6565b610ff7565b6040516103799190613072565b60405180910390f35b61039c600480360381019061039791906127d5565b61108b565b005b6103b860048036038101906103b39190612699565b61112c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104229061310f565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055f575061055e82611224565b5b9050919050565b61056e61128e565b73ffffffffffffffffffffffffffffffffffffffff1661058c610d29565b73ffffffffffffffffffffffffffffffffffffffff16146105e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d99061322f565b60405180910390fd5b6105eb81611296565b50565b60075481565b606060038054610603906137f1565b80601f016020809104026020016040519081016040528092919081815260200182805461062f906137f1565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b50505050509050919050565b60065481565b61069661128e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106dc57506106db856106d661128e565b610ff7565b5b61071b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610712906131cf565b60405180910390fd5b61072885858585856112b0565b5050505050565b61073761128e565b73ffffffffffffffffffffffffffffffffffffffff16610755610d29565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a29061322f565b60405180910390fd5b8060075410156107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e7906130ef565b60405180910390fd5b806007600082825461080291906136f5565b9250508190555061082582600183604051806020016040528060008152506115c7565b5050565b806108353360016103ba565b1015610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d9061324f565b60405180910390fd5b6108823360018361175e565b7fdfd69e7449d29613cafd2b58d497898c1cc658166b12a4491156c3db179192be33826040516108b3929190612fb9565b60405180910390a150565b6108c661128e565b73ffffffffffffffffffffffffffffffffffffffff166108e4610d29565b73ffffffffffffffffffffffffffffffffffffffff161461093a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109319061322f565b60405180910390fd5b8060068190555050565b6060815183511461098a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109819061328f565b60405180910390fd5b6000835167ffffffffffffffff8111156109a7576109a6613959565b5b6040519080825280602002602001820160405280156109d55781602001602082028036833780820191505090505b50905060005b8451811015610a5257610a228582815181106109fa576109f961392a565b5b6020026020010151858381518110610a1557610a1461392a565b5b60200260200101516103ba565b828281518110610a3557610a3461392a565b5b60200260200101818152505080610a4b90613854565b90506109db565b508091505092915050565b610a6561128e565b73ffffffffffffffffffffffffffffffffffffffff16610a83610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061322f565b60405180910390fd5b610ae3600061197d565b565b600060075411610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906130ef565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e64c3e926040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9457600080fd5b505afa158015610ba8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcc9190612aac565b90506000610bdb828585611a41565b9050600060065482610bed91906134f9565b90506001811015610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a9061318f565b60405180910390fd5b600060065482610c43919061369b565b83610c4e91906136f5565b90508160076000828254610c6291906136f5565b925050819055506000811115610d0557600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663156e29f6336001846040518463ffffffff1660e01b8152600401610cd293929190612f82565b600060405180830381600087803b158015610cec57600080fd5b505af1158015610d00573d6000803e3d6000fd5b505050505b610d2133600184604051806020016040528060008152506115c7565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5a61128e565b73ffffffffffffffffffffffffffffffffffffffff16610d78610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061322f565b60405180910390fd5b8060049080519060200190610de492919061235c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16610e0761128e565b73ffffffffffffffffffffffffffffffffffffffff161415610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e559061326f565b60405180910390fd5b8060026000610e6b61128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1861128e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f5d9190613072565b60405180910390a35050565b60048054610f76906137f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa2906137f1565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109361128e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110d957506110d8856110d361128e565b610ff7565b5b611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061316f565b60405180910390fd5b6111258585858585611c74565b5050505050565b61113461128e565b73ffffffffffffffffffffffffffffffffffffffff16611152610d29565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f9061322f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061312f565b60405180910390fd5b6112218161197d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600390805190602001906112ac92919061235c565b5050565b81518351146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906132af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906131af565b60405180910390fd5b600061136e61128e565b905061137e818787878787611ef9565b60005b845181101561153257600085828151811061139f5761139e61392a565b5b6020026020010151905060008583815181106113be576113bd61392a565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114579061320f565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151791906134a3565b925050819055505050508061152b90613854565b9050611381565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115a992919061303b565b60405180910390a46115bf818787878787611f01565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906132cf565b60405180910390fd5b600061164161128e565b905061166281600087611653886120e8565b61165c886120e8565b87611ef9565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c291906134a3565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161174092919061332a565b60405180910390a461175781600087878787612162565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906131ef565b60405180910390fd5b60006117d861128e565b9050611808818560006117ea876120e8565b6117f3876120e8565b60405180602001604052806000815250611ef9565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061314f565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161196e92919061332a565b60405180910390a45050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000905060005b8451811015611c68576000858281518110611a6957611a6861392a565b5b602002602001015190506000858381518110611a8857611a8761392a565b5b6020026020010151905060006001600a84611aa391906134f9565b611aad91906136f5565b905081600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33866040518363ffffffff1660e01b8152600401611b0c929190612fb9565b60206040518083038186803b158015611b2457600080fd5b505afa158015611b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5c9190612aac565b1015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906132ef565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5298aca3385856040518463ffffffff1660e01b8152600401611bfc93929190612fe2565b600060405180830381600087803b158015611c1657600080fd5b505af1158015611c2a573d6000803e3d6000fd5b505050508089611c3a919061357d565b82611c45919061369b565b85611c5091906134a3565b94505050508080611c6090613854565b915050611a4b565b50809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906131af565b60405180910390fd5b6000611cee61128e565b9050611d0e818787611cff886120e8565b611d08886120e8565b87611ef9565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061320f565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5d91906134a3565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611eda92919061332a565b60405180910390a4611ef0828888888888612162565b50505050505050565b505050505050565b611f208473ffffffffffffffffffffffffffffffffffffffff16612349565b156120e0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f66959493929190612ec0565b602060405180830381600087803b158015611f8057600080fd5b505af1925050508015611fb157506040513d601f19601f82011682018060405250810190611fae9190612a09565b60015b61205757611fbd613988565b806308c379a0141561201a5750611fd2613f59565b80611fdd575061201c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011919061308d565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906130af565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d5906130cf565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561210757612106613959565b5b6040519080825280602002602001820160405280156121355781602001602082028036833780820191505090505b509050828160008151811061214d5761214c61392a565b5b60200260200101818152505080915050919050565b6121818473ffffffffffffffffffffffffffffffffffffffff16612349565b15612341578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016121c7959493929190612f28565b602060405180830381600087803b1580156121e157600080fd5b505af192505050801561221257506040513d601f19601f8201168201806040525081019061220f9190612a09565b60015b6122b85761221e613988565b806308c379a0141561227b5750612233613f59565b8061223e575061227d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612272919061308d565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af906130af565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461233f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612336906130cf565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612368906137f1565b90600052602060002090601f01602090048101928261238a57600085556123d1565b82601f106123a357805160ff19168380011785556123d1565b828001600101855582156123d1579182015b828111156123d05782518255916020019190600101906123b5565b5b5090506123de91906123e2565b5090565b5b808211156123fb5760008160009055506001016123e3565b5090565b600061241261240d84613378565b613353565b90508083825260208201905082856020860282011115612435576124346139af565b5b60005b85811015612465578161244b8882612563565b845260208401935060208301925050600181019050612438565b5050509392505050565b600061248261247d846133a4565b613353565b905080838252602082019050828560208602820111156124a5576124a46139af565b5b60005b858110156124d557816124bb888261266f565b8452602084019350602083019250506001810190506124a8565b5050509392505050565b60006124f26124ed846133d0565b613353565b90508281526020810184848401111561250e5761250d6139b4565b5b6125198482856137af565b509392505050565b600061253461252f84613401565b613353565b9050828152602081018484840111156125505761254f6139b4565b5b61255b8482856137af565b509392505050565b60008135905061257281613fef565b92915050565b600082601f83011261258d5761258c6139aa565b5b813561259d8482602086016123ff565b91505092915050565b600082601f8301126125bb576125ba6139aa565b5b81356125cb84826020860161246f565b91505092915050565b6000813590506125e381614006565b92915050565b6000813590506125f88161401d565b92915050565b60008151905061260d8161401d565b92915050565b600082601f830112612628576126276139aa565b5b81356126388482602086016124df565b91505092915050565b600082601f830112612656576126556139aa565b5b8135612666848260208601612521565b91505092915050565b60008135905061267e81614034565b92915050565b60008151905061269381614034565b92915050565b6000602082840312156126af576126ae6139be565b5b60006126bd84828501612563565b91505092915050565b600080604083850312156126dd576126dc6139be565b5b60006126eb85828601612563565b92505060206126fc85828601612563565b9150509250929050565b600080600080600060a08688031215612722576127216139be565b5b600061273088828901612563565b955050602061274188828901612563565b945050604086013567ffffffffffffffff811115612762576127616139b9565b5b61276e888289016125a6565b935050606086013567ffffffffffffffff81111561278f5761278e6139b9565b5b61279b888289016125a6565b925050608086013567ffffffffffffffff8111156127bc576127bb6139b9565b5b6127c888828901612613565b9150509295509295909350565b600080600080600060a086880312156127f1576127f06139be565b5b60006127ff88828901612563565b955050602061281088828901612563565b94505060406128218882890161266f565b93505060606128328882890161266f565b925050608086013567ffffffffffffffff811115612853576128526139b9565b5b61285f88828901612613565b9150509295509295909350565b60008060408385031215612883576128826139be565b5b600061289185828601612563565b92505060206128a2858286016125d4565b9150509250929050565b600080604083850312156128c3576128c26139be565b5b60006128d185828601612563565b92505060206128e28582860161266f565b9150509250929050565b60008060408385031215612903576129026139be565b5b600083013567ffffffffffffffff811115612921576129206139b9565b5b61292d85828601612578565b925050602083013567ffffffffffffffff81111561294e5761294d6139b9565b5b61295a858286016125a6565b9150509250929050565b6000806040838503121561297b5761297a6139be565b5b600083013567ffffffffffffffff811115612999576129986139b9565b5b6129a5858286016125a6565b925050602083013567ffffffffffffffff8111156129c6576129c56139b9565b5b6129d2858286016125a6565b9150509250929050565b6000602082840312156129f2576129f16139be565b5b6000612a00848285016125e9565b91505092915050565b600060208284031215612a1f57612a1e6139be565b5b6000612a2d848285016125fe565b91505092915050565b600060208284031215612a4c57612a4b6139be565b5b600082013567ffffffffffffffff811115612a6a57612a696139b9565b5b612a7684828501612641565b91505092915050565b600060208284031215612a9557612a946139be565b5b6000612aa38482850161266f565b91505092915050565b600060208284031215612ac257612ac16139be565b5b6000612ad084828501612684565b91505092915050565b6000612ae58383612e87565b60208301905092915050565b612afa81613729565b82525050565b6000612b0b82613442565b612b158185613470565b9350612b2083613432565b8060005b83811015612b51578151612b388882612ad9565b9750612b4383613463565b925050600181019050612b24565b5085935050505092915050565b612b678161373b565b82525050565b6000612b788261344d565b612b828185613481565b9350612b928185602086016137be565b612b9b816139c3565b840191505092915050565b612baf8161379d565b82525050565b6000612bc082613458565b612bca8185613492565b9350612bda8185602086016137be565b612be3816139c3565b840191505092915050565b6000612bfb603483613492565b9150612c06826139ee565b604082019050919050565b6000612c1e602883613492565b9150612c2982613a3d565b604082019050919050565b6000612c41601183613492565b9150612c4c82613a8c565b602082019050919050565b6000612c64602b83613492565b9150612c6f82613ab5565b604082019050919050565b6000612c87602683613492565b9150612c9282613b04565b604082019050919050565b6000612caa602483613492565b9150612cb582613b53565b604082019050919050565b6000612ccd602983613492565b9150612cd882613ba2565b604082019050919050565b6000612cf0602483613492565b9150612cfb82613bf1565b604082019050919050565b6000612d13602583613492565b9150612d1e82613c40565b604082019050919050565b6000612d36603283613492565b9150612d4182613c8f565b604082019050919050565b6000612d59602383613492565b9150612d6482613cde565b604082019050919050565b6000612d7c602a83613492565b9150612d8782613d2d565b604082019050919050565b6000612d9f602083613492565b9150612daa82613d7c565b602082019050919050565b6000612dc2601e83613492565b9150612dcd82613da5565b602082019050919050565b6000612de5602983613492565b9150612df082613dce565b604082019050919050565b6000612e08602983613492565b9150612e1382613e1d565b604082019050919050565b6000612e2b602883613492565b9150612e3682613e6c565b604082019050919050565b6000612e4e602183613492565b9150612e5982613ebb565b604082019050919050565b6000612e71602483613492565b9150612e7c82613f0a565b604082019050919050565b612e9081613793565b82525050565b612e9f81613793565b82525050565b6000602082019050612eba6000830184612af1565b92915050565b600060a082019050612ed56000830188612af1565b612ee26020830187612af1565b8181036040830152612ef48186612b00565b90508181036060830152612f088185612b00565b90508181036080830152612f1c8184612b6d565b90509695505050505050565b600060a082019050612f3d6000830188612af1565b612f4a6020830187612af1565b612f576040830186612e96565b612f646060830185612e96565b8181036080830152612f768184612b6d565b90509695505050505050565b6000606082019050612f976000830186612af1565b612fa46020830185612ba6565b612fb16040830184612e96565b949350505050565b6000604082019050612fce6000830185612af1565b612fdb6020830184612e96565b9392505050565b6000606082019050612ff76000830186612af1565b6130046020830185612e96565b6130116040830184612e96565b949350505050565b600060208201905081810360008301526130338184612b00565b905092915050565b600060408201905081810360008301526130558185612b00565b905081810360208301526130698184612b00565b90509392505050565b60006020820190506130876000830184612b5e565b92915050565b600060208201905081810360008301526130a78184612bb5565b905092915050565b600060208201905081810360008301526130c881612bee565b9050919050565b600060208201905081810360008301526130e881612c11565b9050919050565b6000602082019050818103600083015261310881612c34565b9050919050565b6000602082019050818103600083015261312881612c57565b9050919050565b6000602082019050818103600083015261314881612c7a565b9050919050565b6000602082019050818103600083015261316881612c9d565b9050919050565b6000602082019050818103600083015261318881612cc0565b9050919050565b600060208201905081810360008301526131a881612ce3565b9050919050565b600060208201905081810360008301526131c881612d06565b9050919050565b600060208201905081810360008301526131e881612d29565b9050919050565b6000602082019050818103600083015261320881612d4c565b9050919050565b6000602082019050818103600083015261322881612d6f565b9050919050565b6000602082019050818103600083015261324881612d92565b9050919050565b6000602082019050818103600083015261326881612db5565b9050919050565b6000602082019050818103600083015261328881612dd8565b9050919050565b600060208201905081810360008301526132a881612dfb565b9050919050565b600060208201905081810360008301526132c881612e1e565b9050919050565b600060208201905081810360008301526132e881612e41565b9050919050565b6000602082019050818103600083015261330881612e64565b9050919050565b60006020820190506133246000830184612e96565b92915050565b600060408201905061333f6000830185612e96565b61334c6020830184612e96565b9392505050565b600061335d61336e565b90506133698282613823565b919050565b6000604051905090565b600067ffffffffffffffff82111561339357613392613959565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133bf576133be613959565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133eb576133ea613959565b5b6133f4826139c3565b9050602081019050919050565b600067ffffffffffffffff82111561341c5761341b613959565b5b613425826139c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006134ae82613793565b91506134b983613793565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ee576134ed61389d565b5b828201905092915050565b600061350482613793565b915061350f83613793565b92508261351f5761351e6138cc565b5b828204905092915050565b6000808291508390505b6001851115613574578086048111156135505761354f61389d565b5b600185161561355f5780820291505b808102905061356d856139d4565b9450613534565b94509492505050565b600061358882613793565b915061359383613793565b92506135c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846135c8565b905092915050565b6000826135d85760019050613694565b816135e65760009050613694565b81600181146135fc576002811461360657613635565b6001915050613694565b60ff8411156136185761361761389d565b5b8360020a91508482111561362f5761362e61389d565b5b50613694565b5060208310610133831016604e8410600b841016171561366a5782820a9050838111156136655761366461389d565b5b613694565b613677848484600161352a565b9250905081840481111561368e5761368d61389d565b5b81810290505b9392505050565b60006136a682613793565b91506136b183613793565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ea576136e961389d565b5b828202905092915050565b600061370082613793565b915061370b83613793565b92508282101561371e5761371d61389d565b5b828203905092915050565b600061373482613773565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137a882613793565b9050919050565b82818337600083830152505050565b60005b838110156137dc5780820151818401526020810190506137c1565b838111156137eb576000848401525b50505050565b6000600282049050600182168061380957607f821691505b6020821081141561381d5761381c6138fb565b5b50919050565b61382c826139c3565b810181811067ffffffffffffffff8211171561384b5761384a613959565b5b80604052505050565b600061385f82613793565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138925761389161389d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156139a75760046000803e6139a46000516139e1565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206174206c656173742062757920312070756d706b696e2060008201527f7061737300000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526571756972657320656e6f7567682073707261797320746f206275726e0000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206861766520656e6f75676820736372617073206f6620746861742060008201527f7479706500000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613f6957613fec565b613f7161336e565b60043d036004823e80513d602482011167ffffffffffffffff82111715613f99575050613fec565b808201805167ffffffffffffffff811115613fb75750505050613fec565b80602083010160043d038501811115613fd4575050505050613fec565b613fe382602001850186613823565b82955050505050505b90565b613ff881613729565b811461400357600080fd5b50565b61400f8161373b565b811461401a57600080fd5b50565b61402681613747565b811461403157600080fd5b50565b61403d81613793565b811461404857600080fd5b5056fea2646970667358221220f0c8cef8a4ad2f5e9ab34865859ee9ff9beac8198e956cd662b8ac304d759b9864736f6c63430008070033697066733a2f2f516d5245334d417846383631774c67377368797066734b4468697377596b4c794b6d3758463448756155734a793768747470733a2f2f6170692e6a756e6b79617264646f67732e696f2f636f6e74726163742f0000000000000000000000001615236f3a8b1a91a9eba73525c1447d1777970f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80634e1273f4116100ad578063a22cb46511610071578063a22cb46514610318578063e8a3d48514610334578063e985e9c514610352578063f242432a14610382578063f2fde38b1461039e5761012b565b80634e1273f414610288578063715018a6146102b857806386f3b23d146102c25780638da5cb5b146102de578063938e3d7b146102fc5761012b565b806313faede6116100f457806313faede6146101fa5780632eb2c2d61461021857806340c10f191461023457806342966c681461025057806344a0d68a1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806302fe530514610190578063047fc9aa146101ac5780630e89341c146101ca575b600080fd5b61014a600480360381019061014591906128ac565b6103ba565b604051610157919061330f565b60405180910390f35b61017a600480360381019061017591906129dc565b610484565b6040516101879190613072565b60405180910390f35b6101aa60048036038101906101a59190612a36565b610566565b005b6101b46105ee565b6040516101c1919061330f565b60405180910390f35b6101e460048036038101906101df9190612a7f565b6105f4565b6040516101f1919061308d565b60405180910390f35b610202610688565b60405161020f919061330f565b60405180910390f35b610232600480360381019061022d9190612706565b61068e565b005b61024e600480360381019061024991906128ac565b61072f565b005b61026a60048036038101906102659190612a7f565b610829565b005b61028660048036038101906102819190612a7f565b6108be565b005b6102a2600480360381019061029d91906128ec565b610944565b6040516102af9190613019565b60405180910390f35b6102c0610a5d565b005b6102dc60048036038101906102d79190612964565b610ae5565b005b6102e6610d29565b6040516102f39190612ea5565b60405180910390f35b61031660048036038101906103119190612a36565b610d52565b005b610332600480360381019061032d919061286c565b610de8565b005b61033c610f69565b604051610349919061308d565b60405180910390f35b61036c600480360381019061036791906126c6565b610ff7565b6040516103799190613072565b60405180910390f35b61039c600480360381019061039791906127d5565b61108b565b005b6103b860048036038101906103b39190612699565b61112c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104229061310f565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055f575061055e82611224565b5b9050919050565b61056e61128e565b73ffffffffffffffffffffffffffffffffffffffff1661058c610d29565b73ffffffffffffffffffffffffffffffffffffffff16146105e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d99061322f565b60405180910390fd5b6105eb81611296565b50565b60075481565b606060038054610603906137f1565b80601f016020809104026020016040519081016040528092919081815260200182805461062f906137f1565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b50505050509050919050565b60065481565b61069661128e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106dc57506106db856106d661128e565b610ff7565b5b61071b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610712906131cf565b60405180910390fd5b61072885858585856112b0565b5050505050565b61073761128e565b73ffffffffffffffffffffffffffffffffffffffff16610755610d29565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a29061322f565b60405180910390fd5b8060075410156107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e7906130ef565b60405180910390fd5b806007600082825461080291906136f5565b9250508190555061082582600183604051806020016040528060008152506115c7565b5050565b806108353360016103ba565b1015610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d9061324f565b60405180910390fd5b6108823360018361175e565b7fdfd69e7449d29613cafd2b58d497898c1cc658166b12a4491156c3db179192be33826040516108b3929190612fb9565b60405180910390a150565b6108c661128e565b73ffffffffffffffffffffffffffffffffffffffff166108e4610d29565b73ffffffffffffffffffffffffffffffffffffffff161461093a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109319061322f565b60405180910390fd5b8060068190555050565b6060815183511461098a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109819061328f565b60405180910390fd5b6000835167ffffffffffffffff8111156109a7576109a6613959565b5b6040519080825280602002602001820160405280156109d55781602001602082028036833780820191505090505b50905060005b8451811015610a5257610a228582815181106109fa576109f961392a565b5b6020026020010151858381518110610a1557610a1461392a565b5b60200260200101516103ba565b828281518110610a3557610a3461392a565b5b60200260200101818152505080610a4b90613854565b90506109db565b508091505092915050565b610a6561128e565b73ffffffffffffffffffffffffffffffffffffffff16610a83610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061322f565b60405180910390fd5b610ae3600061197d565b565b600060075411610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906130ef565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e64c3e926040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9457600080fd5b505afa158015610ba8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcc9190612aac565b90506000610bdb828585611a41565b9050600060065482610bed91906134f9565b90506001811015610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a9061318f565b60405180910390fd5b600060065482610c43919061369b565b83610c4e91906136f5565b90508160076000828254610c6291906136f5565b925050819055506000811115610d0557600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663156e29f6336001846040518463ffffffff1660e01b8152600401610cd293929190612f82565b600060405180830381600087803b158015610cec57600080fd5b505af1158015610d00573d6000803e3d6000fd5b505050505b610d2133600184604051806020016040528060008152506115c7565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5a61128e565b73ffffffffffffffffffffffffffffffffffffffff16610d78610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061322f565b60405180910390fd5b8060049080519060200190610de492919061235c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16610e0761128e565b73ffffffffffffffffffffffffffffffffffffffff161415610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e559061326f565b60405180910390fd5b8060026000610e6b61128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1861128e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f5d9190613072565b60405180910390a35050565b60048054610f76906137f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa2906137f1565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109361128e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110d957506110d8856110d361128e565b610ff7565b5b611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061316f565b60405180910390fd5b6111258585858585611c74565b5050505050565b61113461128e565b73ffffffffffffffffffffffffffffffffffffffff16611152610d29565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f9061322f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061312f565b60405180910390fd5b6112218161197d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600390805190602001906112ac92919061235c565b5050565b81518351146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906132af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906131af565b60405180910390fd5b600061136e61128e565b905061137e818787878787611ef9565b60005b845181101561153257600085828151811061139f5761139e61392a565b5b6020026020010151905060008583815181106113be576113bd61392a565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114579061320f565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151791906134a3565b925050819055505050508061152b90613854565b9050611381565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115a992919061303b565b60405180910390a46115bf818787878787611f01565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906132cf565b60405180910390fd5b600061164161128e565b905061166281600087611653886120e8565b61165c886120e8565b87611ef9565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c291906134a3565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161174092919061332a565b60405180910390a461175781600087878787612162565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906131ef565b60405180910390fd5b60006117d861128e565b9050611808818560006117ea876120e8565b6117f3876120e8565b60405180602001604052806000815250611ef9565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061314f565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161196e92919061332a565b60405180910390a45050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000905060005b8451811015611c68576000858281518110611a6957611a6861392a565b5b602002602001015190506000858381518110611a8857611a8761392a565b5b6020026020010151905060006001600a84611aa391906134f9565b611aad91906136f5565b905081600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33866040518363ffffffff1660e01b8152600401611b0c929190612fb9565b60206040518083038186803b158015611b2457600080fd5b505afa158015611b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5c9190612aac565b1015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906132ef565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5298aca3385856040518463ffffffff1660e01b8152600401611bfc93929190612fe2565b600060405180830381600087803b158015611c1657600080fd5b505af1158015611c2a573d6000803e3d6000fd5b505050508089611c3a919061357d565b82611c45919061369b565b85611c5091906134a3565b94505050508080611c6090613854565b915050611a4b565b50809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906131af565b60405180910390fd5b6000611cee61128e565b9050611d0e818787611cff886120e8565b611d08886120e8565b87611ef9565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061320f565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5d91906134a3565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611eda92919061332a565b60405180910390a4611ef0828888888888612162565b50505050505050565b505050505050565b611f208473ffffffffffffffffffffffffffffffffffffffff16612349565b156120e0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f66959493929190612ec0565b602060405180830381600087803b158015611f8057600080fd5b505af1925050508015611fb157506040513d601f19601f82011682018060405250810190611fae9190612a09565b60015b61205757611fbd613988565b806308c379a0141561201a5750611fd2613f59565b80611fdd575061201c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011919061308d565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906130af565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d5906130cf565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561210757612106613959565b5b6040519080825280602002602001820160405280156121355781602001602082028036833780820191505090505b509050828160008151811061214d5761214c61392a565b5b60200260200101818152505080915050919050565b6121818473ffffffffffffffffffffffffffffffffffffffff16612349565b15612341578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016121c7959493929190612f28565b602060405180830381600087803b1580156121e157600080fd5b505af192505050801561221257506040513d601f19601f8201168201806040525081019061220f9190612a09565b60015b6122b85761221e613988565b806308c379a0141561227b5750612233613f59565b8061223e575061227d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612272919061308d565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af906130af565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461233f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612336906130cf565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612368906137f1565b90600052602060002090601f01602090048101928261238a57600085556123d1565b82601f106123a357805160ff19168380011785556123d1565b828001600101855582156123d1579182015b828111156123d05782518255916020019190600101906123b5565b5b5090506123de91906123e2565b5090565b5b808211156123fb5760008160009055506001016123e3565b5090565b600061241261240d84613378565b613353565b90508083825260208201905082856020860282011115612435576124346139af565b5b60005b85811015612465578161244b8882612563565b845260208401935060208301925050600181019050612438565b5050509392505050565b600061248261247d846133a4565b613353565b905080838252602082019050828560208602820111156124a5576124a46139af565b5b60005b858110156124d557816124bb888261266f565b8452602084019350602083019250506001810190506124a8565b5050509392505050565b60006124f26124ed846133d0565b613353565b90508281526020810184848401111561250e5761250d6139b4565b5b6125198482856137af565b509392505050565b600061253461252f84613401565b613353565b9050828152602081018484840111156125505761254f6139b4565b5b61255b8482856137af565b509392505050565b60008135905061257281613fef565b92915050565b600082601f83011261258d5761258c6139aa565b5b813561259d8482602086016123ff565b91505092915050565b600082601f8301126125bb576125ba6139aa565b5b81356125cb84826020860161246f565b91505092915050565b6000813590506125e381614006565b92915050565b6000813590506125f88161401d565b92915050565b60008151905061260d8161401d565b92915050565b600082601f830112612628576126276139aa565b5b81356126388482602086016124df565b91505092915050565b600082601f830112612656576126556139aa565b5b8135612666848260208601612521565b91505092915050565b60008135905061267e81614034565b92915050565b60008151905061269381614034565b92915050565b6000602082840312156126af576126ae6139be565b5b60006126bd84828501612563565b91505092915050565b600080604083850312156126dd576126dc6139be565b5b60006126eb85828601612563565b92505060206126fc85828601612563565b9150509250929050565b600080600080600060a08688031215612722576127216139be565b5b600061273088828901612563565b955050602061274188828901612563565b945050604086013567ffffffffffffffff811115612762576127616139b9565b5b61276e888289016125a6565b935050606086013567ffffffffffffffff81111561278f5761278e6139b9565b5b61279b888289016125a6565b925050608086013567ffffffffffffffff8111156127bc576127bb6139b9565b5b6127c888828901612613565b9150509295509295909350565b600080600080600060a086880312156127f1576127f06139be565b5b60006127ff88828901612563565b955050602061281088828901612563565b94505060406128218882890161266f565b93505060606128328882890161266f565b925050608086013567ffffffffffffffff811115612853576128526139b9565b5b61285f88828901612613565b9150509295509295909350565b60008060408385031215612883576128826139be565b5b600061289185828601612563565b92505060206128a2858286016125d4565b9150509250929050565b600080604083850312156128c3576128c26139be565b5b60006128d185828601612563565b92505060206128e28582860161266f565b9150509250929050565b60008060408385031215612903576129026139be565b5b600083013567ffffffffffffffff811115612921576129206139b9565b5b61292d85828601612578565b925050602083013567ffffffffffffffff81111561294e5761294d6139b9565b5b61295a858286016125a6565b9150509250929050565b6000806040838503121561297b5761297a6139be565b5b600083013567ffffffffffffffff811115612999576129986139b9565b5b6129a5858286016125a6565b925050602083013567ffffffffffffffff8111156129c6576129c56139b9565b5b6129d2858286016125a6565b9150509250929050565b6000602082840312156129f2576129f16139be565b5b6000612a00848285016125e9565b91505092915050565b600060208284031215612a1f57612a1e6139be565b5b6000612a2d848285016125fe565b91505092915050565b600060208284031215612a4c57612a4b6139be565b5b600082013567ffffffffffffffff811115612a6a57612a696139b9565b5b612a7684828501612641565b91505092915050565b600060208284031215612a9557612a946139be565b5b6000612aa38482850161266f565b91505092915050565b600060208284031215612ac257612ac16139be565b5b6000612ad084828501612684565b91505092915050565b6000612ae58383612e87565b60208301905092915050565b612afa81613729565b82525050565b6000612b0b82613442565b612b158185613470565b9350612b2083613432565b8060005b83811015612b51578151612b388882612ad9565b9750612b4383613463565b925050600181019050612b24565b5085935050505092915050565b612b678161373b565b82525050565b6000612b788261344d565b612b828185613481565b9350612b928185602086016137be565b612b9b816139c3565b840191505092915050565b612baf8161379d565b82525050565b6000612bc082613458565b612bca8185613492565b9350612bda8185602086016137be565b612be3816139c3565b840191505092915050565b6000612bfb603483613492565b9150612c06826139ee565b604082019050919050565b6000612c1e602883613492565b9150612c2982613a3d565b604082019050919050565b6000612c41601183613492565b9150612c4c82613a8c565b602082019050919050565b6000612c64602b83613492565b9150612c6f82613ab5565b604082019050919050565b6000612c87602683613492565b9150612c9282613b04565b604082019050919050565b6000612caa602483613492565b9150612cb582613b53565b604082019050919050565b6000612ccd602983613492565b9150612cd882613ba2565b604082019050919050565b6000612cf0602483613492565b9150612cfb82613bf1565b604082019050919050565b6000612d13602583613492565b9150612d1e82613c40565b604082019050919050565b6000612d36603283613492565b9150612d4182613c8f565b604082019050919050565b6000612d59602383613492565b9150612d6482613cde565b604082019050919050565b6000612d7c602a83613492565b9150612d8782613d2d565b604082019050919050565b6000612d9f602083613492565b9150612daa82613d7c565b602082019050919050565b6000612dc2601e83613492565b9150612dcd82613da5565b602082019050919050565b6000612de5602983613492565b9150612df082613dce565b604082019050919050565b6000612e08602983613492565b9150612e1382613e1d565b604082019050919050565b6000612e2b602883613492565b9150612e3682613e6c565b604082019050919050565b6000612e4e602183613492565b9150612e5982613ebb565b604082019050919050565b6000612e71602483613492565b9150612e7c82613f0a565b604082019050919050565b612e9081613793565b82525050565b612e9f81613793565b82525050565b6000602082019050612eba6000830184612af1565b92915050565b600060a082019050612ed56000830188612af1565b612ee26020830187612af1565b8181036040830152612ef48186612b00565b90508181036060830152612f088185612b00565b90508181036080830152612f1c8184612b6d565b90509695505050505050565b600060a082019050612f3d6000830188612af1565b612f4a6020830187612af1565b612f576040830186612e96565b612f646060830185612e96565b8181036080830152612f768184612b6d565b90509695505050505050565b6000606082019050612f976000830186612af1565b612fa46020830185612ba6565b612fb16040830184612e96565b949350505050565b6000604082019050612fce6000830185612af1565b612fdb6020830184612e96565b9392505050565b6000606082019050612ff76000830186612af1565b6130046020830185612e96565b6130116040830184612e96565b949350505050565b600060208201905081810360008301526130338184612b00565b905092915050565b600060408201905081810360008301526130558185612b00565b905081810360208301526130698184612b00565b90509392505050565b60006020820190506130876000830184612b5e565b92915050565b600060208201905081810360008301526130a78184612bb5565b905092915050565b600060208201905081810360008301526130c881612bee565b9050919050565b600060208201905081810360008301526130e881612c11565b9050919050565b6000602082019050818103600083015261310881612c34565b9050919050565b6000602082019050818103600083015261312881612c57565b9050919050565b6000602082019050818103600083015261314881612c7a565b9050919050565b6000602082019050818103600083015261316881612c9d565b9050919050565b6000602082019050818103600083015261318881612cc0565b9050919050565b600060208201905081810360008301526131a881612ce3565b9050919050565b600060208201905081810360008301526131c881612d06565b9050919050565b600060208201905081810360008301526131e881612d29565b9050919050565b6000602082019050818103600083015261320881612d4c565b9050919050565b6000602082019050818103600083015261322881612d6f565b9050919050565b6000602082019050818103600083015261324881612d92565b9050919050565b6000602082019050818103600083015261326881612db5565b9050919050565b6000602082019050818103600083015261328881612dd8565b9050919050565b600060208201905081810360008301526132a881612dfb565b9050919050565b600060208201905081810360008301526132c881612e1e565b9050919050565b600060208201905081810360008301526132e881612e41565b9050919050565b6000602082019050818103600083015261330881612e64565b9050919050565b60006020820190506133246000830184612e96565b92915050565b600060408201905061333f6000830185612e96565b61334c6020830184612e96565b9392505050565b600061335d61336e565b90506133698282613823565b919050565b6000604051905090565b600067ffffffffffffffff82111561339357613392613959565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133bf576133be613959565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133eb576133ea613959565b5b6133f4826139c3565b9050602081019050919050565b600067ffffffffffffffff82111561341c5761341b613959565b5b613425826139c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006134ae82613793565b91506134b983613793565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ee576134ed61389d565b5b828201905092915050565b600061350482613793565b915061350f83613793565b92508261351f5761351e6138cc565b5b828204905092915050565b6000808291508390505b6001851115613574578086048111156135505761354f61389d565b5b600185161561355f5780820291505b808102905061356d856139d4565b9450613534565b94509492505050565b600061358882613793565b915061359383613793565b92506135c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846135c8565b905092915050565b6000826135d85760019050613694565b816135e65760009050613694565b81600181146135fc576002811461360657613635565b6001915050613694565b60ff8411156136185761361761389d565b5b8360020a91508482111561362f5761362e61389d565b5b50613694565b5060208310610133831016604e8410600b841016171561366a5782820a9050838111156136655761366461389d565b5b613694565b613677848484600161352a565b9250905081840481111561368e5761368d61389d565b5b81810290505b9392505050565b60006136a682613793565b91506136b183613793565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ea576136e961389d565b5b828202905092915050565b600061370082613793565b915061370b83613793565b92508282101561371e5761371d61389d565b5b828203905092915050565b600061373482613773565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137a882613793565b9050919050565b82818337600083830152505050565b60005b838110156137dc5780820151818401526020810190506137c1565b838111156137eb576000848401525b50505050565b6000600282049050600182168061380957607f821691505b6020821081141561381d5761381c6138fb565b5b50919050565b61382c826139c3565b810181811067ffffffffffffffff8211171561384b5761384a613959565b5b80604052505050565b600061385f82613793565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138925761389161389d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156139a75760046000803e6139a46000516139e1565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206174206c656173742062757920312070756d706b696e2060008201527f7061737300000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526571756972657320656e6f7567682073707261797320746f206275726e0000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206861766520656e6f75676820736372617073206f6620746861742060008201527f7479706500000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613f6957613fec565b613f7161336e565b60043d036004823e80513d602482011167ffffffffffffffff82111715613f99575050613fec565b808201805167ffffffffffffffff811115613fb75750505050613fec565b80602083010160043d038501811115613fd4575050505050613fec565b613fe382602001850186613823565b82955050505050505b90565b613ff881613729565b811461400357600080fd5b50565b61400f8161373b565b811461401a57600080fd5b50565b61402681613747565b811461403157600080fd5b50565b61403d81613793565b811461404857600080fd5b5056fea2646970667358221220f0c8cef8a4ad2f5e9ab34865859ee9ff9beac8198e956cd662b8ac304d759b9864736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001615236f3a8b1a91a9eba73525c1447d1777970f

-----Decoded View---------------
Arg [0] : jysAddress (address): 0x1615236f3A8B1A91A9eBA73525C1447D1777970F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001615236f3a8b1a91a9eba73525c1447d1777970f


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.