ETH Price: $3,318.80 (-3.35%)
Gas: 21 Gwei

Token

HungryPandas (PANDAS)
 

Overview

Max Total Supply

925 PANDAS

Holders

492

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PANDAS
0xe82d07c4d9a5c0b034a65a30be149eb920f39c22
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HungryPanda

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : HungryPanda.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

contract HungryPanda is Ownable, ERC721Enumerable {

  uint public constant MAX_SUPPLY = 10000;
  uint public MINTED_SUPPLY = 0;
  string public baseTokenURI;
  bool public saleActive;
  bool public sealedTokenURI;
  uint public bambooBasePrice;

  constructor(string memory _baseTokenURI) ERC721("HungryPandas", "PANDAS")  {
    bambooBasePrice = 100000000000000; // 0.0001 ETH
    sealedTokenURI = false;
    saleActive = false;
    setBaseTokenURI(_baseTokenURI);
  }

  function flipActiveSwitch() external onlyOwner {
    saleActive = !saleActive;
  }

  function sealTokenURI() external onlyOwner {
    sealedTokenURI = true;
  }

  function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
    require(!sealedTokenURI, "baseURI is sealed");
    baseTokenURI = _baseTokenURI;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseTokenURI;
  }

    // maps panda tokenId to the bamboo owned
  mapping (uint => uint) public pandaBambooCount;

  function price(uint _pandaAmount, uint _bambooPerPanda) public view returns (uint) {
    // 0.03 ETH per panda + bamboo costs
    uint _price = (30000000000000000 + (_bambooPerPanda * bambooBasePrice))  * _pandaAmount;
    return _price;
  }

  function mintPandas(address _to, uint _amount, uint _bambooPerPanda) public payable {
    if (msg.sender != owner()) {
        require(saleActive, "Sale not active");
    }
    require(msg.value >= price(_amount, _bambooPerPanda), "Not enough ETH sent");
    require(MINTED_SUPPLY < MAX_SUPPLY, "Max supply reached");
    require(MINTED_SUPPLY + _amount <= MAX_SUPPLY, "Exceeds max supply");
    require(_amount <= 20, "Max 20 per txn");

    for (uint i = 0; i < _amount; i++) {
      pandaBambooCount[MINTED_SUPPLY] = _bambooPerPanda;
      _safeMint(_to, MINTED_SUPPLY);
      MINTED_SUPPLY++;
    }
  }

  function changeBambooBasePrice(uint _newPrice) external onlyOwner {
    bambooBasePrice = _newPrice;
  }

  function burnForBamboo(uint _burnThisPanda, uint _bambooReceiver) external {
    require(_exists(_burnThisPanda) && _exists(_bambooReceiver), "Panda does not exist");
    require(
      ownerOf(_burnThisPanda) == _msgSender() &&
      ownerOf(_bambooReceiver) == _msgSender(),
      "Must be owner of both pandas"
    );
    _burn(_burnThisPanda);
    pandaBambooCount[_bambooReceiver] += 300 + pandaBambooCount[_burnThisPanda];
    pandaBambooCount[_burnThisPanda] = 0;
  }

  function withdraw() external onlyOwner {
      payable(owner()).transfer(address(this).balance);
  }

  function pandasByOwner(address _owner) external view returns(uint256[] memory) {
      uint tokenBalance = balanceOf(_owner);

      uint256[] memory tokenIds = new uint256[](tokenBalance);
      for(uint i = 0; i < tokenBalance; i++){
          tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
      }

      return tokenIds;
  }


}

File 2 of 13 : 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 5 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 6 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 12 of 13 : 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 13 of 13 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bambooBasePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThisPanda","type":"uint256"},{"internalType":"uint256","name":"_bambooReceiver","type":"uint256"}],"name":"burnForBamboo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeBambooBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipActiveSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_bambooPerPanda","type":"uint256"}],"name":"mintPandas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pandaBambooCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"pandasByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pandaAmount","type":"uint256"},{"internalType":"uint256","name":"_bambooPerPanda","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealedTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b553480156200001657600080fd5b5060405162004e5538038062004e5583398181016040528101906200003c919062000438565b6040518060400160405280600c81526020017f48756e67727950616e64617300000000000000000000000000000000000000008152506040518060400160405280600681526020017f50414e44415300000000000000000000000000000000000000000000000000008152506000620000ba620001e760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200017092919062000316565b5080600290805190602001906200018992919062000316565b505050655af3107a4000600e819055506000600d60016101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff021916908315150217905550620001e081620001ef60201b60201c565b5062000687565b600033905090565b620001ff620001e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000225620002ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002759062000501565b60405180910390fd5b600d60019054906101000a900460ff1615620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c89062000523565b60405180910390fd5b80600c9080519060200190620002e992919062000316565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032490620005f3565b90600052602060002090601f01602090048101928262000348576000855562000394565b82601f106200036357805160ff191683800117855562000394565b8280016001018555821562000394579182015b828111156200039357825182559160200191906001019062000376565b5b509050620003a39190620003a7565b5090565b5b80821115620003c2576000816000905550600101620003a8565b5090565b6000620003dd620003d78462000579565b62000545565b905082815260208101848484011115620003f657600080fd5b62000403848285620005bd565b509392505050565b600082601f8301126200041d57600080fd5b81516200042f848260208601620003c6565b91505092915050565b6000602082840312156200044b57600080fd5b600082015167ffffffffffffffff8111156200046657600080fd5b62000474848285016200040b565b91505092915050565b60006200048c602083620005ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000620004ce601183620005ac565b91507f62617365555249206973207365616c65640000000000000000000000000000006000830152602082019050919050565b600060208201905081810360008301526200051c816200047d565b9050919050565b600060208201905081810360008301526200053e81620004bf565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200056f576200056e62000658565b5b8060405250919050565b600067ffffffffffffffff82111562000597576200059662000658565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005dd578082015181840152602081019050620005c0565b83811115620005ed576000848401525b50505050565b600060028204905060018216806200060c57607f821691505b6020821081141562000623576200062262000629565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6147be80620006976000396000f3fe6080604052600436106102045760003560e01c806368428a1b11610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610748578063e57b5a0a14610773578063e985e9c5146107b0578063f2fde38b146107ed578063f57c30561461081657610204565b8063b88d4fde146106a2578063b918a18a146106cb578063c87b56dd146106e2578063d1f669431461071f57610204565b80638ccaa638116100e75780638ccaa638146105f05780638da5cb5b1461060757806395d89b4114610632578063a22cb4651461065d578063b42948271461068657610204565b806368428a1b1461054657806370a0823114610571578063715018a6146105ae5780637b3cb40f146105c557610204565b806331264db11161019b578063487a23951161016a578063487a2395146104395780634b9f4bf4146104765780634f6ccce7146104a157806358d9a212146104de5780636352211e1461050957610204565b806331264db11461039157806332cb6b0c146103ce5780633ccfd60b146103f957806342842e0e1461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806330176e131461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133b5565b61083f565b60405161023d9190613f43565b60405180910390f35b34801561025257600080fd5b5061025b6108b9565b6040516102689190613f5e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613448565b61094b565b6040516102a59190613eba565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061332a565b6109d0565b005b3480156102e357600080fd5b506102ec610ae8565b6040516102f991906142c0565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613224565b610af5565b005b34801561033757600080fd5b50610352600480360381019061034d919061332a565b610b55565b60405161035f91906142c0565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613407565b610bfa565b005b34801561039d57600080fd5b506103b860048036038101906103b39190613448565b610ce0565b6040516103c591906142c0565b60405180910390f35b3480156103da57600080fd5b506103e3610cf8565b6040516103f091906142c0565b60405180910390f35b34801561040557600080fd5b5061040e610cfe565b005b34801561041c57600080fd5b5061043760048036038101906104329190613224565b610dca565b005b34801561044557600080fd5b50610460600480360381019061045b9190613471565b610dea565b60405161046d91906142c0565b60405180910390f35b34801561048257600080fd5b5061048b610e24565b6040516104989190613f43565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613448565b610e37565b6040516104d591906142c0565b60405180910390f35b3480156104ea57600080fd5b506104f3610ece565b60405161050091906142c0565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190613448565b610ed4565b60405161053d9190613eba565b60405180910390f35b34801561055257600080fd5b5061055b610f86565b6040516105689190613f43565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906131bf565b610f99565b6040516105a591906142c0565b60405180910390f35b3480156105ba57600080fd5b506105c3611051565b005b3480156105d157600080fd5b506105da61118b565b6040516105e791906142c0565b60405180910390f35b3480156105fc57600080fd5b50610605611191565b005b34801561061357600080fd5b5061061c61122a565b6040516106299190613eba565b60405180910390f35b34801561063e57600080fd5b50610647611253565b6040516106549190613f5e565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906132ee565b6112e5565b005b6106a0600480360381019061069b9190613366565b611466565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613273565b61167a565b005b3480156106d757600080fd5b506106e06116dc565b005b3480156106ee57600080fd5b5061070960048036038101906107049190613448565b611784565b6040516107169190613f5e565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613471565b61182b565b005b34801561075457600080fd5b5061075d6119b7565b60405161076a9190613f5e565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906131bf565b611a45565b6040516107a79190613f21565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906131e8565b611b3f565b6040516107e49190613f43565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f91906131bf565b611bd3565b005b34801561082257600080fd5b5061083d60048036038101906108389190613448565b611d7c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506108b182611e02565b5b9050919050565b6060600180546108c8906145b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906145b3565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611ee4565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90614140565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109db82610ed4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390614200565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6b611f50565b73ffffffffffffffffffffffffffffffffffffffff161480610a9a5750610a9981610a94611f50565b611b3f565b5b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906140a0565b60405180910390fd5b610ae38383611f58565b505050565b6000600980549050905090565b610b06610b00611f50565b82612011565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614220565b60405180910390fd5b610b508383836120ef565b505050565b6000610b6083610f99565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613f80565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c02611f50565b73ffffffffffffffffffffffffffffffffffffffff16610c2061122a565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614180565b60405180910390fd5b600d60019054906101000a900460ff1615610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614280565b60405180910390fd5b80600c9080519060200190610cdc929190612fe3565b5050565b600f6020528060005260406000206000915090505481565b61271081565b610d06611f50565b73ffffffffffffffffffffffffffffffffffffffff16610d2461122a565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614180565b60405180910390fd5b610d8261122a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dc7573d6000803e3d6000fd5b50565b610de58383836040518060200160405280600081525061167a565b505050565b60008083600e5484610dfc919061446f565b666a94d74f430000610e0e91906143e8565b610e18919061446f565b90508091505092915050565b600d60019054906101000a900460ff1681565b6000610e41610ae8565b8210610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990614260565b60405180910390fd5b60098281548110610ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f74906140e0565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906140c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611059611f50565b73ffffffffffffffffffffffffffffffffffffffff1661107761122a565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490614180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b611199611f50565b73ffffffffffffffffffffffffffffffffffffffff166111b761122a565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614180565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611262906145b3565b80601f016020809104026020016040519081016040528092919081815260200182805461128e906145b3565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b6112ed611f50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614020565b60405180910390fd5b8060066000611368611f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611415611f50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145a9190613f43565b60405180910390a35050565b61146e61122a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f057600d60009054906101000a900460ff166114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614080565b60405180910390fd5b5b6114fa8282610dea565b34101561153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906141e0565b60405180910390fd5b612710600b5410611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990614240565b60405180910390fd5b61271082600b5461159391906143e8565b11156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90614100565b60405180910390fd5b6014821115611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90614160565b60405180910390fd5b60005b828110156116745781600f6000600b5481526020019081526020016000208190555061164984600b5461234b565b600b600081548092919061165c906145e5565b9190505550808061166c906145e5565b91505061161b565b50505050565b61168b611685611f50565b83612011565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614220565b60405180910390fd5b6116d684848484612369565b50505050565b6116e4611f50565b73ffffffffffffffffffffffffffffffffffffffff1661170261122a565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614180565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606061178f82611ee4565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906141c0565b60405180910390fd5b60006117d86123c5565b905060008151116117f85760405180602001604052806000815250611823565b8061180284612457565b604051602001611813929190613e96565b6040516020818303038152906040525b915050919050565b61183482611ee4565b8015611845575061184481611ee4565b5b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90614040565b60405180910390fd5b61188c611f50565b73ffffffffffffffffffffffffffffffffffffffff166118ab83610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614801561190857506118d1611f50565b73ffffffffffffffffffffffffffffffffffffffff166118f082610ed4565b73ffffffffffffffffffffffffffffffffffffffff16145b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906142a0565b60405180910390fd5b61195082612604565b600f60008381526020019081526020016000205461012c61197191906143e8565b600f6000838152602001908152602001600020600082825461199391906143e8565b925050819055506000600f6000848152602001908152602001600020819055505050565b600c80546119c4906145b3565b80601f01602080910402602001604051908101604052809291908181526020018280546119f0906145b3565b8015611a3d5780601f10611a1257610100808354040283529160200191611a3d565b820191906000526020600020905b815481529060010190602001808311611a2057829003601f168201915b505050505081565b60606000611a5283610f99565b905060008167ffffffffffffffff811115611a96577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ac45781602001602082028036833780820191505090505b50905060005b82811015611b3457611adc8582610b55565b828281518110611b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611b2c906145e5565b915050611aca565b508092505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bdb611f50565b73ffffffffffffffffffffffffffffffffffffffff16611bf961122a565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690614180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613fc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611d84611f50565b73ffffffffffffffffffffffffffffffffffffffff16611da261122a565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614180565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ecd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611edd5750611edc82612715565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fcb83610ed4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061201c82611ee4565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290614060565b60405180910390fd5b600061206683610ed4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d557508373ffffffffffffffffffffffffffffffffffffffff166120bd8461094b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e657506120e58185611b3f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661210f82610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c906141a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90614000565b60405180910390fd5b6121e083838361277f565b6121eb600082611f58565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223b91906144c9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229291906143e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612365828260405180602001604052806000815250612893565b5050565b6123748484846120ef565b612380848484846128ee565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613fa0565b60405180910390fd5b50505050565b6060600c80546123d4906145b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612400906145b3565b801561244d5780601f106124225761010080835404028352916020019161244d565b820191906000526020600020905b81548152906001019060200180831161243057829003601f168201915b5050505050905090565b6060600082141561249f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ff565b600082905060005b600082146124d15780806124ba906145e5565b915050600a826124ca919061443e565b91506124a7565b60008167ffffffffffffffff811115612513577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125455781602001600182028036833780820191505090505b5090505b600085146125f85760018261255e91906144c9565b9150600a8561256d919061462e565b603061257991906143e8565b60f81b8183815181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f1919061443e565b9450612549565b8093505050505b919050565b600061260f82610ed4565b905061261d8160008461277f565b612628600083611f58565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267891906144c9565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61278a838383612a85565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127cd576127c881612a8a565b61280c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461280b5761280a8382612ad3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284f5761284a81612c40565b61288e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461288d5761288c8282612d83565b5b5b505050565b61289d8383612e02565b6128aa60008484846128ee565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090613fa0565b60405180910390fd5b505050565b600061290f8473ffffffffffffffffffffffffffffffffffffffff16612fd0565b15612a78578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612938611f50565b8786866040518563ffffffff1660e01b815260040161295a9493929190613ed5565b602060405180830381600087803b15801561297457600080fd5b505af19250505080156129a557506040513d601f19601f820116820180604052508101906129a291906133de565b60015b612a28573d80600081146129d5576040519150601f19603f3d011682016040523d82523d6000602084013e6129da565b606091505b50600081511415612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790613fa0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a7d565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae084610f99565b612aea91906144c9565b9050600060086000848152602001908152602001600020549050818114612bcf576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c5491906144c9565b90506000600a6000848152602001908152602001600020549050600060098381548110612caa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8e83610f99565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614120565b60405180910390fd5b612e7b81611ee4565b15612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb290613fe0565b60405180910390fd5b612ec76000838361277f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1791906143e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fef906145b3565b90600052602060002090601f0160209004810192826130115760008555613058565b82601f1061302a57805160ff1916838001178555613058565b82800160010185558215613058579182015b8281111561305757825182559160200191906001019061303c565b5b5090506130659190613069565b5090565b5b8082111561308257600081600090555060010161306a565b5090565b60006130996130948461430c565b6142db565b9050828152602081018484840111156130b157600080fd5b6130bc848285614571565b509392505050565b60006130d76130d28461433c565b6142db565b9050828152602081018484840111156130ef57600080fd5b6130fa848285614571565b509392505050565b6000813590506131118161472c565b92915050565b60008135905061312681614743565b92915050565b60008135905061313b8161475a565b92915050565b6000815190506131508161475a565b92915050565b600082601f83011261316757600080fd5b8135613177848260208601613086565b91505092915050565b600082601f83011261319157600080fd5b81356131a18482602086016130c4565b91505092915050565b6000813590506131b981614771565b92915050565b6000602082840312156131d157600080fd5b60006131df84828501613102565b91505092915050565b600080604083850312156131fb57600080fd5b600061320985828601613102565b925050602061321a85828601613102565b9150509250929050565b60008060006060848603121561323957600080fd5b600061324786828701613102565b935050602061325886828701613102565b9250506040613269868287016131aa565b9150509250925092565b6000806000806080858703121561328957600080fd5b600061329787828801613102565b94505060206132a887828801613102565b93505060406132b9878288016131aa565b925050606085013567ffffffffffffffff8111156132d657600080fd5b6132e287828801613156565b91505092959194509250565b6000806040838503121561330157600080fd5b600061330f85828601613102565b925050602061332085828601613117565b9150509250929050565b6000806040838503121561333d57600080fd5b600061334b85828601613102565b925050602061335c858286016131aa565b9150509250929050565b60008060006060848603121561337b57600080fd5b600061338986828701613102565b935050602061339a868287016131aa565b92505060406133ab868287016131aa565b9150509250925092565b6000602082840312156133c757600080fd5b60006133d58482850161312c565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613141565b91505092915050565b60006020828403121561341957600080fd5b600082013567ffffffffffffffff81111561343357600080fd5b61343f84828501613180565b91505092915050565b60006020828403121561345a57600080fd5b6000613468848285016131aa565b91505092915050565b6000806040838503121561348457600080fd5b6000613492858286016131aa565b92505060206134a3858286016131aa565b9150509250929050565b60006134b98383613e78565b60208301905092915050565b6134ce816144fd565b82525050565b60006134df8261437c565b6134e981856143aa565b93506134f48361436c565b8060005b8381101561352557815161350c88826134ad565b97506135178361439d565b9250506001810190506134f8565b5085935050505092915050565b61353b8161450f565b82525050565b600061354c82614387565b61355681856143bb565b9350613566818560208601614580565b61356f8161471b565b840191505092915050565b600061358582614392565b61358f81856143cc565b935061359f818560208601614580565b6135a88161471b565b840191505092915050565b60006135be82614392565b6135c881856143dd565b93506135d8818560208601614580565b80840191505092915050565b60006135f1602b836143cc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006136576032836143cc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136bd6026836143cc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613723601c836143cc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137636024836143cc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c96019836143cc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006138096014836143cc565b91507f50616e646120646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b6000613849602c836143cc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138af600f836143cc565b91507f53616c65206e6f742061637469766500000000000000000000000000000000006000830152602082019050919050565b60006138ef6038836143cc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613955602a836143cc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006139bb6029836143cc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a216012836143cc565b91507f45786365656473206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b6000613a616020836143cc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613aa1602c836143cc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b07600e836143cc565b91507f4d6178203230207065722074786e0000000000000000000000000000000000006000830152602082019050919050565b6000613b476020836143cc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b876029836143cc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bed602f836143cc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c536013836143cc565b91507f4e6f7420656e6f756768204554482073656e74000000000000000000000000006000830152602082019050919050565b6000613c936021836143cc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf96031836143cc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d5f6012836143cc565b91507f4d617820737570706c79207265616368656400000000000000000000000000006000830152602082019050919050565b6000613d9f602c836143cc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613e056011836143cc565b91507f62617365555249206973207365616c65640000000000000000000000000000006000830152602082019050919050565b6000613e45601c836143cc565b91507f4d757374206265206f776e6572206f6620626f74682070616e646173000000006000830152602082019050919050565b613e8181614567565b82525050565b613e9081614567565b82525050565b6000613ea282856135b3565b9150613eae82846135b3565b91508190509392505050565b6000602082019050613ecf60008301846134c5565b92915050565b6000608082019050613eea60008301876134c5565b613ef760208301866134c5565b613f046040830185613e87565b8181036060830152613f168184613541565b905095945050505050565b60006020820190508181036000830152613f3b81846134d4565b905092915050565b6000602082019050613f586000830184613532565b92915050565b60006020820190508181036000830152613f78818461357a565b905092915050565b60006020820190508181036000830152613f99816135e4565b9050919050565b60006020820190508181036000830152613fb98161364a565b9050919050565b60006020820190508181036000830152613fd9816136b0565b9050919050565b60006020820190508181036000830152613ff981613716565b9050919050565b6000602082019050818103600083015261401981613756565b9050919050565b60006020820190508181036000830152614039816137bc565b9050919050565b60006020820190508181036000830152614059816137fc565b9050919050565b600060208201905081810360008301526140798161383c565b9050919050565b60006020820190508181036000830152614099816138a2565b9050919050565b600060208201905081810360008301526140b9816138e2565b9050919050565b600060208201905081810360008301526140d981613948565b9050919050565b600060208201905081810360008301526140f9816139ae565b9050919050565b6000602082019050818103600083015261411981613a14565b9050919050565b6000602082019050818103600083015261413981613a54565b9050919050565b6000602082019050818103600083015261415981613a94565b9050919050565b6000602082019050818103600083015261417981613afa565b9050919050565b6000602082019050818103600083015261419981613b3a565b9050919050565b600060208201905081810360008301526141b981613b7a565b9050919050565b600060208201905081810360008301526141d981613be0565b9050919050565b600060208201905081810360008301526141f981613c46565b9050919050565b6000602082019050818103600083015261421981613c86565b9050919050565b6000602082019050818103600083015261423981613cec565b9050919050565b6000602082019050818103600083015261425981613d52565b9050919050565b6000602082019050818103600083015261427981613d92565b9050919050565b6000602082019050818103600083015261429981613df8565b9050919050565b600060208201905081810360008301526142b981613e38565b9050919050565b60006020820190506142d56000830184613e87565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614302576143016146ec565b5b8060405250919050565b600067ffffffffffffffff821115614327576143266146ec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614357576143566146ec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f382614567565b91506143fe83614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144335761443261465f565b5b828201905092915050565b600061444982614567565b915061445483614567565b9250826144645761446361468e565b5b828204905092915050565b600061447a82614567565b915061448583614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144be576144bd61465f565b5b828202905092915050565b60006144d482614567565b91506144df83614567565b9250828210156144f2576144f161465f565b5b828203905092915050565b600061450882614547565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561459e578082015181840152602081019050614583565b838111156145ad576000848401525b50505050565b600060028204905060018216806145cb57607f821691505b602082108114156145df576145de6146bd565b5b50919050565b60006145f082614567565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146235761462261465f565b5b600182019050919050565b600061463982614567565b915061464483614567565b9250826146545761465361468e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614735816144fd565b811461474057600080fd5b50565b61474c8161450f565b811461475757600080fd5b50565b6147638161451b565b811461476e57600080fd5b50565b61477a81614567565b811461478557600080fd5b5056fea264697066735822122034706a3567bfe8b4c5ab90cf68f7ac9ff95d9b0ac3d3ae8bdffd6ad23315195f64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e68756e67727970616e6461732e696f2f70616e64612f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806368428a1b11610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610748578063e57b5a0a14610773578063e985e9c5146107b0578063f2fde38b146107ed578063f57c30561461081657610204565b8063b88d4fde146106a2578063b918a18a146106cb578063c87b56dd146106e2578063d1f669431461071f57610204565b80638ccaa638116100e75780638ccaa638146105f05780638da5cb5b1461060757806395d89b4114610632578063a22cb4651461065d578063b42948271461068657610204565b806368428a1b1461054657806370a0823114610571578063715018a6146105ae5780637b3cb40f146105c557610204565b806331264db11161019b578063487a23951161016a578063487a2395146104395780634b9f4bf4146104765780634f6ccce7146104a157806358d9a212146104de5780636352211e1461050957610204565b806331264db11461039157806332cb6b0c146103ce5780633ccfd60b146103f957806342842e0e1461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806330176e131461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133b5565b61083f565b60405161023d9190613f43565b60405180910390f35b34801561025257600080fd5b5061025b6108b9565b6040516102689190613f5e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613448565b61094b565b6040516102a59190613eba565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061332a565b6109d0565b005b3480156102e357600080fd5b506102ec610ae8565b6040516102f991906142c0565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613224565b610af5565b005b34801561033757600080fd5b50610352600480360381019061034d919061332a565b610b55565b60405161035f91906142c0565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613407565b610bfa565b005b34801561039d57600080fd5b506103b860048036038101906103b39190613448565b610ce0565b6040516103c591906142c0565b60405180910390f35b3480156103da57600080fd5b506103e3610cf8565b6040516103f091906142c0565b60405180910390f35b34801561040557600080fd5b5061040e610cfe565b005b34801561041c57600080fd5b5061043760048036038101906104329190613224565b610dca565b005b34801561044557600080fd5b50610460600480360381019061045b9190613471565b610dea565b60405161046d91906142c0565b60405180910390f35b34801561048257600080fd5b5061048b610e24565b6040516104989190613f43565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613448565b610e37565b6040516104d591906142c0565b60405180910390f35b3480156104ea57600080fd5b506104f3610ece565b60405161050091906142c0565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190613448565b610ed4565b60405161053d9190613eba565b60405180910390f35b34801561055257600080fd5b5061055b610f86565b6040516105689190613f43565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906131bf565b610f99565b6040516105a591906142c0565b60405180910390f35b3480156105ba57600080fd5b506105c3611051565b005b3480156105d157600080fd5b506105da61118b565b6040516105e791906142c0565b60405180910390f35b3480156105fc57600080fd5b50610605611191565b005b34801561061357600080fd5b5061061c61122a565b6040516106299190613eba565b60405180910390f35b34801561063e57600080fd5b50610647611253565b6040516106549190613f5e565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906132ee565b6112e5565b005b6106a0600480360381019061069b9190613366565b611466565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613273565b61167a565b005b3480156106d757600080fd5b506106e06116dc565b005b3480156106ee57600080fd5b5061070960048036038101906107049190613448565b611784565b6040516107169190613f5e565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613471565b61182b565b005b34801561075457600080fd5b5061075d6119b7565b60405161076a9190613f5e565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906131bf565b611a45565b6040516107a79190613f21565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906131e8565b611b3f565b6040516107e49190613f43565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f91906131bf565b611bd3565b005b34801561082257600080fd5b5061083d60048036038101906108389190613448565b611d7c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506108b182611e02565b5b9050919050565b6060600180546108c8906145b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906145b3565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611ee4565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90614140565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109db82610ed4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390614200565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6b611f50565b73ffffffffffffffffffffffffffffffffffffffff161480610a9a5750610a9981610a94611f50565b611b3f565b5b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906140a0565b60405180910390fd5b610ae38383611f58565b505050565b6000600980549050905090565b610b06610b00611f50565b82612011565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614220565b60405180910390fd5b610b508383836120ef565b505050565b6000610b6083610f99565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613f80565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c02611f50565b73ffffffffffffffffffffffffffffffffffffffff16610c2061122a565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614180565b60405180910390fd5b600d60019054906101000a900460ff1615610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614280565b60405180910390fd5b80600c9080519060200190610cdc929190612fe3565b5050565b600f6020528060005260406000206000915090505481565b61271081565b610d06611f50565b73ffffffffffffffffffffffffffffffffffffffff16610d2461122a565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614180565b60405180910390fd5b610d8261122a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dc7573d6000803e3d6000fd5b50565b610de58383836040518060200160405280600081525061167a565b505050565b60008083600e5484610dfc919061446f565b666a94d74f430000610e0e91906143e8565b610e18919061446f565b90508091505092915050565b600d60019054906101000a900460ff1681565b6000610e41610ae8565b8210610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990614260565b60405180910390fd5b60098281548110610ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f74906140e0565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906140c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611059611f50565b73ffffffffffffffffffffffffffffffffffffffff1661107761122a565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490614180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b611199611f50565b73ffffffffffffffffffffffffffffffffffffffff166111b761122a565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614180565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611262906145b3565b80601f016020809104026020016040519081016040528092919081815260200182805461128e906145b3565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b6112ed611f50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614020565b60405180910390fd5b8060066000611368611f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611415611f50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145a9190613f43565b60405180910390a35050565b61146e61122a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f057600d60009054906101000a900460ff166114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614080565b60405180910390fd5b5b6114fa8282610dea565b34101561153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906141e0565b60405180910390fd5b612710600b5410611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990614240565b60405180910390fd5b61271082600b5461159391906143e8565b11156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90614100565b60405180910390fd5b6014821115611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90614160565b60405180910390fd5b60005b828110156116745781600f6000600b5481526020019081526020016000208190555061164984600b5461234b565b600b600081548092919061165c906145e5565b9190505550808061166c906145e5565b91505061161b565b50505050565b61168b611685611f50565b83612011565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614220565b60405180910390fd5b6116d684848484612369565b50505050565b6116e4611f50565b73ffffffffffffffffffffffffffffffffffffffff1661170261122a565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614180565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606061178f82611ee4565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906141c0565b60405180910390fd5b60006117d86123c5565b905060008151116117f85760405180602001604052806000815250611823565b8061180284612457565b604051602001611813929190613e96565b6040516020818303038152906040525b915050919050565b61183482611ee4565b8015611845575061184481611ee4565b5b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90614040565b60405180910390fd5b61188c611f50565b73ffffffffffffffffffffffffffffffffffffffff166118ab83610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614801561190857506118d1611f50565b73ffffffffffffffffffffffffffffffffffffffff166118f082610ed4565b73ffffffffffffffffffffffffffffffffffffffff16145b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906142a0565b60405180910390fd5b61195082612604565b600f60008381526020019081526020016000205461012c61197191906143e8565b600f6000838152602001908152602001600020600082825461199391906143e8565b925050819055506000600f6000848152602001908152602001600020819055505050565b600c80546119c4906145b3565b80601f01602080910402602001604051908101604052809291908181526020018280546119f0906145b3565b8015611a3d5780601f10611a1257610100808354040283529160200191611a3d565b820191906000526020600020905b815481529060010190602001808311611a2057829003601f168201915b505050505081565b60606000611a5283610f99565b905060008167ffffffffffffffff811115611a96577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ac45781602001602082028036833780820191505090505b50905060005b82811015611b3457611adc8582610b55565b828281518110611b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611b2c906145e5565b915050611aca565b508092505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bdb611f50565b73ffffffffffffffffffffffffffffffffffffffff16611bf961122a565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690614180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613fc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611d84611f50565b73ffffffffffffffffffffffffffffffffffffffff16611da261122a565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614180565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ecd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611edd5750611edc82612715565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fcb83610ed4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061201c82611ee4565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290614060565b60405180910390fd5b600061206683610ed4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d557508373ffffffffffffffffffffffffffffffffffffffff166120bd8461094b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e657506120e58185611b3f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661210f82610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c906141a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90614000565b60405180910390fd5b6121e083838361277f565b6121eb600082611f58565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223b91906144c9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229291906143e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612365828260405180602001604052806000815250612893565b5050565b6123748484846120ef565b612380848484846128ee565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613fa0565b60405180910390fd5b50505050565b6060600c80546123d4906145b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612400906145b3565b801561244d5780601f106124225761010080835404028352916020019161244d565b820191906000526020600020905b81548152906001019060200180831161243057829003601f168201915b5050505050905090565b6060600082141561249f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ff565b600082905060005b600082146124d15780806124ba906145e5565b915050600a826124ca919061443e565b91506124a7565b60008167ffffffffffffffff811115612513577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125455781602001600182028036833780820191505090505b5090505b600085146125f85760018261255e91906144c9565b9150600a8561256d919061462e565b603061257991906143e8565b60f81b8183815181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f1919061443e565b9450612549565b8093505050505b919050565b600061260f82610ed4565b905061261d8160008461277f565b612628600083611f58565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267891906144c9565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61278a838383612a85565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127cd576127c881612a8a565b61280c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461280b5761280a8382612ad3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284f5761284a81612c40565b61288e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461288d5761288c8282612d83565b5b5b505050565b61289d8383612e02565b6128aa60008484846128ee565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090613fa0565b60405180910390fd5b505050565b600061290f8473ffffffffffffffffffffffffffffffffffffffff16612fd0565b15612a78578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612938611f50565b8786866040518563ffffffff1660e01b815260040161295a9493929190613ed5565b602060405180830381600087803b15801561297457600080fd5b505af19250505080156129a557506040513d601f19601f820116820180604052508101906129a291906133de565b60015b612a28573d80600081146129d5576040519150601f19603f3d011682016040523d82523d6000602084013e6129da565b606091505b50600081511415612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790613fa0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a7d565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae084610f99565b612aea91906144c9565b9050600060086000848152602001908152602001600020549050818114612bcf576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c5491906144c9565b90506000600a6000848152602001908152602001600020549050600060098381548110612caa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8e83610f99565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614120565b60405180910390fd5b612e7b81611ee4565b15612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb290613fe0565b60405180910390fd5b612ec76000838361277f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1791906143e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fef906145b3565b90600052602060002090601f0160209004810192826130115760008555613058565b82601f1061302a57805160ff1916838001178555613058565b82800160010185558215613058579182015b8281111561305757825182559160200191906001019061303c565b5b5090506130659190613069565b5090565b5b8082111561308257600081600090555060010161306a565b5090565b60006130996130948461430c565b6142db565b9050828152602081018484840111156130b157600080fd5b6130bc848285614571565b509392505050565b60006130d76130d28461433c565b6142db565b9050828152602081018484840111156130ef57600080fd5b6130fa848285614571565b509392505050565b6000813590506131118161472c565b92915050565b60008135905061312681614743565b92915050565b60008135905061313b8161475a565b92915050565b6000815190506131508161475a565b92915050565b600082601f83011261316757600080fd5b8135613177848260208601613086565b91505092915050565b600082601f83011261319157600080fd5b81356131a18482602086016130c4565b91505092915050565b6000813590506131b981614771565b92915050565b6000602082840312156131d157600080fd5b60006131df84828501613102565b91505092915050565b600080604083850312156131fb57600080fd5b600061320985828601613102565b925050602061321a85828601613102565b9150509250929050565b60008060006060848603121561323957600080fd5b600061324786828701613102565b935050602061325886828701613102565b9250506040613269868287016131aa565b9150509250925092565b6000806000806080858703121561328957600080fd5b600061329787828801613102565b94505060206132a887828801613102565b93505060406132b9878288016131aa565b925050606085013567ffffffffffffffff8111156132d657600080fd5b6132e287828801613156565b91505092959194509250565b6000806040838503121561330157600080fd5b600061330f85828601613102565b925050602061332085828601613117565b9150509250929050565b6000806040838503121561333d57600080fd5b600061334b85828601613102565b925050602061335c858286016131aa565b9150509250929050565b60008060006060848603121561337b57600080fd5b600061338986828701613102565b935050602061339a868287016131aa565b92505060406133ab868287016131aa565b9150509250925092565b6000602082840312156133c757600080fd5b60006133d58482850161312c565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613141565b91505092915050565b60006020828403121561341957600080fd5b600082013567ffffffffffffffff81111561343357600080fd5b61343f84828501613180565b91505092915050565b60006020828403121561345a57600080fd5b6000613468848285016131aa565b91505092915050565b6000806040838503121561348457600080fd5b6000613492858286016131aa565b92505060206134a3858286016131aa565b9150509250929050565b60006134b98383613e78565b60208301905092915050565b6134ce816144fd565b82525050565b60006134df8261437c565b6134e981856143aa565b93506134f48361436c565b8060005b8381101561352557815161350c88826134ad565b97506135178361439d565b9250506001810190506134f8565b5085935050505092915050565b61353b8161450f565b82525050565b600061354c82614387565b61355681856143bb565b9350613566818560208601614580565b61356f8161471b565b840191505092915050565b600061358582614392565b61358f81856143cc565b935061359f818560208601614580565b6135a88161471b565b840191505092915050565b60006135be82614392565b6135c881856143dd565b93506135d8818560208601614580565b80840191505092915050565b60006135f1602b836143cc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006136576032836143cc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136bd6026836143cc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613723601c836143cc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137636024836143cc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c96019836143cc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006138096014836143cc565b91507f50616e646120646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b6000613849602c836143cc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138af600f836143cc565b91507f53616c65206e6f742061637469766500000000000000000000000000000000006000830152602082019050919050565b60006138ef6038836143cc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613955602a836143cc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006139bb6029836143cc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a216012836143cc565b91507f45786365656473206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b6000613a616020836143cc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613aa1602c836143cc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b07600e836143cc565b91507f4d6178203230207065722074786e0000000000000000000000000000000000006000830152602082019050919050565b6000613b476020836143cc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b876029836143cc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bed602f836143cc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c536013836143cc565b91507f4e6f7420656e6f756768204554482073656e74000000000000000000000000006000830152602082019050919050565b6000613c936021836143cc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf96031836143cc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d5f6012836143cc565b91507f4d617820737570706c79207265616368656400000000000000000000000000006000830152602082019050919050565b6000613d9f602c836143cc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613e056011836143cc565b91507f62617365555249206973207365616c65640000000000000000000000000000006000830152602082019050919050565b6000613e45601c836143cc565b91507f4d757374206265206f776e6572206f6620626f74682070616e646173000000006000830152602082019050919050565b613e8181614567565b82525050565b613e9081614567565b82525050565b6000613ea282856135b3565b9150613eae82846135b3565b91508190509392505050565b6000602082019050613ecf60008301846134c5565b92915050565b6000608082019050613eea60008301876134c5565b613ef760208301866134c5565b613f046040830185613e87565b8181036060830152613f168184613541565b905095945050505050565b60006020820190508181036000830152613f3b81846134d4565b905092915050565b6000602082019050613f586000830184613532565b92915050565b60006020820190508181036000830152613f78818461357a565b905092915050565b60006020820190508181036000830152613f99816135e4565b9050919050565b60006020820190508181036000830152613fb98161364a565b9050919050565b60006020820190508181036000830152613fd9816136b0565b9050919050565b60006020820190508181036000830152613ff981613716565b9050919050565b6000602082019050818103600083015261401981613756565b9050919050565b60006020820190508181036000830152614039816137bc565b9050919050565b60006020820190508181036000830152614059816137fc565b9050919050565b600060208201905081810360008301526140798161383c565b9050919050565b60006020820190508181036000830152614099816138a2565b9050919050565b600060208201905081810360008301526140b9816138e2565b9050919050565b600060208201905081810360008301526140d981613948565b9050919050565b600060208201905081810360008301526140f9816139ae565b9050919050565b6000602082019050818103600083015261411981613a14565b9050919050565b6000602082019050818103600083015261413981613a54565b9050919050565b6000602082019050818103600083015261415981613a94565b9050919050565b6000602082019050818103600083015261417981613afa565b9050919050565b6000602082019050818103600083015261419981613b3a565b9050919050565b600060208201905081810360008301526141b981613b7a565b9050919050565b600060208201905081810360008301526141d981613be0565b9050919050565b600060208201905081810360008301526141f981613c46565b9050919050565b6000602082019050818103600083015261421981613c86565b9050919050565b6000602082019050818103600083015261423981613cec565b9050919050565b6000602082019050818103600083015261425981613d52565b9050919050565b6000602082019050818103600083015261427981613d92565b9050919050565b6000602082019050818103600083015261429981613df8565b9050919050565b600060208201905081810360008301526142b981613e38565b9050919050565b60006020820190506142d56000830184613e87565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614302576143016146ec565b5b8060405250919050565b600067ffffffffffffffff821115614327576143266146ec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614357576143566146ec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f382614567565b91506143fe83614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144335761443261465f565b5b828201905092915050565b600061444982614567565b915061445483614567565b9250826144645761446361468e565b5b828204905092915050565b600061447a82614567565b915061448583614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144be576144bd61465f565b5b828202905092915050565b60006144d482614567565b91506144df83614567565b9250828210156144f2576144f161465f565b5b828203905092915050565b600061450882614547565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561459e578082015181840152602081019050614583565b838111156145ad576000848401525b50505050565b600060028204905060018216806145cb57607f821691505b602082108114156145df576145de6146bd565b5b50919050565b60006145f082614567565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146235761462261465f565b5b600182019050919050565b600061463982614567565b915061464483614567565b9250826146545761465361468e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614735816144fd565b811461474057600080fd5b50565b61474c8161450f565b811461475757600080fd5b50565b6147638161451b565b811461476e57600080fd5b50565b61477a81614567565b811461478557600080fd5b5056fea264697066735822122034706a3567bfe8b4c5ab90cf68f7ac9ff95d9b0ac3d3ae8bdffd6ad23315195f64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e68756e67727970616e6461732e696f2f70616e64612f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://api.hungrypandas.io/panda/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 68747470733a2f2f6170692e68756e67727970616e6461732e696f2f70616e64
Arg [3] : 612f000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.