ETH Price: $3,496.68 (+4.16%)
Gas: 3 Gwei

Token

The Winkybots (WBOT)
 

Overview

Max Total Supply

0 WBOT

Holders

3,842

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WBOT
0x9831F55adC5c8E0322F295B817219A5500425Afe
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,898 Winkybot NFTs have been generated by a super computer algorithm from 10 characteristics (body, eyes, background, vehicle...) and a total of 236 attributes. The Winkybots are all singular, but some of them are much rarer than others.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WBOToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract WBOToken is ERC721, ERC721URIStorage, Pausable, Ownable {
  using SafeMath for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private _tokenIdCounter;

  string private _baseTokenURI;

  uint256 public price = 70000000000000000;

  uint256 public MAX_TOKENS = 12111;

  struct TokensByDeadline {
    uint256 deadline;
    uint256 max;
  }

  TokensByDeadline[] public tokensByDeadlines;

  mapping (address => bool) public whitelist;

  constructor() ERC721("The Winkybots", "WBOT") {}

  function pause() public onlyOwner {
    _pause();
  }

  function unpause() public onlyOwner {
    _unpause();
  }

  function setBaseTokenURI(string memory _uri) public onlyOwner {
    _baseTokenURI = _uri;
  }

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

  function setPrice(uint _price) public onlyOwner {
    price = _price;
  }

  function addToWhitelist(address addr) public onlyOwner {
    whitelist[addr] = true;
  }
  
  function addListToWhitelist(address[] memory addrs) public onlyOwner {
    for (uint i = 0; i < addrs.length; i++) {
      whitelist[addrs[i]] = true;
    }
  }

  function deleteFromWhitelist(address addr) public onlyOwner {
    whitelist[addr] = false;
  }

  function addTokensByDeadlines(uint256 _deadline, uint256 _max) public onlyOwner {
    tokensByDeadlines.push(TokensByDeadline(_deadline, _max));
  }
  
  function deleteTokensByDeadlines(uint256 _index) public onlyOwner {
    delete tokensByDeadlines[_index];
  }

  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721, ERC721URIStorage)
    returns (string memory)
  {
    return super.tokenURI(tokenId);
  }

  function withdraw() public onlyOwner {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  function mint(uint numberOfTokens) public payable {
    require(whitelist[msg.sender] || !paused(), "Address must be whitelisted OR Not paused");
    require(msg.value >= price.mul(numberOfTokens), "Ether value sent is not correct");
    mintTokens(msg.sender, numberOfTokens);
  }

  function mintTokens(address to, uint numberOfTokens) private {
    require(_tokenIdCounter.current().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed MAX_TOKENS");
    
    for(uint i = 0; i < tokensByDeadlines.length; i++) {
      TokensByDeadline memory item = tokensByDeadlines[i];
      if(item.deadline > 0 && block.timestamp < item.deadline) {
        require(_tokenIdCounter.current().add(numberOfTokens) <= item.max, "Purchase would exceed period max");
      }
    }

    for(uint i = 0; i < numberOfTokens; i++) {
      uint256 mintIndex = _tokenIdCounter.current();
      if (mintIndex < MAX_TOKENS) {
	      _safeMint(to, mintIndex);
        _tokenIdCounter.increment();
      }
    }
  }

  function mintByOwner(address[] memory tos, uint[] memory amounts) public onlyOwner {
    for(uint i = 0; i < tos.length; i++) {
      mintTokens(tos[i], amounts[i]);
    }
  }
}

File 2 of 15 : 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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 15 : 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 9 of 15 : 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 10 of 15 : 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 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 14 of 15 : 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 15 of 15 : 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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addListToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"addTokensByDeadlines","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"deleteFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"deleteTokensByDeadlines","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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokensByDeadlines","outputs":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"max","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f8b0a10e470000600a55612f4f600b553480156200002257600080fd5b506040518060400160405280600d81526020017f5468652057696e6b79626f7473000000000000000000000000000000000000008152506040518060400160405280600481526020017f57424f54000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a7929190620001d2565b508060019080519060200190620000c0929190620001d2565b5050506000600760006101000a81548160ff021916908315150217905550620000fe620000f26200010460201b60201c565b6200010c60201b60201c565b620002e7565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e09062000282565b90600052602060002090601f01602090048101928262000204576000855562000250565b82601f106200021f57805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200024f57825182559160200191906001019062000232565b5b5090506200025f919062000263565b5090565b5b808211156200027e57600081600090555060010162000264565b5090565b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b1620002b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61461480620002f76000396000f3fe6080604052600436106101ee5760003560e01c80638456cb591161010d578063a22cb465116100a0578063e43252d71161006f578063e43252d7146106b1578063e985e9c5146106da578063ecfb5d1714610717578063f2fde38b14610740578063f47c84c514610769576101ee565b8063a22cb465146105f9578063b61d1bd414610622578063b88d4fde1461064b578063c87b56dd14610674576101ee565b80639b19251a116100dc5780639b19251a146105375780639cf7c4f114610574578063a035b1fe146105b2578063a0712d68146105dd576101ee565b80638456cb59146104a15780638da5cb5b146104b857806391b7f5ed146104e357806395d89b411461050c576101ee565b80633ccfd60b116101855780635c975abb116101545780635c975abb146103e55780636352211e1461041057806370a082311461044d578063715018a61461048a576101ee565b80633ccfd60b146103655780633f4ba83a1461037c57806342842e0e1461039357806344674be9146103bc576101ee565b80630ef89d99116101c15780630ef89d99146102c157806323b872dd146102ea5780632c3d8acb1461031357806330176e131461033c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061324f565b610794565b60405161022791906137c7565b60405180910390f35b34801561023c57600080fd5b50610245610876565b60405161025291906137e2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906132e2565b610908565b60405161028f9190613760565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613166565b61098d565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906132e2565b610aa5565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613060565b610b7f565b005b34801561031f57600080fd5b5061033a600480360381019061033591906131e3565b610bdf565b005b34801561034857600080fd5b50610363600480360381019061035e91906132a1565b610d09565b005b34801561037157600080fd5b5061037a610d9f565b005b34801561038857600080fd5b50610391610e6a565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613060565b610ef0565b005b3480156103c857600080fd5b506103e360048036038101906103de91906131a2565b610f10565b005b3480156103f157600080fd5b506103fa611047565b60405161040791906137c7565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906132e2565b61105e565b6040516104449190613760565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612ffb565b611110565b6040516104819190613ae4565b60405180910390f35b34801561049657600080fd5b5061049f6111c8565b005b3480156104ad57600080fd5b506104b6611250565b005b3480156104c457600080fd5b506104cd6112d6565b6040516104da9190613760565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906132e2565b611300565b005b34801561051857600080fd5b50610521611386565b60405161052e91906137e2565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190612ffb565b611418565b60405161056b91906137c7565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906132e2565b611438565b6040516105a9929190613aff565b60405180910390f35b3480156105be57600080fd5b506105c761146c565b6040516105d49190613ae4565b60405180910390f35b6105f760048036038101906105f291906132e2565b611472565b005b34801561060557600080fd5b50610620600480360381019061061b919061312a565b611572565b005b34801561062e57600080fd5b506106496004803603810190610644919061330b565b6116f3565b005b34801561065757600080fd5b50610672600480360381019061066d91906130af565b6117c9565b005b34801561068057600080fd5b5061069b600480360381019061069691906132e2565b61182b565b6040516106a891906137e2565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612ffb565b61183d565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190613024565b611914565b60405161070e91906137c7565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612ffb565b6119a8565b005b34801561074c57600080fd5b5061076760048036038101906107629190612ffb565b611a7f565b005b34801561077557600080fd5b5061077e611b77565b60405161078b9190613ae4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f575061086e82611b7d565b5b9050919050565b60606000805461088590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613e15565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611be7565b610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906139e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109988261105e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613a64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a28611c53565b73ffffffffffffffffffffffffffffffffffffffff161480610a575750610a5681610a51611c53565b611914565b5b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90613944565b60405180910390fd5b610aa08383611c5b565b505050565b610aad611c53565b73ffffffffffffffffffffffffffffffffffffffff16610acb6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613a04565b60405180910390fd5b600c8181548110610b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016000808201600090556001820160009055505050565b610b90610b8a611c53565b82611d14565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613a84565b60405180910390fd5b610bda838383611df2565b505050565b610be7611c53565b73ffffffffffffffffffffffffffffffffffffffff16610c056112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613a04565b60405180910390fd5b60005b8251811015610d0457610cf1838281518110610ca3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110610ce4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161204e565b8080610cfc90613e78565b915050610c5e565b505050565b610d11611c53565b73ffffffffffffffffffffffffffffffffffffffff16610d2f6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613a04565b60405180910390fd5b8060099080519060200190610d9b929190612cf3565b5050565b610da7611c53565b73ffffffffffffffffffffffffffffffffffffffff16610dc56112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290613a04565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e66573d6000803e3d6000fd5b5050565b610e72611c53565b73ffffffffffffffffffffffffffffffffffffffff16610e906112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613a04565b60405180910390fd5b610eee61220e565b565b610f0b838383604051806020016040528060008152506117c9565b505050565b610f18611c53565b73ffffffffffffffffffffffffffffffffffffffff16610f366112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613a04565b60405180910390fd5b60005b8151811015611043576001600d6000848481518110610fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061103b90613e78565b915050610f8f565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613984565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613964565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111d0611c53565b73ffffffffffffffffffffffffffffffffffffffff166111ee6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613a04565b60405180910390fd5b61124e60006122b0565b565b611258611c53565b73ffffffffffffffffffffffffffffffffffffffff166112766112d6565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613a04565b60405180910390fd5b6112d4612376565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611308611c53565b73ffffffffffffffffffffffffffffffffffffffff166113266112d6565b73ffffffffffffffffffffffffffffffffffffffff161461137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613a04565b60405180910390fd5b80600a8190555050565b60606001805461139590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546113c190613e15565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c818154811061144857600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b600a5481565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114cf57506114cd611047565b155b61150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613aa4565b60405180910390fd5b61152381600a5461241990919063ffffffff16565b341015611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c906138e4565b60405180910390fd5b61156f338261204e565b50565b61157a611c53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906138c4565b60405180910390fd5b80600560006115f5611c53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a2611c53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e791906137c7565b60405180910390a35050565b6116fb611c53565b73ffffffffffffffffffffffffffffffffffffffff166117196112d6565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613a04565b60405180910390fd5b600c6040518060400160405280848152602001838152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550505050565b6117da6117d4611c53565b83611d14565b611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613a84565b60405180910390fd5b6118258484848461242f565b50505050565b60606118368261248b565b9050919050565b611845611c53565b73ffffffffffffffffffffffffffffffffffffffff166118636112d6565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613a04565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119b0611c53565b73ffffffffffffffffffffffffffffffffffffffff166119ce6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613a04565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a87611c53565b73ffffffffffffffffffffffffffffffffffffffff16611aa56112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613864565b60405180910390fd5b611b74816122b0565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cce8361105e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d1f82611be7565b611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613904565b60405180910390fd5b6000611d698361105e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dd857508373ffffffffffffffffffffffffffffffffffffffff16611dc084610908565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de95750611de88185611914565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e128261105e565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613a24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906138a4565b60405180910390fd5b611ee38383836125dd565b611eee600082611c5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3e9190613d2b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f959190613c4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600b5461206d8261205f60086125e2565b6125f090919063ffffffff16565b11156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613ac4565b60405180910390fd5b60005b600c805490508110156121bc576000600c82815481106120fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050600081600001511180156121405750806000015142105b156121a85780602001516121668461215860086125e2565b6125f090919063ffffffff16565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613804565b60405180910390fd5b5b5080806121b490613e78565b9150506120b1565b5060005b818110156122095760006121d460086125e2565b9050600b548110156121f5576121ea8482612606565b6121f46008612624565b5b50808061220190613e78565b9150506121c0565b505050565b612216611047565b612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90613824565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612299611c53565b6040516122a69190613760565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61237e611047565b156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613924565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612402611c53565b60405161240f9190613760565b60405180910390a1565b600081836124279190613cd1565b905092915050565b61243a848484611df2565b6124468484848461263a565b612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90613844565b60405180910390fd5b50505050565b606061249682611be7565b6124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc906139c4565b60405180910390fd5b60006006600084815260200190815260200160002080546124f590613e15565b80601f016020809104026020016040519081016040528092919081815260200182805461252190613e15565b801561256e5780601f106125435761010080835404028352916020019161256e565b820191906000526020600020905b81548152906001019060200180831161255157829003601f168201915b50505050509050600061257f6127d1565b90506000815114156125955781925050506125d8565b6000825111156125ca5780826040516020016125b292919061373c565b604051602081830303815290604052925050506125d8565b6125d384612863565b925050505b919050565b505050565b600081600001549050919050565b600081836125fe9190613c4a565b905092915050565b61262082826040518060200160405280600081525061290a565b5050565b6001816000016000828254019250508190555050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612965565b156127c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611c53565b8786866040518563ffffffff1660e01b81526004016126a6949392919061377b565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee9190613278565b60015b612774573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b5060008151141561276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390613844565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c9565b600190505b949350505050565b6060600980546127e090613e15565b80601f016020809104026020016040519081016040528092919081815260200182805461280c90613e15565b80156128595780601f1061282e57610100808354040283529160200191612859565b820191906000526020600020905b81548152906001019060200180831161283c57829003601f168201915b5050505050905090565b606061286e82611be7565b6128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490613a44565b60405180910390fd5b60006128b76127d1565b905060008151116128d75760405180602001604052806000815250612902565b806128e184612978565b6040516020016128f292919061373c565b6040516020818303038152906040525b915050919050565b6129148383612b25565b612921600084848461263a565b612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790613844565b60405180910390fd5b505050565b600080823b905060008111915050919050565b606060008214156129c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b20565b600082905060005b600082146129f25780806129db90613e78565b915050600a826129eb9190613ca0565b91506129c8565b60008167ffffffffffffffff811115612a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a665781602001600182028036833780820191505090505b5090505b60008514612b1957600182612a7f9190613d2b565b9150600a85612a8e9190613ec1565b6030612a9a9190613c4a565b60f81b818381518110612ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b129190613ca0565b9450612a6a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906139a4565b60405180910390fd5b612b9e81611be7565b15612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd590613884565b60405180910390fd5b612bea600083836125dd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3a9190613c4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cff90613e15565b90600052602060002090601f016020900481019282612d215760008555612d68565b82601f10612d3a57805160ff1916838001178555612d68565b82800160010185558215612d68579182015b82811115612d67578251825591602001919060010190612d4c565b5b509050612d759190612d79565b5090565b5b80821115612d92576000816000905550600101612d7a565b5090565b6000612da9612da484613b4d565b613b28565b90508083825260208201905082856020860282011115612dc857600080fd5b60005b85811015612df85781612dde8882612eea565b845260208401935060208301925050600181019050612dcb565b5050509392505050565b6000612e15612e1084613b79565b613b28565b90508083825260208201905082856020860282011115612e3457600080fd5b60005b85811015612e645781612e4a8882612fe6565b845260208401935060208301925050600181019050612e37565b5050509392505050565b6000612e81612e7c84613ba5565b613b28565b905082815260208101848484011115612e9957600080fd5b612ea4848285613dd3565b509392505050565b6000612ebf612eba84613bd6565b613b28565b905082815260208101848484011115612ed757600080fd5b612ee2848285613dd3565b509392505050565b600081359050612ef981614582565b92915050565b600082601f830112612f1057600080fd5b8135612f20848260208601612d96565b91505092915050565b600082601f830112612f3a57600080fd5b8135612f4a848260208601612e02565b91505092915050565b600081359050612f6281614599565b92915050565b600081359050612f77816145b0565b92915050565b600081519050612f8c816145b0565b92915050565b600082601f830112612fa357600080fd5b8135612fb3848260208601612e6e565b91505092915050565b600082601f830112612fcd57600080fd5b8135612fdd848260208601612eac565b91505092915050565b600081359050612ff5816145c7565b92915050565b60006020828403121561300d57600080fd5b600061301b84828501612eea565b91505092915050565b6000806040838503121561303757600080fd5b600061304585828601612eea565b925050602061305685828601612eea565b9150509250929050565b60008060006060848603121561307557600080fd5b600061308386828701612eea565b935050602061309486828701612eea565b92505060406130a586828701612fe6565b9150509250925092565b600080600080608085870312156130c557600080fd5b60006130d387828801612eea565b94505060206130e487828801612eea565b93505060406130f587828801612fe6565b925050606085013567ffffffffffffffff81111561311257600080fd5b61311e87828801612f92565b91505092959194509250565b6000806040838503121561313d57600080fd5b600061314b85828601612eea565b925050602061315c85828601612f53565b9150509250929050565b6000806040838503121561317957600080fd5b600061318785828601612eea565b925050602061319885828601612fe6565b9150509250929050565b6000602082840312156131b457600080fd5b600082013567ffffffffffffffff8111156131ce57600080fd5b6131da84828501612eff565b91505092915050565b600080604083850312156131f657600080fd5b600083013567ffffffffffffffff81111561321057600080fd5b61321c85828601612eff565b925050602083013567ffffffffffffffff81111561323957600080fd5b61324585828601612f29565b9150509250929050565b60006020828403121561326157600080fd5b600061326f84828501612f68565b91505092915050565b60006020828403121561328a57600080fd5b600061329884828501612f7d565b91505092915050565b6000602082840312156132b357600080fd5b600082013567ffffffffffffffff8111156132cd57600080fd5b6132d984828501612fbc565b91505092915050565b6000602082840312156132f457600080fd5b600061330284828501612fe6565b91505092915050565b6000806040838503121561331e57600080fd5b600061332c85828601612fe6565b925050602061333d85828601612fe6565b9150509250929050565b61335081613d5f565b82525050565b61335f81613d71565b82525050565b600061337082613c07565b61337a8185613c1d565b935061338a818560208601613de2565b61339381613fae565b840191505092915050565b60006133a982613c12565b6133b38185613c2e565b93506133c3818560208601613de2565b6133cc81613fae565b840191505092915050565b60006133e282613c12565b6133ec8185613c3f565b93506133fc818560208601613de2565b80840191505092915050565b6000613415602083613c2e565b915061342082613fbf565b602082019050919050565b6000613438601483613c2e565b915061344382613fe8565b602082019050919050565b600061345b603283613c2e565b915061346682614011565b604082019050919050565b600061347e602683613c2e565b915061348982614060565b604082019050919050565b60006134a1601c83613c2e565b91506134ac826140af565b602082019050919050565b60006134c4602483613c2e565b91506134cf826140d8565b604082019050919050565b60006134e7601983613c2e565b91506134f282614127565b602082019050919050565b600061350a601f83613c2e565b915061351582614150565b602082019050919050565b600061352d602c83613c2e565b915061353882614179565b604082019050919050565b6000613550601083613c2e565b915061355b826141c8565b602082019050919050565b6000613573603883613c2e565b915061357e826141f1565b604082019050919050565b6000613596602a83613c2e565b91506135a182614240565b604082019050919050565b60006135b9602983613c2e565b91506135c48261428f565b604082019050919050565b60006135dc602083613c2e565b91506135e7826142de565b602082019050919050565b60006135ff603183613c2e565b915061360a82614307565b604082019050919050565b6000613622602c83613c2e565b915061362d82614356565b604082019050919050565b6000613645602083613c2e565b9150613650826143a5565b602082019050919050565b6000613668602983613c2e565b9150613673826143ce565b604082019050919050565b600061368b602f83613c2e565b91506136968261441d565b604082019050919050565b60006136ae602183613c2e565b91506136b98261446c565b604082019050919050565b60006136d1603183613c2e565b91506136dc826144bb565b604082019050919050565b60006136f4602983613c2e565b91506136ff8261450a565b604082019050919050565b6000613717602083613c2e565b915061372282614559565b602082019050919050565b61373681613dc9565b82525050565b600061374882856133d7565b915061375482846133d7565b91508190509392505050565b60006020820190506137756000830184613347565b92915050565b60006080820190506137906000830187613347565b61379d6020830186613347565b6137aa604083018561372d565b81810360608301526137bc8184613365565b905095945050505050565b60006020820190506137dc6000830184613356565b92915050565b600060208201905081810360008301526137fc818461339e565b905092915050565b6000602082019050818103600083015261381d81613408565b9050919050565b6000602082019050818103600083015261383d8161342b565b9050919050565b6000602082019050818103600083015261385d8161344e565b9050919050565b6000602082019050818103600083015261387d81613471565b9050919050565b6000602082019050818103600083015261389d81613494565b9050919050565b600060208201905081810360008301526138bd816134b7565b9050919050565b600060208201905081810360008301526138dd816134da565b9050919050565b600060208201905081810360008301526138fd816134fd565b9050919050565b6000602082019050818103600083015261391d81613520565b9050919050565b6000602082019050818103600083015261393d81613543565b9050919050565b6000602082019050818103600083015261395d81613566565b9050919050565b6000602082019050818103600083015261397d81613589565b9050919050565b6000602082019050818103600083015261399d816135ac565b9050919050565b600060208201905081810360008301526139bd816135cf565b9050919050565b600060208201905081810360008301526139dd816135f2565b9050919050565b600060208201905081810360008301526139fd81613615565b9050919050565b60006020820190508181036000830152613a1d81613638565b9050919050565b60006020820190508181036000830152613a3d8161365b565b9050919050565b60006020820190508181036000830152613a5d8161367e565b9050919050565b60006020820190508181036000830152613a7d816136a1565b9050919050565b60006020820190508181036000830152613a9d816136c4565b9050919050565b60006020820190508181036000830152613abd816136e7565b9050919050565b60006020820190508181036000830152613add8161370a565b9050919050565b6000602082019050613af9600083018461372d565b92915050565b6000604082019050613b14600083018561372d565b613b21602083018461372d565b9392505050565b6000613b32613b43565b9050613b3e8282613e47565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6857613b67613f7f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9457613b93613f7f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bc057613bbf613f7f565b5b613bc982613fae565b9050602081019050919050565b600067ffffffffffffffff821115613bf157613bf0613f7f565b5b613bfa82613fae565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5582613dc9565b9150613c6083613dc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9557613c94613ef2565b5b828201905092915050565b6000613cab82613dc9565b9150613cb683613dc9565b925082613cc657613cc5613f21565b5b828204905092915050565b6000613cdc82613dc9565b9150613ce783613dc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2057613d1f613ef2565b5b828202905092915050565b6000613d3682613dc9565b9150613d4183613dc9565b925082821015613d5457613d53613ef2565b5b828203905092915050565b6000613d6a82613da9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e00578082015181840152602081019050613de5565b83811115613e0f576000848401525b50505050565b60006002820490506001821680613e2d57607f821691505b60208210811415613e4157613e40613f50565b5b50919050565b613e5082613fae565b810181811067ffffffffffffffff82111715613e6f57613e6e613f7f565b5b80604052505050565b6000613e8382613dc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb657613eb5613ef2565b5b600182019050919050565b6000613ecc82613dc9565b9150613ed783613dc9565b925082613ee757613ee6613f21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c642065786365656420706572696f64206d6178600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f41646472657373206d7573742062652077686974656c6973746564204f52204e60008201527f6f74207061757365640000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564204d41585f544f4b454e53600082015250565b61458b81613d5f565b811461459657600080fd5b50565b6145a281613d71565b81146145ad57600080fd5b50565b6145b981613d7d565b81146145c457600080fd5b50565b6145d081613dc9565b81146145db57600080fd5b5056fea2646970667358221220b14e2336231b609161110c069c6be8e572ebd75e3c601f9e3bafd55df6472f5c64736f6c63430008020033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638456cb591161010d578063a22cb465116100a0578063e43252d71161006f578063e43252d7146106b1578063e985e9c5146106da578063ecfb5d1714610717578063f2fde38b14610740578063f47c84c514610769576101ee565b8063a22cb465146105f9578063b61d1bd414610622578063b88d4fde1461064b578063c87b56dd14610674576101ee565b80639b19251a116100dc5780639b19251a146105375780639cf7c4f114610574578063a035b1fe146105b2578063a0712d68146105dd576101ee565b80638456cb59146104a15780638da5cb5b146104b857806391b7f5ed146104e357806395d89b411461050c576101ee565b80633ccfd60b116101855780635c975abb116101545780635c975abb146103e55780636352211e1461041057806370a082311461044d578063715018a61461048a576101ee565b80633ccfd60b146103655780633f4ba83a1461037c57806342842e0e1461039357806344674be9146103bc576101ee565b80630ef89d99116101c15780630ef89d99146102c157806323b872dd146102ea5780632c3d8acb1461031357806330176e131461033c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061324f565b610794565b60405161022791906137c7565b60405180910390f35b34801561023c57600080fd5b50610245610876565b60405161025291906137e2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906132e2565b610908565b60405161028f9190613760565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613166565b61098d565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906132e2565b610aa5565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613060565b610b7f565b005b34801561031f57600080fd5b5061033a600480360381019061033591906131e3565b610bdf565b005b34801561034857600080fd5b50610363600480360381019061035e91906132a1565b610d09565b005b34801561037157600080fd5b5061037a610d9f565b005b34801561038857600080fd5b50610391610e6a565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613060565b610ef0565b005b3480156103c857600080fd5b506103e360048036038101906103de91906131a2565b610f10565b005b3480156103f157600080fd5b506103fa611047565b60405161040791906137c7565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906132e2565b61105e565b6040516104449190613760565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612ffb565b611110565b6040516104819190613ae4565b60405180910390f35b34801561049657600080fd5b5061049f6111c8565b005b3480156104ad57600080fd5b506104b6611250565b005b3480156104c457600080fd5b506104cd6112d6565b6040516104da9190613760565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906132e2565b611300565b005b34801561051857600080fd5b50610521611386565b60405161052e91906137e2565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190612ffb565b611418565b60405161056b91906137c7565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906132e2565b611438565b6040516105a9929190613aff565b60405180910390f35b3480156105be57600080fd5b506105c761146c565b6040516105d49190613ae4565b60405180910390f35b6105f760048036038101906105f291906132e2565b611472565b005b34801561060557600080fd5b50610620600480360381019061061b919061312a565b611572565b005b34801561062e57600080fd5b506106496004803603810190610644919061330b565b6116f3565b005b34801561065757600080fd5b50610672600480360381019061066d91906130af565b6117c9565b005b34801561068057600080fd5b5061069b600480360381019061069691906132e2565b61182b565b6040516106a891906137e2565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612ffb565b61183d565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190613024565b611914565b60405161070e91906137c7565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612ffb565b6119a8565b005b34801561074c57600080fd5b5061076760048036038101906107629190612ffb565b611a7f565b005b34801561077557600080fd5b5061077e611b77565b60405161078b9190613ae4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f575061086e82611b7d565b5b9050919050565b60606000805461088590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613e15565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611be7565b610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906139e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109988261105e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613a64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a28611c53565b73ffffffffffffffffffffffffffffffffffffffff161480610a575750610a5681610a51611c53565b611914565b5b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90613944565b60405180910390fd5b610aa08383611c5b565b505050565b610aad611c53565b73ffffffffffffffffffffffffffffffffffffffff16610acb6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613a04565b60405180910390fd5b600c8181548110610b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016000808201600090556001820160009055505050565b610b90610b8a611c53565b82611d14565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613a84565b60405180910390fd5b610bda838383611df2565b505050565b610be7611c53565b73ffffffffffffffffffffffffffffffffffffffff16610c056112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613a04565b60405180910390fd5b60005b8251811015610d0457610cf1838281518110610ca3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110610ce4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161204e565b8080610cfc90613e78565b915050610c5e565b505050565b610d11611c53565b73ffffffffffffffffffffffffffffffffffffffff16610d2f6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613a04565b60405180910390fd5b8060099080519060200190610d9b929190612cf3565b5050565b610da7611c53565b73ffffffffffffffffffffffffffffffffffffffff16610dc56112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290613a04565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e66573d6000803e3d6000fd5b5050565b610e72611c53565b73ffffffffffffffffffffffffffffffffffffffff16610e906112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613a04565b60405180910390fd5b610eee61220e565b565b610f0b838383604051806020016040528060008152506117c9565b505050565b610f18611c53565b73ffffffffffffffffffffffffffffffffffffffff16610f366112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613a04565b60405180910390fd5b60005b8151811015611043576001600d6000848481518110610fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061103b90613e78565b915050610f8f565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613984565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613964565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111d0611c53565b73ffffffffffffffffffffffffffffffffffffffff166111ee6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613a04565b60405180910390fd5b61124e60006122b0565b565b611258611c53565b73ffffffffffffffffffffffffffffffffffffffff166112766112d6565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613a04565b60405180910390fd5b6112d4612376565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611308611c53565b73ffffffffffffffffffffffffffffffffffffffff166113266112d6565b73ffffffffffffffffffffffffffffffffffffffff161461137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613a04565b60405180910390fd5b80600a8190555050565b60606001805461139590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546113c190613e15565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c818154811061144857600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b600a5481565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114cf57506114cd611047565b155b61150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613aa4565b60405180910390fd5b61152381600a5461241990919063ffffffff16565b341015611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c906138e4565b60405180910390fd5b61156f338261204e565b50565b61157a611c53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906138c4565b60405180910390fd5b80600560006115f5611c53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a2611c53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e791906137c7565b60405180910390a35050565b6116fb611c53565b73ffffffffffffffffffffffffffffffffffffffff166117196112d6565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613a04565b60405180910390fd5b600c6040518060400160405280848152602001838152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550505050565b6117da6117d4611c53565b83611d14565b611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613a84565b60405180910390fd5b6118258484848461242f565b50505050565b60606118368261248b565b9050919050565b611845611c53565b73ffffffffffffffffffffffffffffffffffffffff166118636112d6565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613a04565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119b0611c53565b73ffffffffffffffffffffffffffffffffffffffff166119ce6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613a04565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a87611c53565b73ffffffffffffffffffffffffffffffffffffffff16611aa56112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613864565b60405180910390fd5b611b74816122b0565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cce8361105e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d1f82611be7565b611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613904565b60405180910390fd5b6000611d698361105e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dd857508373ffffffffffffffffffffffffffffffffffffffff16611dc084610908565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de95750611de88185611914565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e128261105e565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613a24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906138a4565b60405180910390fd5b611ee38383836125dd565b611eee600082611c5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3e9190613d2b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f959190613c4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600b5461206d8261205f60086125e2565b6125f090919063ffffffff16565b11156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613ac4565b60405180910390fd5b60005b600c805490508110156121bc576000600c82815481106120fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050600081600001511180156121405750806000015142105b156121a85780602001516121668461215860086125e2565b6125f090919063ffffffff16565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613804565b60405180910390fd5b5b5080806121b490613e78565b9150506120b1565b5060005b818110156122095760006121d460086125e2565b9050600b548110156121f5576121ea8482612606565b6121f46008612624565b5b50808061220190613e78565b9150506121c0565b505050565b612216611047565b612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90613824565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612299611c53565b6040516122a69190613760565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61237e611047565b156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613924565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612402611c53565b60405161240f9190613760565b60405180910390a1565b600081836124279190613cd1565b905092915050565b61243a848484611df2565b6124468484848461263a565b612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90613844565b60405180910390fd5b50505050565b606061249682611be7565b6124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc906139c4565b60405180910390fd5b60006006600084815260200190815260200160002080546124f590613e15565b80601f016020809104026020016040519081016040528092919081815260200182805461252190613e15565b801561256e5780601f106125435761010080835404028352916020019161256e565b820191906000526020600020905b81548152906001019060200180831161255157829003601f168201915b50505050509050600061257f6127d1565b90506000815114156125955781925050506125d8565b6000825111156125ca5780826040516020016125b292919061373c565b604051602081830303815290604052925050506125d8565b6125d384612863565b925050505b919050565b505050565b600081600001549050919050565b600081836125fe9190613c4a565b905092915050565b61262082826040518060200160405280600081525061290a565b5050565b6001816000016000828254019250508190555050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612965565b156127c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611c53565b8786866040518563ffffffff1660e01b81526004016126a6949392919061377b565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee9190613278565b60015b612774573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b5060008151141561276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390613844565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c9565b600190505b949350505050565b6060600980546127e090613e15565b80601f016020809104026020016040519081016040528092919081815260200182805461280c90613e15565b80156128595780601f1061282e57610100808354040283529160200191612859565b820191906000526020600020905b81548152906001019060200180831161283c57829003601f168201915b5050505050905090565b606061286e82611be7565b6128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490613a44565b60405180910390fd5b60006128b76127d1565b905060008151116128d75760405180602001604052806000815250612902565b806128e184612978565b6040516020016128f292919061373c565b6040516020818303038152906040525b915050919050565b6129148383612b25565b612921600084848461263a565b612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790613844565b60405180910390fd5b505050565b600080823b905060008111915050919050565b606060008214156129c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b20565b600082905060005b600082146129f25780806129db90613e78565b915050600a826129eb9190613ca0565b91506129c8565b60008167ffffffffffffffff811115612a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a665781602001600182028036833780820191505090505b5090505b60008514612b1957600182612a7f9190613d2b565b9150600a85612a8e9190613ec1565b6030612a9a9190613c4a565b60f81b818381518110612ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b129190613ca0565b9450612a6a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906139a4565b60405180910390fd5b612b9e81611be7565b15612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd590613884565b60405180910390fd5b612bea600083836125dd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3a9190613c4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cff90613e15565b90600052602060002090601f016020900481019282612d215760008555612d68565b82601f10612d3a57805160ff1916838001178555612d68565b82800160010185558215612d68579182015b82811115612d67578251825591602001919060010190612d4c565b5b509050612d759190612d79565b5090565b5b80821115612d92576000816000905550600101612d7a565b5090565b6000612da9612da484613b4d565b613b28565b90508083825260208201905082856020860282011115612dc857600080fd5b60005b85811015612df85781612dde8882612eea565b845260208401935060208301925050600181019050612dcb565b5050509392505050565b6000612e15612e1084613b79565b613b28565b90508083825260208201905082856020860282011115612e3457600080fd5b60005b85811015612e645781612e4a8882612fe6565b845260208401935060208301925050600181019050612e37565b5050509392505050565b6000612e81612e7c84613ba5565b613b28565b905082815260208101848484011115612e9957600080fd5b612ea4848285613dd3565b509392505050565b6000612ebf612eba84613bd6565b613b28565b905082815260208101848484011115612ed757600080fd5b612ee2848285613dd3565b509392505050565b600081359050612ef981614582565b92915050565b600082601f830112612f1057600080fd5b8135612f20848260208601612d96565b91505092915050565b600082601f830112612f3a57600080fd5b8135612f4a848260208601612e02565b91505092915050565b600081359050612f6281614599565b92915050565b600081359050612f77816145b0565b92915050565b600081519050612f8c816145b0565b92915050565b600082601f830112612fa357600080fd5b8135612fb3848260208601612e6e565b91505092915050565b600082601f830112612fcd57600080fd5b8135612fdd848260208601612eac565b91505092915050565b600081359050612ff5816145c7565b92915050565b60006020828403121561300d57600080fd5b600061301b84828501612eea565b91505092915050565b6000806040838503121561303757600080fd5b600061304585828601612eea565b925050602061305685828601612eea565b9150509250929050565b60008060006060848603121561307557600080fd5b600061308386828701612eea565b935050602061309486828701612eea565b92505060406130a586828701612fe6565b9150509250925092565b600080600080608085870312156130c557600080fd5b60006130d387828801612eea565b94505060206130e487828801612eea565b93505060406130f587828801612fe6565b925050606085013567ffffffffffffffff81111561311257600080fd5b61311e87828801612f92565b91505092959194509250565b6000806040838503121561313d57600080fd5b600061314b85828601612eea565b925050602061315c85828601612f53565b9150509250929050565b6000806040838503121561317957600080fd5b600061318785828601612eea565b925050602061319885828601612fe6565b9150509250929050565b6000602082840312156131b457600080fd5b600082013567ffffffffffffffff8111156131ce57600080fd5b6131da84828501612eff565b91505092915050565b600080604083850312156131f657600080fd5b600083013567ffffffffffffffff81111561321057600080fd5b61321c85828601612eff565b925050602083013567ffffffffffffffff81111561323957600080fd5b61324585828601612f29565b9150509250929050565b60006020828403121561326157600080fd5b600061326f84828501612f68565b91505092915050565b60006020828403121561328a57600080fd5b600061329884828501612f7d565b91505092915050565b6000602082840312156132b357600080fd5b600082013567ffffffffffffffff8111156132cd57600080fd5b6132d984828501612fbc565b91505092915050565b6000602082840312156132f457600080fd5b600061330284828501612fe6565b91505092915050565b6000806040838503121561331e57600080fd5b600061332c85828601612fe6565b925050602061333d85828601612fe6565b9150509250929050565b61335081613d5f565b82525050565b61335f81613d71565b82525050565b600061337082613c07565b61337a8185613c1d565b935061338a818560208601613de2565b61339381613fae565b840191505092915050565b60006133a982613c12565b6133b38185613c2e565b93506133c3818560208601613de2565b6133cc81613fae565b840191505092915050565b60006133e282613c12565b6133ec8185613c3f565b93506133fc818560208601613de2565b80840191505092915050565b6000613415602083613c2e565b915061342082613fbf565b602082019050919050565b6000613438601483613c2e565b915061344382613fe8565b602082019050919050565b600061345b603283613c2e565b915061346682614011565b604082019050919050565b600061347e602683613c2e565b915061348982614060565b604082019050919050565b60006134a1601c83613c2e565b91506134ac826140af565b602082019050919050565b60006134c4602483613c2e565b91506134cf826140d8565b604082019050919050565b60006134e7601983613c2e565b91506134f282614127565b602082019050919050565b600061350a601f83613c2e565b915061351582614150565b602082019050919050565b600061352d602c83613c2e565b915061353882614179565b604082019050919050565b6000613550601083613c2e565b915061355b826141c8565b602082019050919050565b6000613573603883613c2e565b915061357e826141f1565b604082019050919050565b6000613596602a83613c2e565b91506135a182614240565b604082019050919050565b60006135b9602983613c2e565b91506135c48261428f565b604082019050919050565b60006135dc602083613c2e565b91506135e7826142de565b602082019050919050565b60006135ff603183613c2e565b915061360a82614307565b604082019050919050565b6000613622602c83613c2e565b915061362d82614356565b604082019050919050565b6000613645602083613c2e565b9150613650826143a5565b602082019050919050565b6000613668602983613c2e565b9150613673826143ce565b604082019050919050565b600061368b602f83613c2e565b91506136968261441d565b604082019050919050565b60006136ae602183613c2e565b91506136b98261446c565b604082019050919050565b60006136d1603183613c2e565b91506136dc826144bb565b604082019050919050565b60006136f4602983613c2e565b91506136ff8261450a565b604082019050919050565b6000613717602083613c2e565b915061372282614559565b602082019050919050565b61373681613dc9565b82525050565b600061374882856133d7565b915061375482846133d7565b91508190509392505050565b60006020820190506137756000830184613347565b92915050565b60006080820190506137906000830187613347565b61379d6020830186613347565b6137aa604083018561372d565b81810360608301526137bc8184613365565b905095945050505050565b60006020820190506137dc6000830184613356565b92915050565b600060208201905081810360008301526137fc818461339e565b905092915050565b6000602082019050818103600083015261381d81613408565b9050919050565b6000602082019050818103600083015261383d8161342b565b9050919050565b6000602082019050818103600083015261385d8161344e565b9050919050565b6000602082019050818103600083015261387d81613471565b9050919050565b6000602082019050818103600083015261389d81613494565b9050919050565b600060208201905081810360008301526138bd816134b7565b9050919050565b600060208201905081810360008301526138dd816134da565b9050919050565b600060208201905081810360008301526138fd816134fd565b9050919050565b6000602082019050818103600083015261391d81613520565b9050919050565b6000602082019050818103600083015261393d81613543565b9050919050565b6000602082019050818103600083015261395d81613566565b9050919050565b6000602082019050818103600083015261397d81613589565b9050919050565b6000602082019050818103600083015261399d816135ac565b9050919050565b600060208201905081810360008301526139bd816135cf565b9050919050565b600060208201905081810360008301526139dd816135f2565b9050919050565b600060208201905081810360008301526139fd81613615565b9050919050565b60006020820190508181036000830152613a1d81613638565b9050919050565b60006020820190508181036000830152613a3d8161365b565b9050919050565b60006020820190508181036000830152613a5d8161367e565b9050919050565b60006020820190508181036000830152613a7d816136a1565b9050919050565b60006020820190508181036000830152613a9d816136c4565b9050919050565b60006020820190508181036000830152613abd816136e7565b9050919050565b60006020820190508181036000830152613add8161370a565b9050919050565b6000602082019050613af9600083018461372d565b92915050565b6000604082019050613b14600083018561372d565b613b21602083018461372d565b9392505050565b6000613b32613b43565b9050613b3e8282613e47565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6857613b67613f7f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9457613b93613f7f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bc057613bbf613f7f565b5b613bc982613fae565b9050602081019050919050565b600067ffffffffffffffff821115613bf157613bf0613f7f565b5b613bfa82613fae565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5582613dc9565b9150613c6083613dc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9557613c94613ef2565b5b828201905092915050565b6000613cab82613dc9565b9150613cb683613dc9565b925082613cc657613cc5613f21565b5b828204905092915050565b6000613cdc82613dc9565b9150613ce783613dc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2057613d1f613ef2565b5b828202905092915050565b6000613d3682613dc9565b9150613d4183613dc9565b925082821015613d5457613d53613ef2565b5b828203905092915050565b6000613d6a82613da9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e00578082015181840152602081019050613de5565b83811115613e0f576000848401525b50505050565b60006002820490506001821680613e2d57607f821691505b60208210811415613e4157613e40613f50565b5b50919050565b613e5082613fae565b810181811067ffffffffffffffff82111715613e6f57613e6e613f7f565b5b80604052505050565b6000613e8382613dc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb657613eb5613ef2565b5b600182019050919050565b6000613ecc82613dc9565b9150613ed783613dc9565b925082613ee757613ee6613f21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c642065786365656420706572696f64206d6178600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f41646472657373206d7573742062652077686974656c6973746564204f52204e60008201527f6f74207061757365640000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564204d41585f544f4b454e53600082015250565b61458b81613d5f565b811461459657600080fd5b50565b6145a281613d71565b81146145ad57600080fd5b50565b6145b981613d7d565b81146145c457600080fd5b50565b6145d081613dc9565b81146145db57600080fd5b5056fea2646970667358221220b14e2336231b609161110c069c6be8e572ebd75e3c601f9e3bafd55df6472f5c64736f6c63430008020033

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.