ETH Price: $3,263.09 (+2.20%)
Gas: 1 Gwei

Token

Nightmare On ETH Street (NMESTK)
 

Overview

Max Total Supply

105 NMESTK

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NMESTK
0x29be86363061a89122bb39ad1a5defdbd2209f2c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NMES

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : NMES.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol';
import './Storage.sol';

contract NMES is Initializable, OwnableUpgradeable, ERC721Upgradeable, Storage {
  using CountersUpgradeable for CountersUpgradeable.Counter;
  using StringsUpgradeable for uint256;
  CountersUpgradeable.Counter internal _tokenIds;
  event Mint(uint256 indexed tokenId, address indexed minter);

  struct Project_Config {
    string collectionName;
    string collectionSymbol;
    string _revealHash;
    address[] _whitelisted;
    uint16 _mintingSupply;
    uint16 _reservedTokenSupply;
    uint16 _maxMintTx;
    uint256 _price;
  }

  function initialize(Project_Config calldata projectConfig)
    public
    initializer
  {
    __ERC721_init(projectConfig.collectionName, projectConfig.collectionSymbol);
    __Ownable_init();
    whitelistBatch_Admin(projectConfig._whitelisted);
    _tokenIds.increment();
    revealHash = projectConfig._revealHash;
    mintingSupply = projectConfig._mintingSupply;
    reservedTokenSupply = projectConfig._reservedTokenSupply;
    maxMintTx = projectConfig._maxMintTx;
    price = projectConfig._price;
    saleIsActive = false; // is the sale active?
    mintedFromReserve = 0; // how many tokens have been minted from the reserve?
    mintedFromSupply = 0; // how many tokens have been minted from the supply?
  }

  //Get Total Supply of Tokens //TESTED
  function totalSupply() external view returns (uint256) {
    return _tokenIds.current() - 1;
  }

  // URI // TESTED
  function setBaseURIcid(string calldata cid) external onlyOwner {
    baseURIcid = cid;
  }

  // Allows Tokens to be Viewed // TESTED
  function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      'ERC721Metadata: URI query for nonexistent token'
    );

    return
      bytes(baseURIcid).length > 0
        ? string(
          abi.encodePacked(
            'ipfs://',
            baseURIcid,
            '/',
            tokenId.toString(),
            '.json'
          )
        )
        : revealHash;
  }

  // withdraw //TESTED
  function withdraw_Admin(address payable _address) external onlyOwner {
    _address.transfer(address(this).balance);
  }

  // Toggle Sale State //TESTED
  function toggleSaleState_Admin() external onlyOwner {
    saleIsActive = !saleIsActive;
  }

  // Claim Tokens // TESTED
  function claim() external {
    require(whitelisted[msg.sender], 'NOT_WHITELISTED');
    require(!blacklisted[msg.sender], 'BANNED');
    require(saleIsActive, 'SALE_CLOSED');
    require(!claimedToken[msg.sender], 'TOKEN_CLAIMED');
    require(
      mintedFromSupply + 1 <= mintingSupply - reservedTokenSupply,
      'EXCEEDS_SUPPLY'
    );

    internal_mint(msg.sender, 1);
    claimedToken[msg.sender] = true;
  }

  // Mint Tokens // TESTED
  function mint(uint8 _amount) external payable {
    require(!blacklisted[msg.sender], 'BANNED');
    require(saleIsActive, 'SALE_CLOSED');
    require(_amount > 0 && _amount <= maxMintTx, 'EXCEEDS_TRANSACTION_LIMIT');
    require(
      mintedFromSupply + _amount <= mintingSupply - reservedTokenSupply,
      'MUST_MINT_FROM_RESERVE'
    );
    require(msg.value == (price) * _amount, 'NOT_ENOUGH_ETHER');

    internal_mint(msg.sender, _amount);
  }

  // Mint Handler // TESTED
  function internal_mint(address _to, uint8 _amount) internal {
    for (uint256 i = 0; i < _amount; i++) {
      if (mintedFromSupply <= mintingSupply - reservedTokenSupply) {
        _safeMint(_to, _tokenIds.current());
        mintedBy[_tokenIds.current()] = _to;
        emit Mint(_tokenIds.current(), _to);
        _tokenIds.increment();
        mintedFromSupply++;
      }
    }
  }

  function mintFromReserve(address _to, uint256 _amount) external onlyOwner {
    require(
      mintedFromReserve + _amount <= reservedTokenSupply,
      'EXCEEDS_SUPPLY'
    );
    for (uint256 i; i < _amount; i++) {
      if (mintedFromReserve < reservedTokenSupply) {
        _safeMint(_to, _tokenIds.current());
        mintedBy[_tokenIds.current()] = _to;
        emit Mint(_tokenIds.current(), _to);
        _tokenIds.increment();
        mintedFromReserve++;
      }
    }
  }

  // SETS WHITELIST // TESTED
  function whitelistBatch_Admin(address[] calldata _to) public onlyOwner {
    for (uint256 i = 0; i < _to.length; i++) {
      whitelisted[_to[i]] = true;
    }
  }

  // BANS MINTER // TESTED
  function blacklistBatch_Admin(address[] calldata _addr) external onlyOwner {
    for (uint256 i = 0; i < _addr.length; i++) {
      blacklisted[_addr[i]] = true;
    }
  }
}

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

pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/StringsUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
    using AddressUpgradeable for address;
    using StringsUpgradeable 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.
     */
    function __ERC721_init(string memory name_, string memory symbol_) internal initializer {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
        return
            interfaceId == type(IERC721Upgradeable).interfaceId ||
            interfaceId == type(IERC721MetadataUpgradeable).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 = ERC721Upgradeable.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 = ERC721Upgradeable.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 = ERC721Upgradeable.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(ERC721Upgradeable.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(ERC721Upgradeable.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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721ReceiverUpgradeable.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 {}
    uint256[44] private __gap;
}

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

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _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);
    }
    uint256[49] private __gap;
}

File 5 of 14 : CountersUpgradeable.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 CountersUpgradeable {
    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 6 of 14 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    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 7 of 14 : Storage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Storage {
  string internal baseURIcid; // CID of the base URI
  string internal revealHash; // hash to hide metadata for reveal
  uint16 internal maxPreMintTx; // max number of pre-minted tokens per tx
  uint16 internal maxMintTx; // max number of minted tokens per tx
  uint16 public mintingSupply; // minted supply
  uint16 public reservedTokenSupply; // reserved token supply
  uint16 public mintedFromReserve; // reserved token supply
  uint16 public mintedFromSupply; // reserved token supply
  uint256 public price; // In ETH
  bool public saleIsActive; // is the sale active?
  // MAPPINGS
  mapping(uint256 => address) public mintedBy; // mapping of token id to address of the owner
  mapping(address => bool) public whitelisted;
  mapping(address => bool) public blacklisted;
  mapping(address => bool) public claimedToken; // pre-minted tokens per address
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721Upgradeable is IERC165Upgradeable {
    /**
     * @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 14 : IERC721ReceiverUpgradeable.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 IERC721ReceiverUpgradeable {
    /**
     * @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 14 : IERC721MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721MetadataUpgradeable is IERC721Upgradeable {
    /**
     * @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 14 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @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 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 14 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal initializer {
        __ERC165_init_unchained();
    }

    function __ERC165_init_unchained() internal initializer {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }
    uint256[50] private __gap;
}

File 14 of 14 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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

[{"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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"blacklistBatch_Admin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"string","name":"collectionSymbol","type":"string"},{"internalType":"string","name":"_revealHash","type":"string"},{"internalType":"address[]","name":"_whitelisted","type":"address[]"},{"internalType":"uint16","name":"_mintingSupply","type":"uint16"},{"internalType":"uint16","name":"_reservedTokenSupply","type":"uint16"},{"internalType":"uint16","name":"_maxMintTx","type":"uint16"},{"internalType":"uint256","name":"_price","type":"uint256"}],"internalType":"struct NMES.Project_Config","name":"projectConfig","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"uint8","name":"_amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFromReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedFromReserve","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedFromSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokenSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"cid","type":"string"}],"name":"setBaseURIcid","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":[],"name":"toggleSaleState_Admin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"whitelistBatch_Admin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdraw_Admin","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506150e3806100206000396000f3fe60806040526004361061020f5760003560e01c806395d89b4111610118578063b88d4fde116100a0578063d936547e1161006f578063d936547e14610766578063dbac26e9146107a3578063e985e9c5146107e0578063eb8d24441461081d578063f2fde38b146108485761020f565b8063b88d4fde146106ac578063c87b56dd146106d5578063c933d09a14610712578063cd90936c1461073d5761020f565b8063a22cb465116100e7578063a22cb465146105ef578063a2ae30f214610618578063a8d9949d1461062f578063ab7a8ba914610658578063b0c482f0146106815761020f565b806395d89b41146105335780639878ca1d1461055e5780639c2b4daa14610587578063a035b1fe146105c45761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461045b5780636ecd23061461049857806370a08231146104b4578063715018a6146104f15780638da5cb5b146105085761020f565b806342842e0e146103b55780634e71d92d146103de578063606e78ef146103f557806361581de0146104325761020f565b80630b3ecfcf116101e25780630b3ecfcf146102e25780630d27577e1461030d57806318160ddd1461033857806320cef1dc1461036357806323b872dd1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613abf565b610871565b604051610248919061470a565b60405180910390f35b34801561025d57600080fd5b50610266610953565b6040516102739190614725565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613bc0565b6109e5565b6040516102b091906146a3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613a3e565b610a6a565b005b3480156102ee57600080fd5b506102f7610b82565b6040516103049190614a67565b60405180910390f35b34801561031957600080fd5b50610322610b96565b60405161032f9190614a67565b60405180910390f35b34801561034457600080fd5b5061034d610baa565b60405161035a9190614a82565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613a7a565b610bc7565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613938565b610d0e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613938565b610d6e565b005b3480156103ea57600080fd5b506103f3610d8e565b005b34801561040157600080fd5b5061041c600480360381019061041791906138aa565b61107a565b604051610429919061470a565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613a7a565b61109a565b005b34801561046757600080fd5b50610482600480360381019061047d9190613bc0565b6111e1565b60405161048f91906146a3565b60405180910390f35b6104b260048036038101906104ad9190613be9565b611293565b005b3480156104c057600080fd5b506104db60048036038101906104d691906138aa565b6114cb565b6040516104e89190614a82565b60405180910390f35b3480156104fd57600080fd5b50610506611583565b005b34801561051457600080fd5b5061051d61160b565b60405161052a91906146a3565b60405180910390f35b34801561053f57600080fd5b50610548611635565b6040516105559190614725565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613a3e565b6116c7565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613bc0565b61190d565b6040516105bb91906146a3565b60405180910390f35b3480156105d057600080fd5b506105d9611940565b6040516105e69190614a82565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613a02565b611946565b005b34801561062457600080fd5b5061062d611ac7565b005b34801561063b57600080fd5b5061065660048036038101906106519190613b11565b611b6f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190613b56565b611c01565b005b34801561068d57600080fd5b50610696611ec2565b6040516106a39190614a67565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613987565b611ed6565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613bc0565b611f38565b6040516107099190614725565b60405180910390f35b34801561071e57600080fd5b5061072761205b565b6040516107349190614a67565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906138d3565b61206f565b005b34801561077257600080fd5b5061078d600480360381019061078891906138aa565b612135565b60405161079a919061470a565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906138aa565b612155565b6040516107d7919061470a565b60405180910390f35b3480156107ec57600080fd5b50610807600480360381019061080291906138fc565b612175565b604051610814919061470a565b60405180910390f35b34801561082957600080fd5b50610832612209565b60405161083f919061470a565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906138aa565b61221c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82612314565b5b9050919050565b60606097805461096290614e68565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90614e68565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f08261237e565b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690614927565b60405180910390fd5b609b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a75826111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906149a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b056123ea565b73ffffffffffffffffffffffffffffffffffffffff161480610b345750610b3381610b2e6123ea565b612175565b5b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614847565b60405180910390fd5b610b7d83836123f2565b505050565b60cb60089054906101000a900461ffff1681565b60cb60069054906101000a900461ffff1681565b60006001610bb860d26124ab565b610bc29190614d51565b905090565b610bcf6123ea565b73ffffffffffffffffffffffffffffffffffffffff16610bed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90614947565b60405180910390fd5b60005b82829050811015610d0957600160cf6000858585818110610c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ca591906138aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d0190614ec5565b915050610c46565b505050565b610d1f610d196123ea565b826124b9565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906149e7565b60405180910390fd5b610d69838383612597565b505050565b610d8983838360405180602001604052806000815250611ed6565b505050565b60cf60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190614a27565b60405180910390fd5b60d060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906149c7565b60405180910390fd5b60cd60009054906101000a900460ff16610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90614807565b60405180910390fd5b60d160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614a47565b60405180910390fd5b60cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff16610faf9190614d1d565b61ffff16600160cb600a9054906101000a900461ffff16610fd09190614c04565b61ffff161115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906148e7565b60405180910390fd5b6110203360016127f3565b600160d160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60d16020528060005260406000206000915054906101000a900460ff1681565b6110a26123ea565b73ffffffffffffffffffffffffffffffffffffffff166110c061160b565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614947565b60405180910390fd5b60005b828290508110156111dc57600160d06000858585818110611163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061117891906138aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111d490614ec5565b915050611119565b505050565b6000806099600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190614887565b60405180910390fd5b80915050919050565b60d060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906149c7565b60405180910390fd5b60cd60009054906101000a900460ff1661136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690614807565b60405180910390fd5b60008160ff16118015611399575060cb60029054906101000a900461ffff1661ffff168160ff1611155b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90614907565b60405180910390fd5b60cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff166114049190614d1d565b61ffff168160ff1660cb600a9054906101000a900461ffff166114279190614c04565b61ffff16111561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614a07565b60405180910390fd5b8060ff1660cc5461147d9190614cc3565b34146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614747565b60405180910390fd5b6114c833826127f3565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614867565b60405180910390fd5b609a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158b6123ea565b73ffffffffffffffffffffffffffffffffffffffff166115a961160b565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614947565b60405180910390fd5b6116096000612964565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606098805461164490614e68565b80601f016020809104026020016040519081016040528092919081815260200182805461167090614e68565b80156116bd5780601f10611692576101008083540402835291602001916116bd565b820191906000526020600020905b8154815290600101906020018083116116a057829003601f168201915b5050505050905090565b6116cf6123ea565b73ffffffffffffffffffffffffffffffffffffffff166116ed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90614947565b60405180910390fd5b60cb60069054906101000a900461ffff1661ffff168160cb60089054906101000a900461ffff1661ffff166117789190614c3c565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906148e7565b60405180910390fd5b60005b818110156119085760cb60069054906101000a900461ffff1661ffff1660cb60089054906101000a900461ffff1661ffff1610156118f5576118078361180260d26124ab565b612a2a565b8260ce600061181660d26124ab565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff1661188360d26124ab565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e5010260405160405180910390a36118b960d2612a48565b60cb600881819054906101000a900461ffff16809291906118d990614e9a565b91906101000a81548161ffff021916908361ffff160217905550505b808061190090614ec5565b9150506117bc565b505050565b60ce6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60cc5481565b61194e6123ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906147e7565b60405180910390fd5b80609c60006119c96123ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a766123ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb919061470a565b60405180910390a35050565b611acf6123ea565b73ffffffffffffffffffffffffffffffffffffffff16611aed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614947565b60405180910390fd5b60cd60009054906101000a900460ff161560cd60006101000a81548160ff021916908315150217905550565b611b776123ea565b73ffffffffffffffffffffffffffffffffffffffff16611b9561160b565b73ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614947565b60405180910390fd5b818160c99190611bfc9291906135c1565b505050565b600060019054906101000a900460ff1680611c27575060008054906101000a900460ff16155b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015611cb6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611d64828060000190611cc99190614af4565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050838060200190611d1c9190614af4565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612a5e565b611d6c612b53565b611d84828060600190611d7f9190614a9d565b610bc7565b611d8e60d2612a48565b818060400190611d9e9190614af4565b60ca9190611dad9291906135c1565b50816080016020810190611dc19190613b97565b60cb60046101000a81548161ffff021916908361ffff1602179055508160a0016020810190611df09190613b97565b60cb60066101000a81548161ffff021916908361ffff1602179055508160c0016020810190611e1f9190613b97565b60cb60026101000a81548161ffff021916908361ffff1602179055508160e0013560cc81905550600060cd60006101000a81548160ff021916908315150217905550600060cb60086101000a81548161ffff021916908361ffff160217905550600060cb600a6101000a81548161ffff021916908361ffff1602179055508015611ebe5760008060016101000a81548160ff0219169083151502179055505b5050565b60cb600a9054906101000a900461ffff1681565b611ee7611ee16123ea565b836124b9565b611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906149e7565b60405180910390fd5b611f3284848484612c3c565b50505050565b6060611f438261237e565b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614987565b60405180910390fd5b600060c98054611f9190614e68565b9050116120285760ca8054611fa590614e68565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd190614e68565b801561201e5780601f10611ff35761010080835404028352916020019161201e565b820191906000526020600020905b81548152906001019060200180831161200157829003601f168201915b5050505050612054565b60c961203383612c98565b60405160200161204492919061465e565b6040516020818303038152906040525b9050919050565b60cb60049054906101000a900461ffff1681565b6120776123ea565b73ffffffffffffffffffffffffffffffffffffffff1661209561160b565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614947565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612131573d6000803e3d6000fd5b5050565b60cf6020528060005260406000206000915054906101000a900460ff1681565b60d06020528060005260406000206000915054906101000a900460ff1681565b6000609c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60cd60009054906101000a900460ff1681565b6122246123ea565b73ffffffffffffffffffffffffffffffffffffffff1661224261160b565b73ffffffffffffffffffffffffffffffffffffffff1614612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff90614787565b60405180910390fd5b61231181612964565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166099600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81609b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612465836111e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006124c48261237e565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614827565b60405180910390fd5b600061250e836111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061257d57508373ffffffffffffffffffffffffffffffffffffffff16612565846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061258e575061258d8185612175565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125b7826111e1565b73ffffffffffffffffffffffffffffffffffffffff161461260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906147c7565b60405180910390fd5b612688838383612e45565b6126936000826123f2565b6001609a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e39190614d51565b925050819055506001609a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273a9190614c3c565b92505081905550816099600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8160ff1681101561295f5760cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff1661282d9190614d1d565b61ffff1660cb600a9054906101000a900461ffff1661ffff161161294c5761285e8361285960d26124ab565b612a2a565b8260ce600061286d60d26124ab565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff166128da60d26124ab565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e5010260405160405180910390a361291060d2612a48565b60cb600a81819054906101000a900461ffff168092919061293090614e9a565b91906101000a81548161ffff021916908361ffff160217905550505b808061295790614ec5565b9150506127f6565b505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a44828260405180602001604052806000815250612e4a565b5050565b6001816000016000828254019250508190555050565b600060019054906101000a900460ff1680612a84575060008054906101000a900460ff16155b612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b13576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b1b612ea5565b612b23612f7e565b612b2d8383613057565b8015612b4e5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612b79575060008054906101000a900460ff16155b612bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baf906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612c08576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612c10612ea5565b612c18613160565b8015612c395760008060016101000a81548160ff0219169083151502179055505b50565b612c47848484612597565b612c5384848484613249565b612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614767565b60405180910390fd5b50505050565b60606000821415612ce0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e40565b600082905060005b60008214612d12578080612cfb90614ec5565b915050600a82612d0b9190614c92565b9150612ce8565b60008167ffffffffffffffff811115612d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d865781602001600182028036833780820191505090505b5090505b60008514612e3957600182612d9f9190614d51565b9150600a85612dae9190614f0e565b6030612dba9190614c3c565b60f81b818381518110612df6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e329190614c92565b9450612d8a565b8093505050505b919050565b505050565b612e5483836133e0565b612e616000848484613249565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9790614767565b60405180910390fd5b505050565b600060019054906101000a900460ff1680612ecb575060008054906101000a900460ff16155b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f01906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612f5a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612f7b5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612fa4575060008054906101000a900460ff16155b612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015613033576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156130545760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061307d575060008054906101000a900460ff16155b6130bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b3906148a7565b60405180910390fd5b60008060019054906101000a900460ff16159050801561310c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260979080519060200190613122929190613647565b508160989080519060200190613139929190613647565b50801561315b5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680613186575060008054906101000a900460ff16155b6131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015613215576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6132256132206123ea565b612964565b80156132465760008060016101000a81548160ff0219169083151502179055505b50565b600061326a8473ffffffffffffffffffffffffffffffffffffffff166135ae565b156133d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132936123ea565b8786866040518563ffffffff1660e01b81526004016132b594939291906146be565b602060405180830381600087803b1580156132cf57600080fd5b505af192505050801561330057506040513d601f19601f820116820180604052508101906132fd9190613ae8565b60015b613383573d8060008114613330576040519150601f19603f3d011682016040523d82523d6000602084013e613335565b606091505b5060008151141561337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337290614767565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133d8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613447906148c7565b60405180910390fd5b6134598161237e565b15613499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613490906147a7565b60405180910390fd5b6134a560008383612e45565b6001609a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134f59190614c3c565b92505081905550816099600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135cd90614e68565b90600052602060002090601f0160209004810192826135ef5760008555613636565b82601f1061360857803560ff1916838001178555613636565b82800160010185558215613636579182015b8281111561363557823582559160200191906001019061361a565b5b50905061364391906136cd565b5090565b82805461365390614e68565b90600052602060002090601f01602090048101928261367557600085556136bc565b82601f1061368e57805160ff19168380011785556136bc565b828001600101855582156136bc579182015b828111156136bb5782518255916020019190600101906136a0565b5b5090506136c991906136cd565b5090565b5b808211156136e65760008160009055506001016136ce565b5090565b60006136fd6136f884614b7c565b614b4b565b90508281526020810184848401111561371557600080fd5b613720848285614e26565b509392505050565b6000813590506137378161500c565b92915050565b60008135905061374c81615023565b92915050565b60008083601f84011261376457600080fd5b8235905067ffffffffffffffff81111561377d57600080fd5b60208301915083602082028301111561379557600080fd5b9250929050565b6000813590506137ab8161503a565b92915050565b6000813590506137c081615051565b92915050565b6000815190506137d581615051565b92915050565b600082601f8301126137ec57600080fd5b81356137fc8482602086016136ea565b91505092915050565b60008083601f84011261381757600080fd5b8235905067ffffffffffffffff81111561383057600080fd5b60208301915083600182028301111561384857600080fd5b9250929050565b6000610100828403121561386257600080fd5b81905092915050565b60008135905061387a81615068565b92915050565b60008135905061388f8161507f565b92915050565b6000813590506138a481615096565b92915050565b6000602082840312156138bc57600080fd5b60006138ca84828501613728565b91505092915050565b6000602082840312156138e557600080fd5b60006138f38482850161373d565b91505092915050565b6000806040838503121561390f57600080fd5b600061391d85828601613728565b925050602061392e85828601613728565b9150509250929050565b60008060006060848603121561394d57600080fd5b600061395b86828701613728565b935050602061396c86828701613728565b925050604061397d86828701613880565b9150509250925092565b6000806000806080858703121561399d57600080fd5b60006139ab87828801613728565b94505060206139bc87828801613728565b93505060406139cd87828801613880565b925050606085013567ffffffffffffffff8111156139ea57600080fd5b6139f6878288016137db565b91505092959194509250565b60008060408385031215613a1557600080fd5b6000613a2385828601613728565b9250506020613a348582860161379c565b9150509250929050565b60008060408385031215613a5157600080fd5b6000613a5f85828601613728565b9250506020613a7085828601613880565b9150509250929050565b60008060208385031215613a8d57600080fd5b600083013567ffffffffffffffff811115613aa757600080fd5b613ab385828601613752565b92509250509250929050565b600060208284031215613ad157600080fd5b6000613adf848285016137b1565b91505092915050565b600060208284031215613afa57600080fd5b6000613b08848285016137c6565b91505092915050565b60008060208385031215613b2457600080fd5b600083013567ffffffffffffffff811115613b3e57600080fd5b613b4a85828601613805565b92509250509250929050565b600060208284031215613b6857600080fd5b600082013567ffffffffffffffff811115613b8257600080fd5b613b8e8482850161384f565b91505092915050565b600060208284031215613ba957600080fd5b6000613bb78482850161386b565b91505092915050565b600060208284031215613bd257600080fd5b6000613be084828501613880565b91505092915050565b600060208284031215613bfb57600080fd5b6000613c0984828501613895565b91505092915050565b613c1b81614d85565b82525050565b613c2a81614da9565b82525050565b6000613c3b82614bc1565b613c458185614bd7565b9350613c55818560208601614e35565b613c5e81614ffb565b840191505092915050565b6000613c7482614bcc565b613c7e8185614be8565b9350613c8e818560208601614e35565b613c9781614ffb565b840191505092915050565b6000613cad82614bcc565b613cb78185614bf9565b9350613cc7818560208601614e35565b80840191505092915050565b60008154613ce081614e68565b613cea8186614bf9565b94506001821660008114613d055760018114613d1657613d49565b60ff19831686528186019350613d49565b613d1f85614bac565b60005b83811015613d4157815481890152600182019150602081019050613d22565b838801955050505b50505092915050565b6000613d5f601083614be8565b91507f4e4f545f454e4f5547485f4554484552000000000000000000000000000000006000830152602082019050919050565b6000613d9f603283614be8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613e05602683614be8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6b601c83614be8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613eab602483614be8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f11601983614be8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f51600b83614be8565b91507f53414c455f434c4f5345440000000000000000000000000000000000000000006000830152602082019050919050565b6000613f91602c83614be8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ff7600783614bf9565b91507f697066733a2f2f000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000614037603883614be8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061409d602a83614be8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614103602983614be8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614169602e83614be8565b91507f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008301527f647920696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b60006141cf602083614be8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061420f600e83614be8565b91507f455843454544535f535550504c590000000000000000000000000000000000006000830152602082019050919050565b600061424f601983614be8565b91507f455843454544535f5452414e53414354494f4e5f4c494d4954000000000000006000830152602082019050919050565b600061428f602c83614be8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142f5600583614bf9565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614335602083614be8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614375602983614be8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143db602f83614be8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614441602183614be8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144a7600683614be8565b91507f42414e4e454400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006144e7603183614be8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061454d601683614be8565b91507f4d5553545f4d494e545f46524f4d5f52455345525645000000000000000000006000830152602082019050919050565b600061458d600f83614be8565b91507f4e4f545f57484954454c495354454400000000000000000000000000000000006000830152602082019050919050565b60006145cd600d83614be8565b91507f544f4b454e5f434c41494d4544000000000000000000000000000000000000006000830152602082019050919050565b600061460d600183614bf9565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61464981614de1565b82525050565b61465881614e0f565b82525050565b600061466982613fea565b91506146758285613cd3565b915061468082614600565b915061468c8284613ca2565b9150614697826142e8565b91508190509392505050565b60006020820190506146b86000830184613c12565b92915050565b60006080820190506146d36000830187613c12565b6146e06020830186613c12565b6146ed604083018561464f565b81810360608301526146ff8184613c30565b905095945050505050565b600060208201905061471f6000830184613c21565b92915050565b6000602082019050818103600083015261473f8184613c69565b905092915050565b6000602082019050818103600083015261476081613d52565b9050919050565b6000602082019050818103600083015261478081613d92565b9050919050565b600060208201905081810360008301526147a081613df8565b9050919050565b600060208201905081810360008301526147c081613e5e565b9050919050565b600060208201905081810360008301526147e081613e9e565b9050919050565b6000602082019050818103600083015261480081613f04565b9050919050565b6000602082019050818103600083015261482081613f44565b9050919050565b6000602082019050818103600083015261484081613f84565b9050919050565b600060208201905081810360008301526148608161402a565b9050919050565b6000602082019050818103600083015261488081614090565b9050919050565b600060208201905081810360008301526148a0816140f6565b9050919050565b600060208201905081810360008301526148c08161415c565b9050919050565b600060208201905081810360008301526148e0816141c2565b9050919050565b6000602082019050818103600083015261490081614202565b9050919050565b6000602082019050818103600083015261492081614242565b9050919050565b6000602082019050818103600083015261494081614282565b9050919050565b6000602082019050818103600083015261496081614328565b9050919050565b6000602082019050818103600083015261498081614368565b9050919050565b600060208201905081810360008301526149a0816143ce565b9050919050565b600060208201905081810360008301526149c081614434565b9050919050565b600060208201905081810360008301526149e08161449a565b9050919050565b60006020820190508181036000830152614a00816144da565b9050919050565b60006020820190508181036000830152614a2081614540565b9050919050565b60006020820190508181036000830152614a4081614580565b9050919050565b60006020820190508181036000830152614a60816145c0565b9050919050565b6000602082019050614a7c6000830184614640565b92915050565b6000602082019050614a97600083018461464f565b92915050565b60008083356001602003843603038112614ab657600080fd5b80840192508235915067ffffffffffffffff821115614ad457600080fd5b602083019250602082023603831315614aec57600080fd5b509250929050565b60008083356001602003843603038112614b0d57600080fd5b80840192508235915067ffffffffffffffff821115614b2b57600080fd5b602083019250600182023603831315614b4357600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614b7257614b71614fcc565b5b8060405250919050565b600067ffffffffffffffff821115614b9757614b96614fcc565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0f82614de1565b9150614c1a83614de1565b92508261ffff03821115614c3157614c30614f3f565b5b828201905092915050565b6000614c4782614e0f565b9150614c5283614e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c8757614c86614f3f565b5b828201905092915050565b6000614c9d82614e0f565b9150614ca883614e0f565b925082614cb857614cb7614f6e565b5b828204905092915050565b6000614cce82614e0f565b9150614cd983614e0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d1257614d11614f3f565b5b828202905092915050565b6000614d2882614de1565b9150614d3383614de1565b925082821015614d4657614d45614f3f565b5b828203905092915050565b6000614d5c82614e0f565b9150614d6783614e0f565b925082821015614d7a57614d79614f3f565b5b828203905092915050565b6000614d9082614def565b9050919050565b6000614da282614def565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614e53578082015181840152602081019050614e38565b83811115614e62576000848401525b50505050565b60006002820490506001821680614e8057607f821691505b60208210811415614e9457614e93614f9d565b5b50919050565b6000614ea582614de1565b915061ffff821415614eba57614eb9614f3f565b5b600182019050919050565b6000614ed082614e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f0357614f02614f3f565b5b600182019050919050565b6000614f1982614e0f565b9150614f2483614e0f565b925082614f3457614f33614f6e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61501581614d85565b811461502057600080fd5b50565b61502c81614d97565b811461503757600080fd5b50565b61504381614da9565b811461504e57600080fd5b50565b61505a81614db5565b811461506557600080fd5b50565b61507181614de1565b811461507c57600080fd5b50565b61508881614e0f565b811461509357600080fd5b50565b61509f81614e19565b81146150aa57600080fd5b5056fea2646970667358221220fb3d5bbaae05dfbf11972bf7798d2d08e71c80c00371a30e12d42f146dad3eca64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806395d89b4111610118578063b88d4fde116100a0578063d936547e1161006f578063d936547e14610766578063dbac26e9146107a3578063e985e9c5146107e0578063eb8d24441461081d578063f2fde38b146108485761020f565b8063b88d4fde146106ac578063c87b56dd146106d5578063c933d09a14610712578063cd90936c1461073d5761020f565b8063a22cb465116100e7578063a22cb465146105ef578063a2ae30f214610618578063a8d9949d1461062f578063ab7a8ba914610658578063b0c482f0146106815761020f565b806395d89b41146105335780639878ca1d1461055e5780639c2b4daa14610587578063a035b1fe146105c45761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461045b5780636ecd23061461049857806370a08231146104b4578063715018a6146104f15780638da5cb5b146105085761020f565b806342842e0e146103b55780634e71d92d146103de578063606e78ef146103f557806361581de0146104325761020f565b80630b3ecfcf116101e25780630b3ecfcf146102e25780630d27577e1461030d57806318160ddd1461033857806320cef1dc1461036357806323b872dd1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613abf565b610871565b604051610248919061470a565b60405180910390f35b34801561025d57600080fd5b50610266610953565b6040516102739190614725565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613bc0565b6109e5565b6040516102b091906146a3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613a3e565b610a6a565b005b3480156102ee57600080fd5b506102f7610b82565b6040516103049190614a67565b60405180910390f35b34801561031957600080fd5b50610322610b96565b60405161032f9190614a67565b60405180910390f35b34801561034457600080fd5b5061034d610baa565b60405161035a9190614a82565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613a7a565b610bc7565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613938565b610d0e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613938565b610d6e565b005b3480156103ea57600080fd5b506103f3610d8e565b005b34801561040157600080fd5b5061041c600480360381019061041791906138aa565b61107a565b604051610429919061470a565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613a7a565b61109a565b005b34801561046757600080fd5b50610482600480360381019061047d9190613bc0565b6111e1565b60405161048f91906146a3565b60405180910390f35b6104b260048036038101906104ad9190613be9565b611293565b005b3480156104c057600080fd5b506104db60048036038101906104d691906138aa565b6114cb565b6040516104e89190614a82565b60405180910390f35b3480156104fd57600080fd5b50610506611583565b005b34801561051457600080fd5b5061051d61160b565b60405161052a91906146a3565b60405180910390f35b34801561053f57600080fd5b50610548611635565b6040516105559190614725565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613a3e565b6116c7565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613bc0565b61190d565b6040516105bb91906146a3565b60405180910390f35b3480156105d057600080fd5b506105d9611940565b6040516105e69190614a82565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613a02565b611946565b005b34801561062457600080fd5b5061062d611ac7565b005b34801561063b57600080fd5b5061065660048036038101906106519190613b11565b611b6f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190613b56565b611c01565b005b34801561068d57600080fd5b50610696611ec2565b6040516106a39190614a67565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613987565b611ed6565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613bc0565b611f38565b6040516107099190614725565b60405180910390f35b34801561071e57600080fd5b5061072761205b565b6040516107349190614a67565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906138d3565b61206f565b005b34801561077257600080fd5b5061078d600480360381019061078891906138aa565b612135565b60405161079a919061470a565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906138aa565b612155565b6040516107d7919061470a565b60405180910390f35b3480156107ec57600080fd5b50610807600480360381019061080291906138fc565b612175565b604051610814919061470a565b60405180910390f35b34801561082957600080fd5b50610832612209565b60405161083f919061470a565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906138aa565b61221c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82612314565b5b9050919050565b60606097805461096290614e68565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90614e68565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f08261237e565b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690614927565b60405180910390fd5b609b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a75826111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906149a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b056123ea565b73ffffffffffffffffffffffffffffffffffffffff161480610b345750610b3381610b2e6123ea565b612175565b5b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614847565b60405180910390fd5b610b7d83836123f2565b505050565b60cb60089054906101000a900461ffff1681565b60cb60069054906101000a900461ffff1681565b60006001610bb860d26124ab565b610bc29190614d51565b905090565b610bcf6123ea565b73ffffffffffffffffffffffffffffffffffffffff16610bed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90614947565b60405180910390fd5b60005b82829050811015610d0957600160cf6000858585818110610c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ca591906138aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d0190614ec5565b915050610c46565b505050565b610d1f610d196123ea565b826124b9565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906149e7565b60405180910390fd5b610d69838383612597565b505050565b610d8983838360405180602001604052806000815250611ed6565b505050565b60cf60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190614a27565b60405180910390fd5b60d060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906149c7565b60405180910390fd5b60cd60009054906101000a900460ff16610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90614807565b60405180910390fd5b60d160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614a47565b60405180910390fd5b60cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff16610faf9190614d1d565b61ffff16600160cb600a9054906101000a900461ffff16610fd09190614c04565b61ffff161115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906148e7565b60405180910390fd5b6110203360016127f3565b600160d160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60d16020528060005260406000206000915054906101000a900460ff1681565b6110a26123ea565b73ffffffffffffffffffffffffffffffffffffffff166110c061160b565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614947565b60405180910390fd5b60005b828290508110156111dc57600160d06000858585818110611163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061117891906138aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111d490614ec5565b915050611119565b505050565b6000806099600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190614887565b60405180910390fd5b80915050919050565b60d060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906149c7565b60405180910390fd5b60cd60009054906101000a900460ff1661136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690614807565b60405180910390fd5b60008160ff16118015611399575060cb60029054906101000a900461ffff1661ffff168160ff1611155b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90614907565b60405180910390fd5b60cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff166114049190614d1d565b61ffff168160ff1660cb600a9054906101000a900461ffff166114279190614c04565b61ffff16111561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614a07565b60405180910390fd5b8060ff1660cc5461147d9190614cc3565b34146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614747565b60405180910390fd5b6114c833826127f3565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614867565b60405180910390fd5b609a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158b6123ea565b73ffffffffffffffffffffffffffffffffffffffff166115a961160b565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614947565b60405180910390fd5b6116096000612964565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606098805461164490614e68565b80601f016020809104026020016040519081016040528092919081815260200182805461167090614e68565b80156116bd5780601f10611692576101008083540402835291602001916116bd565b820191906000526020600020905b8154815290600101906020018083116116a057829003601f168201915b5050505050905090565b6116cf6123ea565b73ffffffffffffffffffffffffffffffffffffffff166116ed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90614947565b60405180910390fd5b60cb60069054906101000a900461ffff1661ffff168160cb60089054906101000a900461ffff1661ffff166117789190614c3c565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906148e7565b60405180910390fd5b60005b818110156119085760cb60069054906101000a900461ffff1661ffff1660cb60089054906101000a900461ffff1661ffff1610156118f5576118078361180260d26124ab565b612a2a565b8260ce600061181660d26124ab565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff1661188360d26124ab565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e5010260405160405180910390a36118b960d2612a48565b60cb600881819054906101000a900461ffff16809291906118d990614e9a565b91906101000a81548161ffff021916908361ffff160217905550505b808061190090614ec5565b9150506117bc565b505050565b60ce6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60cc5481565b61194e6123ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906147e7565b60405180910390fd5b80609c60006119c96123ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a766123ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb919061470a565b60405180910390a35050565b611acf6123ea565b73ffffffffffffffffffffffffffffffffffffffff16611aed61160b565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614947565b60405180910390fd5b60cd60009054906101000a900460ff161560cd60006101000a81548160ff021916908315150217905550565b611b776123ea565b73ffffffffffffffffffffffffffffffffffffffff16611b9561160b565b73ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614947565b60405180910390fd5b818160c99190611bfc9291906135c1565b505050565b600060019054906101000a900460ff1680611c27575060008054906101000a900460ff16155b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015611cb6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611d64828060000190611cc99190614af4565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050838060200190611d1c9190614af4565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612a5e565b611d6c612b53565b611d84828060600190611d7f9190614a9d565b610bc7565b611d8e60d2612a48565b818060400190611d9e9190614af4565b60ca9190611dad9291906135c1565b50816080016020810190611dc19190613b97565b60cb60046101000a81548161ffff021916908361ffff1602179055508160a0016020810190611df09190613b97565b60cb60066101000a81548161ffff021916908361ffff1602179055508160c0016020810190611e1f9190613b97565b60cb60026101000a81548161ffff021916908361ffff1602179055508160e0013560cc81905550600060cd60006101000a81548160ff021916908315150217905550600060cb60086101000a81548161ffff021916908361ffff160217905550600060cb600a6101000a81548161ffff021916908361ffff1602179055508015611ebe5760008060016101000a81548160ff0219169083151502179055505b5050565b60cb600a9054906101000a900461ffff1681565b611ee7611ee16123ea565b836124b9565b611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906149e7565b60405180910390fd5b611f3284848484612c3c565b50505050565b6060611f438261237e565b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614987565b60405180910390fd5b600060c98054611f9190614e68565b9050116120285760ca8054611fa590614e68565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd190614e68565b801561201e5780601f10611ff35761010080835404028352916020019161201e565b820191906000526020600020905b81548152906001019060200180831161200157829003601f168201915b5050505050612054565b60c961203383612c98565b60405160200161204492919061465e565b6040516020818303038152906040525b9050919050565b60cb60049054906101000a900461ffff1681565b6120776123ea565b73ffffffffffffffffffffffffffffffffffffffff1661209561160b565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614947565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612131573d6000803e3d6000fd5b5050565b60cf6020528060005260406000206000915054906101000a900460ff1681565b60d06020528060005260406000206000915054906101000a900460ff1681565b6000609c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60cd60009054906101000a900460ff1681565b6122246123ea565b73ffffffffffffffffffffffffffffffffffffffff1661224261160b565b73ffffffffffffffffffffffffffffffffffffffff1614612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff90614787565b60405180910390fd5b61231181612964565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166099600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81609b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612465836111e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006124c48261237e565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614827565b60405180910390fd5b600061250e836111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061257d57508373ffffffffffffffffffffffffffffffffffffffff16612565846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061258e575061258d8185612175565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125b7826111e1565b73ffffffffffffffffffffffffffffffffffffffff161461260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906147c7565b60405180910390fd5b612688838383612e45565b6126936000826123f2565b6001609a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e39190614d51565b925050819055506001609a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273a9190614c3c565b92505081905550816099600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8160ff1681101561295f5760cb60069054906101000a900461ffff1660cb60049054906101000a900461ffff1661282d9190614d1d565b61ffff1660cb600a9054906101000a900461ffff1661ffff161161294c5761285e8361285960d26124ab565b612a2a565b8260ce600061286d60d26124ab565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff166128da60d26124ab565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e5010260405160405180910390a361291060d2612a48565b60cb600a81819054906101000a900461ffff168092919061293090614e9a565b91906101000a81548161ffff021916908361ffff160217905550505b808061295790614ec5565b9150506127f6565b505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a44828260405180602001604052806000815250612e4a565b5050565b6001816000016000828254019250508190555050565b600060019054906101000a900460ff1680612a84575060008054906101000a900460ff16155b612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b13576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b1b612ea5565b612b23612f7e565b612b2d8383613057565b8015612b4e5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612b79575060008054906101000a900460ff16155b612bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baf906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612c08576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612c10612ea5565b612c18613160565b8015612c395760008060016101000a81548160ff0219169083151502179055505b50565b612c47848484612597565b612c5384848484613249565b612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614767565b60405180910390fd5b50505050565b60606000821415612ce0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e40565b600082905060005b60008214612d12578080612cfb90614ec5565b915050600a82612d0b9190614c92565b9150612ce8565b60008167ffffffffffffffff811115612d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d865781602001600182028036833780820191505090505b5090505b60008514612e3957600182612d9f9190614d51565b9150600a85612dae9190614f0e565b6030612dba9190614c3c565b60f81b818381518110612df6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e329190614c92565b9450612d8a565b8093505050505b919050565b505050565b612e5483836133e0565b612e616000848484613249565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9790614767565b60405180910390fd5b505050565b600060019054906101000a900460ff1680612ecb575060008054906101000a900460ff16155b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f01906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015612f5a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612f7b5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612fa4575060008054906101000a900460ff16155b612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015613033576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156130545760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061307d575060008054906101000a900460ff16155b6130bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b3906148a7565b60405180910390fd5b60008060019054906101000a900460ff16159050801561310c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260979080519060200190613122929190613647565b508160989080519060200190613139929190613647565b50801561315b5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680613186575060008054906101000a900460ff16155b6131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc906148a7565b60405180910390fd5b60008060019054906101000a900460ff161590508015613215576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6132256132206123ea565b612964565b80156132465760008060016101000a81548160ff0219169083151502179055505b50565b600061326a8473ffffffffffffffffffffffffffffffffffffffff166135ae565b156133d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132936123ea565b8786866040518563ffffffff1660e01b81526004016132b594939291906146be565b602060405180830381600087803b1580156132cf57600080fd5b505af192505050801561330057506040513d601f19601f820116820180604052508101906132fd9190613ae8565b60015b613383573d8060008114613330576040519150601f19603f3d011682016040523d82523d6000602084013e613335565b606091505b5060008151141561337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337290614767565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133d8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613447906148c7565b60405180910390fd5b6134598161237e565b15613499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613490906147a7565b60405180910390fd5b6134a560008383612e45565b6001609a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134f59190614c3c565b92505081905550816099600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135cd90614e68565b90600052602060002090601f0160209004810192826135ef5760008555613636565b82601f1061360857803560ff1916838001178555613636565b82800160010185558215613636579182015b8281111561363557823582559160200191906001019061361a565b5b50905061364391906136cd565b5090565b82805461365390614e68565b90600052602060002090601f01602090048101928261367557600085556136bc565b82601f1061368e57805160ff19168380011785556136bc565b828001600101855582156136bc579182015b828111156136bb5782518255916020019190600101906136a0565b5b5090506136c991906136cd565b5090565b5b808211156136e65760008160009055506001016136ce565b5090565b60006136fd6136f884614b7c565b614b4b565b90508281526020810184848401111561371557600080fd5b613720848285614e26565b509392505050565b6000813590506137378161500c565b92915050565b60008135905061374c81615023565b92915050565b60008083601f84011261376457600080fd5b8235905067ffffffffffffffff81111561377d57600080fd5b60208301915083602082028301111561379557600080fd5b9250929050565b6000813590506137ab8161503a565b92915050565b6000813590506137c081615051565b92915050565b6000815190506137d581615051565b92915050565b600082601f8301126137ec57600080fd5b81356137fc8482602086016136ea565b91505092915050565b60008083601f84011261381757600080fd5b8235905067ffffffffffffffff81111561383057600080fd5b60208301915083600182028301111561384857600080fd5b9250929050565b6000610100828403121561386257600080fd5b81905092915050565b60008135905061387a81615068565b92915050565b60008135905061388f8161507f565b92915050565b6000813590506138a481615096565b92915050565b6000602082840312156138bc57600080fd5b60006138ca84828501613728565b91505092915050565b6000602082840312156138e557600080fd5b60006138f38482850161373d565b91505092915050565b6000806040838503121561390f57600080fd5b600061391d85828601613728565b925050602061392e85828601613728565b9150509250929050565b60008060006060848603121561394d57600080fd5b600061395b86828701613728565b935050602061396c86828701613728565b925050604061397d86828701613880565b9150509250925092565b6000806000806080858703121561399d57600080fd5b60006139ab87828801613728565b94505060206139bc87828801613728565b93505060406139cd87828801613880565b925050606085013567ffffffffffffffff8111156139ea57600080fd5b6139f6878288016137db565b91505092959194509250565b60008060408385031215613a1557600080fd5b6000613a2385828601613728565b9250506020613a348582860161379c565b9150509250929050565b60008060408385031215613a5157600080fd5b6000613a5f85828601613728565b9250506020613a7085828601613880565b9150509250929050565b60008060208385031215613a8d57600080fd5b600083013567ffffffffffffffff811115613aa757600080fd5b613ab385828601613752565b92509250509250929050565b600060208284031215613ad157600080fd5b6000613adf848285016137b1565b91505092915050565b600060208284031215613afa57600080fd5b6000613b08848285016137c6565b91505092915050565b60008060208385031215613b2457600080fd5b600083013567ffffffffffffffff811115613b3e57600080fd5b613b4a85828601613805565b92509250509250929050565b600060208284031215613b6857600080fd5b600082013567ffffffffffffffff811115613b8257600080fd5b613b8e8482850161384f565b91505092915050565b600060208284031215613ba957600080fd5b6000613bb78482850161386b565b91505092915050565b600060208284031215613bd257600080fd5b6000613be084828501613880565b91505092915050565b600060208284031215613bfb57600080fd5b6000613c0984828501613895565b91505092915050565b613c1b81614d85565b82525050565b613c2a81614da9565b82525050565b6000613c3b82614bc1565b613c458185614bd7565b9350613c55818560208601614e35565b613c5e81614ffb565b840191505092915050565b6000613c7482614bcc565b613c7e8185614be8565b9350613c8e818560208601614e35565b613c9781614ffb565b840191505092915050565b6000613cad82614bcc565b613cb78185614bf9565b9350613cc7818560208601614e35565b80840191505092915050565b60008154613ce081614e68565b613cea8186614bf9565b94506001821660008114613d055760018114613d1657613d49565b60ff19831686528186019350613d49565b613d1f85614bac565b60005b83811015613d4157815481890152600182019150602081019050613d22565b838801955050505b50505092915050565b6000613d5f601083614be8565b91507f4e4f545f454e4f5547485f4554484552000000000000000000000000000000006000830152602082019050919050565b6000613d9f603283614be8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613e05602683614be8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6b601c83614be8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613eab602483614be8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f11601983614be8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f51600b83614be8565b91507f53414c455f434c4f5345440000000000000000000000000000000000000000006000830152602082019050919050565b6000613f91602c83614be8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ff7600783614bf9565b91507f697066733a2f2f000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000614037603883614be8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061409d602a83614be8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614103602983614be8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614169602e83614be8565b91507f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008301527f647920696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b60006141cf602083614be8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061420f600e83614be8565b91507f455843454544535f535550504c590000000000000000000000000000000000006000830152602082019050919050565b600061424f601983614be8565b91507f455843454544535f5452414e53414354494f4e5f4c494d4954000000000000006000830152602082019050919050565b600061428f602c83614be8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142f5600583614bf9565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614335602083614be8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614375602983614be8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143db602f83614be8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614441602183614be8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144a7600683614be8565b91507f42414e4e454400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006144e7603183614be8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061454d601683614be8565b91507f4d5553545f4d494e545f46524f4d5f52455345525645000000000000000000006000830152602082019050919050565b600061458d600f83614be8565b91507f4e4f545f57484954454c495354454400000000000000000000000000000000006000830152602082019050919050565b60006145cd600d83614be8565b91507f544f4b454e5f434c41494d4544000000000000000000000000000000000000006000830152602082019050919050565b600061460d600183614bf9565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61464981614de1565b82525050565b61465881614e0f565b82525050565b600061466982613fea565b91506146758285613cd3565b915061468082614600565b915061468c8284613ca2565b9150614697826142e8565b91508190509392505050565b60006020820190506146b86000830184613c12565b92915050565b60006080820190506146d36000830187613c12565b6146e06020830186613c12565b6146ed604083018561464f565b81810360608301526146ff8184613c30565b905095945050505050565b600060208201905061471f6000830184613c21565b92915050565b6000602082019050818103600083015261473f8184613c69565b905092915050565b6000602082019050818103600083015261476081613d52565b9050919050565b6000602082019050818103600083015261478081613d92565b9050919050565b600060208201905081810360008301526147a081613df8565b9050919050565b600060208201905081810360008301526147c081613e5e565b9050919050565b600060208201905081810360008301526147e081613e9e565b9050919050565b6000602082019050818103600083015261480081613f04565b9050919050565b6000602082019050818103600083015261482081613f44565b9050919050565b6000602082019050818103600083015261484081613f84565b9050919050565b600060208201905081810360008301526148608161402a565b9050919050565b6000602082019050818103600083015261488081614090565b9050919050565b600060208201905081810360008301526148a0816140f6565b9050919050565b600060208201905081810360008301526148c08161415c565b9050919050565b600060208201905081810360008301526148e0816141c2565b9050919050565b6000602082019050818103600083015261490081614202565b9050919050565b6000602082019050818103600083015261492081614242565b9050919050565b6000602082019050818103600083015261494081614282565b9050919050565b6000602082019050818103600083015261496081614328565b9050919050565b6000602082019050818103600083015261498081614368565b9050919050565b600060208201905081810360008301526149a0816143ce565b9050919050565b600060208201905081810360008301526149c081614434565b9050919050565b600060208201905081810360008301526149e08161449a565b9050919050565b60006020820190508181036000830152614a00816144da565b9050919050565b60006020820190508181036000830152614a2081614540565b9050919050565b60006020820190508181036000830152614a4081614580565b9050919050565b60006020820190508181036000830152614a60816145c0565b9050919050565b6000602082019050614a7c6000830184614640565b92915050565b6000602082019050614a97600083018461464f565b92915050565b60008083356001602003843603038112614ab657600080fd5b80840192508235915067ffffffffffffffff821115614ad457600080fd5b602083019250602082023603831315614aec57600080fd5b509250929050565b60008083356001602003843603038112614b0d57600080fd5b80840192508235915067ffffffffffffffff821115614b2b57600080fd5b602083019250600182023603831315614b4357600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614b7257614b71614fcc565b5b8060405250919050565b600067ffffffffffffffff821115614b9757614b96614fcc565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0f82614de1565b9150614c1a83614de1565b92508261ffff03821115614c3157614c30614f3f565b5b828201905092915050565b6000614c4782614e0f565b9150614c5283614e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c8757614c86614f3f565b5b828201905092915050565b6000614c9d82614e0f565b9150614ca883614e0f565b925082614cb857614cb7614f6e565b5b828204905092915050565b6000614cce82614e0f565b9150614cd983614e0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d1257614d11614f3f565b5b828202905092915050565b6000614d2882614de1565b9150614d3383614de1565b925082821015614d4657614d45614f3f565b5b828203905092915050565b6000614d5c82614e0f565b9150614d6783614e0f565b925082821015614d7a57614d79614f3f565b5b828203905092915050565b6000614d9082614def565b9050919050565b6000614da282614def565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614e53578082015181840152602081019050614e38565b83811115614e62576000848401525b50505050565b60006002820490506001821680614e8057607f821691505b60208210811415614e9457614e93614f9d565b5b50919050565b6000614ea582614de1565b915061ffff821415614eba57614eb9614f3f565b5b600182019050919050565b6000614ed082614e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f0357614f02614f3f565b5b600182019050919050565b6000614f1982614e0f565b9150614f2483614e0f565b925082614f3457614f33614f6e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61501581614d85565b811461502057600080fd5b50565b61502c81614d97565b811461503757600080fd5b50565b61504381614da9565b811461504e57600080fd5b50565b61505a81614db5565b811461506557600080fd5b50565b61507181614de1565b811461507c57600080fd5b50565b61508881614e0f565b811461509357600080fd5b50565b61509f81614e19565b81146150aa57600080fd5b5056fea2646970667358221220fb3d5bbaae05dfbf11972bf7798d2d08e71c80c00371a30e12d42f146dad3eca64736f6c63430008000033

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.