ETH Price: $3,403.60 (+1.12%)

Token

Partisia (PARTISIA)
 

Overview

Max Total Supply

361 PARTISIA

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PARTISIA
0xE90052e2173D7617328e6AfdcC34f338Ed6daa2d
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:
PartisiaDrop001

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//                                                                                                                                        //
//    PPPPPPPPPPPPPPPPP                                               tttt            iiii                     iiii                       //
//    P::::::::::::::::P                                           ttt:::t           i::::i                   i::::i                      //
//    P::::::PPPPPP:::::P                                          t:::::t            iiii                     iiii                       //
//    PP:::::P     P:::::P                                         t:::::t                                                                //
//      P::::P     P:::::Paaaaaaaaaaaaa  rrrrr   rrrrrrrrr   ttttttt:::::ttttttt    iiiiiii     ssssssssss   iiiiiii   aaaaaaaaaaaaa      //
//      P::::P     P:::::Pa::::::::::::a r::::rrr:::::::::r  t:::::::::::::::::t    i:::::i   ss::::::::::s  i:::::i   a::::::::::::a     //
//      P::::PPPPPP:::::P aaaaaaaaa:::::ar:::::::::::::::::r t:::::::::::::::::t     i::::i ss:::::::::::::s  i::::i   aaaaaaaaa:::::a    //
//      P:::::::::::::PP           a::::arr::::::rrrrr::::::rtttttt:::::::tttttt     i::::i s::::::ssss:::::s i::::i            a::::a    //
//      P::::PPPPPPPPP      aaaaaaa:::::a r:::::r     r:::::r      t:::::t           i::::i  s:::::s  ssssss  i::::i     aaaaaaa:::::a    //
//      P::::P            aa::::::::::::a r:::::r     rrrrrrr      t:::::t           i::::i    s::::::s       i::::i   aa::::::::::::a    //
//      P::::P           a::::aaaa::::::a r:::::r                  t:::::t           i::::i       s::::::s    i::::i  a::::aaaa::::::a    //
//      P::::P          a::::a    a:::::a r:::::r                  t:::::t    tttttt i::::i ssssss   s:::::s  i::::i a::::a    a:::::a    //
//    PP::::::PP        a::::a    a:::::a r:::::r                  t::::::tttt:::::ti::::::is:::::ssss::::::si::::::ia::::a    a:::::a    //
//    P::::::::P        a:::::aaaa::::::a r:::::r                  tt::::::::::::::ti::::::is::::::::::::::s i::::::ia:::::aaaa::::::a    //
//    P::::::::P         a::::::::::aa:::ar:::::r                    tt:::::::::::tti::::::i s:::::::::::ss  i::::::i a::::::::::aa:::a   //
//    PPPPPPPPPP          aaaaaaaaaa  aaaarrrrrrr                      ttttttttttt  iiiiiiii  sssssssssss    iiiiiiii  aaaaaaaaaa  aaaa   //
//                                                                                                                                        //
//    /$$$$$$$  /$$                     /$$                 /$$                 /$$                                                       //
//   | $$__  $$| $$                    | $$                | $$                |__/                                                       //
//   | $$  \ $$| $$  /$$$$$$   /$$$$$$$| $$   /$$  /$$$$$$$| $$$$$$$   /$$$$$$  /$$ /$$$$$$$                                              //
//   | $$$$$$$ | $$ /$$__  $$ /$$_____/| $$  /$$/ /$$_____/| $$__  $$ |____  $$| $$| $$__  $$                                             //
//   | $$__  $$| $$| $$  \ $$| $$      | $$$$$$/ | $$      | $$  \ $$  /$$$$$$$| $$| $$  \ $$                                             //
//   | $$  \ $$| $$| $$  | $$| $$      | $$_  $$ | $$      | $$  | $$ /$$__  $$| $$| $$  | $$                                             //
//   | $$$$$$$/| $$|  $$$$$$/|  $$$$$$$| $$ \  $$|  $$$$$$$| $$  | $$|  $$$$$$$| $$| $$  | $$                                             //
//   |_______/ |__/ \______/  \_______/|__/  \__/ \_______/|__/  |__/ \_______/|__/|__/  |__/                                             //
//                                                                                                                                        //                                 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

// Partisia Blockchain's 1st Official NFT

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

contract PartisiaDrop001 is ERC721URIStorage, Ownable {
  using SafeMath for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  uint16 public constant maxSupply = 1111;
  uint public constant maxTotalMints = 20; // This is the total mints limited per address
  uint256 public dropStartsAt;
  uint256 public dropEndsAt;
  uint256 public nftUnitPrice = 2.5 ether;
  bool public paused = false;

  string private _baseURIextended;
  address private constant withdrawTo = 0x5d0b575479ca01D2Ae0c6F7d5db8b7c1aC8f589E;

  mapping(address => uint) _addressMinted;
  mapping(address => bool) _whitelist;
  mapping(address => bool) public whitelist;

  constructor() ERC721("Partisia", "PARTISIA") { }

  function withdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      (bool sent, bytes memory data) = withdrawTo.call{value: balance}("");
      require(sent, "Failed to send Ether");
  }

  function setBaseURI(string memory baseURI_) external onlyOwner {
      _baseURIextended = baseURI_;
  }

  function setWhitelistAndTime(
      address[] memory addresses,
      uint256 timeStart,
      uint256 timeEnd
  ) external onlyOwner {
      for (uint16 i = 0; i < addresses.length; i++) {
        whitelist[addresses[i]] = true;
      }
      dropStartsAt = timeStart;
      dropEndsAt = timeEnd;
  }

  function addToWhitelist(address[] memory addresses) external onlyOwner{
    for (uint16 i = 0; i < addresses.length; i++) {
      whitelist[addresses[i]] = true;
    }
  }

  function setDropTime(uint256 timeStart, uint256 timeEnd) external onlyOwner {
    dropStartsAt = timeStart;
    dropEndsAt = timeEnd;
  }

  function setMintPrice(uint256 price) external onlyOwner {
    nftUnitPrice = price;
  }

  function togglePaused() external onlyOwner {
    paused = !paused;
  }

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

  function totalSupply() public view virtual returns (uint256) {
      return _tokenIds.current();
  }

  function getMintAmount() public view virtual returns (uint256) {
      return nftUnitPrice;
  }

  function getBaseUri() public view virtual returns (string memory) {
      return _baseURIextended;
  }

  function getAuctionTime() public view virtual returns (uint256[2] memory) {
      return [dropStartsAt, dropEndsAt];
  }

  function hasMinted(address addr) public view returns(uint) {
    return _addressMinted[addr];
  }

  function numRemaining(address addr) public view returns(uint) {
    return maxTotalMints - _addressMinted[addr];
  }

  function mint(uint numberOfTokens) external payable {
    require(!paused, "The contract is currently paused");
    require((_addressMinted[msg.sender] + numberOfTokens) <= maxTotalMints , "This exceeds the max mint limit");
    require(_tokenIds.current().add(numberOfTokens) <= maxSupply, "Purchase would exceed total supply");
    require(nftUnitPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
    require(block.timestamp >= dropStartsAt , "Invalid block start time");
    require(block.timestamp <= dropEndsAt, "Invalid block end time");
    require(whitelist[msg.sender], "Address not whitelisted");

    for(uint i=0; i < numberOfTokens; i++) {
      _tokenIds.increment();
      uint256 _idx = _tokenIds.current();
      _mint(msg.sender, _idx);
      _setTokenURI(_idx, Strings.toString(_idx));
    }

    _addressMinted[msg.sender] = _addressMinted[msg.sender] + numberOfTokens;
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionTime","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftUnitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timeStart","type":"uint256"},{"internalType":"uint256","name":"timeEnd","type":"uint256"}],"name":"setDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"timeStart","type":"uint256"},{"internalType":"uint256","name":"timeEnd","type":"uint256"}],"name":"setWhitelistAndTime","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":"togglePaused","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":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526722b1c8c1227a0000600b556000600c60006101000a81548160ff0219169083151502179055503480156200003857600080fd5b506040518060400160405280600881526020017f50617274697369610000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f50415254495349410000000000000000000000000000000000000000000000008152508160009080519060200190620000bd929190620001cd565b508060019080519060200190620000d6929190620001cd565b505050620000f9620000ed620000ff60201b60201c565b6200010760201b60201c565b620002e2565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001db906200027d565b90600052602060002090601f016020900481019282620001ff57600085556200024b565b82601f106200021a57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024a5782518255916020019190600101906200022d565b5b5090506200025a91906200025e565b5090565b5b80821115620002795760008160009055506001016200025f565b5090565b600060028204905060018216806200029657607f821691505b60208210811415620002ad57620002ac620002b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145ef80620002f26000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b2578063e985e9c5146107dd578063f2fde38b1461081a578063f4a0a52814610843578063fc739a621461086c5761021a565b8063a22cb465146106cf578063a8995deb146106f8578063b88d4fde14610723578063bc5068b21461074c578063c87b56dd146107755761021a565b80638da5cb5b116100f25780638da5cb5b146105f75780638fa975e71461062257806395d89b411461064b5780639b19251a14610676578063a0712d68146106b35761021a565b8063715018a61461054f578063788cc54e146105665780637f6497831461059157806383bb7ffb146105ba5761021a565b806336b304cd116101a65780634d20acc4116101755780634d20acc41461045657806355f804b3146104815780635c975abb146104aa5780636352211e146104d557806370a08231146105125761021a565b806336b304cd146103ae57806338e21cce146103d95780633ccfd60b1461041657806342842e0e1461042d5761021a565b80630cac36b2116101ed5780630cac36b2146102ed57806318160ddd1461031857806323b872dd14610343578063351ca5951461036c57806336566f06146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613111565b610897565b6040516102539190613cf5565b60405180910390f35b34801561026857600080fd5b50610271610979565b60405161027e9190613d10565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906131a4565b610a0b565b6040516102bb9190613c73565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061302d565b610a90565b005b3480156102f957600080fd5b50610302610ba8565b60405161030f9190613d10565b60405180910390f35b34801561032457600080fd5b5061032d610c3a565b60405161033a919061408d565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612f27565b610c4b565b005b34801561037857600080fd5b50610381610cab565b60405161038e919061408d565b60405180910390f35b3480156103a357600080fd5b506103ac610cb1565b005b3480156103ba57600080fd5b506103c3610d59565b6040516103d09190613cda565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612ec2565b610d7f565b60405161040d919061408d565b60405180910390f35b34801561042257600080fd5b5061042b610dc8565b005b34801561043957600080fd5b50610454600480360381019061044f9190612f27565b610f10565b005b34801561046257600080fd5b5061046b610f30565b604051610478919061408d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613163565b610f36565b005b3480156104b657600080fd5b506104bf610fcc565b6040516104cc9190613cf5565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906131a4565b610fdf565b6040516105099190613c73565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612ec2565b611091565b604051610546919061408d565b60405180910390f35b34801561055b57600080fd5b50610564611149565b005b34801561057257600080fd5b5061057b6111d1565b604051610588919061408d565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613069565b6111d7565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612ec2565b611316565b6040516105ee919061408d565b60405180910390f35b34801561060357600080fd5b5061060c61136b565b6040516106199190613c73565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906130aa565b611395565b005b34801561065757600080fd5b506106606114e4565b60405161066d9190613d10565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612ec2565b611576565b6040516106aa9190613cf5565b60405180910390f35b6106cd60048036038101906106c891906131a4565b611596565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612ff1565b61192a565b005b34801561070457600080fd5b5061070d611aab565b60405161071a919061408d565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612f76565b611ab5565b005b34801561075857600080fd5b50610773600480360381019061076e91906131cd565b611b17565b005b34801561078157600080fd5b5061079c600480360381019061079791906131a4565b611ba5565b6040516107a99190613d10565b60405180910390f35b3480156107be57600080fd5b506107c7611cf7565b6040516107d49190614072565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190612eeb565b611cfd565b6040516108119190613cf5565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190612ec2565b611d91565b005b34801561084f57600080fd5b5061086a600480360381019061086591906131a4565b611e89565b005b34801561087857600080fd5b50610881611f0f565b60405161088e919061408d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610972575061097182611f14565b5b9050919050565b606060008054610988906143b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b4906143b9565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611f7e565b610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90613f32565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b82610fdf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390613fd2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2b611fea565b73ffffffffffffffffffffffffffffffffffffffff161480610b5a5750610b5981610b54611fea565b611cfd565b5b610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090613e52565b60405180910390fd5b610ba38383611ff2565b505050565b6060600d8054610bb7906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610be3906143b9565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b6000610c4660086120ab565b905090565b610c5c610c56611fea565b826120b9565b610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290614012565b60405180910390fd5b610ca6838383612197565b505050565b600b5481565b610cb9611fea565b73ffffffffffffffffffffffffffffffffffffffff16610cd761136b565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490613f52565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610d61612c2e565b60405180604001604052806009548152602001600a54815250905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd0611fea565b73ffffffffffffffffffffffffffffffffffffffff16610dee61136b565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613f52565b60405180910390fd5b6000479050600080735d0b575479ca01d2ae0c6f7d5db8b7c1ac8f589e73ffffffffffffffffffffffffffffffffffffffff1683604051610e8490613c5e565b60006040518083038185875af1925050503d8060008114610ec1576040519150601f19603f3d011682016040523d82523d6000602084013e610ec6565b606091505b509150915081610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613db2565b60405180910390fd5b505050565b610f2b83838360405180602001604052806000815250611ab5565b505050565b60095481565b610f3e611fea565b73ffffffffffffffffffffffffffffffffffffffff16610f5c61136b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990613f52565b60405180910390fd5b80600d9080519060200190610fc8929190612c50565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613e92565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613e72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611151611fea565b73ffffffffffffffffffffffffffffffffffffffff1661116f61136b565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613f52565b60405180910390fd5b6111cf60006123f3565b565b600a5481565b6111df611fea565b73ffffffffffffffffffffffffffffffffffffffff166111fd61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90613f52565b60405180910390fd5b60005b81518161ffff16101561131257600160106000848461ffff16815181106112a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130a906143eb565b915050611256565b5050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601461136491906142c1565b9050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61139d611fea565b73ffffffffffffffffffffffffffffffffffffffff166113bb61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613f52565b60405180910390fd5b60005b83518161ffff1610156114d057600160106000868461ffff1681518110611464577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c8906143eb565b915050611414565b508160098190555080600a81905550505050565b6060600180546114f3906143b9565b80601f016020809104026020016040519081016040528092919081815260200182805461151f906143b9565b801561156c5780601f106115415761010080835404028352916020019161156c565b820191906000526020600020905b81548152906001019060200180831161154f57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b600c60009054906101000a900460ff16156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90613d32565b60405180910390fd5b601481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163391906141e0565b1115611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614052565b60405180910390fd5b61045761ffff166116978261168960086120ab565b6124b990919063ffffffff16565b11156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613ed2565b60405180910390fd5b346116ee82600b546124cf90919063ffffffff16565b111561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613e12565b60405180910390fd5b600954421015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90613ff2565b60405180910390fd5b600a544211156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614032565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90613fb2565b60405180910390fd5b60005b818110156118985761185a60086124e5565b600061186660086120ab565b905061187233826124fb565b6118848161187f836126c9565b612876565b50808061189090614416565b915050611848565b5080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e491906141e0565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611932611fea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613df2565b60405180910390fd5b80600560006119ad611fea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a611fea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f9190613cf5565b60405180910390a35050565b6000600b54905090565b611ac6611ac0611fea565b836120b9565b611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614012565b60405180910390fd5b611b11848484846128ea565b50505050565b611b1f611fea565b73ffffffffffffffffffffffffffffffffffffffff16611b3d61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613f52565b60405180910390fd5b8160098190555080600a819055505050565b6060611bb082611f7e565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613f12565b60405180910390fd5b6000600660008481526020019081526020016000208054611c0f906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3b906143b9565b8015611c885780601f10611c5d57610100808354040283529160200191611c88565b820191906000526020600020905b815481529060010190602001808311611c6b57829003601f168201915b505050505090506000611c99612946565b9050600081511415611caf578192505050611cf2565b600082511115611ce4578082604051602001611ccc929190613c3a565b60405160208183030381529060405292505050611cf2565b611ced846129d8565b925050505b919050565b61045781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d99611fea565b73ffffffffffffffffffffffffffffffffffffffff16611db761136b565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490613f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613d72565b60405180910390fd5b611e86816123f3565b50565b611e91611fea565b73ffffffffffffffffffffffffffffffffffffffff16611eaf61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613f52565b60405180910390fd5b80600b8190555050565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661206583610fdf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120c482611f7e565b612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90613e32565b60405180910390fd5b600061210e83610fdf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061217d57508373ffffffffffffffffffffffffffffffffffffffff1661216584610a0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061218e575061218d8185611cfd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121b782610fdf565b73ffffffffffffffffffffffffffffffffffffffff161461220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490613f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613dd2565b60405180910390fd5b612288838383612a7f565b612293600082611ff2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e391906142c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233a91906141e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836124c791906141e0565b905092915050565b600081836124dd9190614267565b905092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256290613ef2565b60405180910390fd5b61257481611f7e565b156125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90613d92565b60405180910390fd5b6125c060008383612a7f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261091906141e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415612711576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612871565b600082905060005b6000821461274357808061272c90614416565b915050600a8261273c9190614236565b9150612719565b60008167ffffffffffffffff811115612785577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127b75781602001600182028036833780820191505090505b5090505b6000851461286a576001826127d091906142c1565b9150600a856127df919061445f565b60306127eb91906141e0565b60f81b818381518110612827577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128639190614236565b94506127bb565b8093505050505b919050565b61287f82611f7e565b6128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590613eb2565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906128e5929190612c50565b505050565b6128f5848484612197565b61290184848484612a84565b612940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293790613d52565b60405180910390fd5b50505050565b6060600d8054612955906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612981906143b9565b80156129ce5780601f106129a3576101008083540402835291602001916129ce565b820191906000526020600020905b8154815290600101906020018083116129b157829003601f168201915b5050505050905090565b60606129e382611f7e565b612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990613f92565b60405180910390fd5b6000612a2c612946565b90506000815111612a4c5760405180602001604052806000815250612a77565b80612a56846126c9565b604051602001612a67929190613c3a565b6040516020818303038152906040525b915050919050565b505050565b6000612aa58473ffffffffffffffffffffffffffffffffffffffff16612c1b565b15612c0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ace611fea565b8786866040518563ffffffff1660e01b8152600401612af09493929190613c8e565b602060405180830381600087803b158015612b0a57600080fd5b505af1925050508015612b3b57506040513d601f19601f82011682018060405250810190612b38919061313a565b60015b612bbe573d8060008114612b6b576040519150601f19603f3d011682016040523d82523d6000602084013e612b70565b606091505b50600081511415612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90613d52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c13565b600190505b949350505050565b600080823b905060008111915050919050565b6040518060400160405280600290602082028036833780820191505090505090565b828054612c5c906143b9565b90600052602060002090601f016020900481019282612c7e5760008555612cc5565b82601f10612c9757805160ff1916838001178555612cc5565b82800160010185558215612cc5579182015b82811115612cc4578251825591602001919060010190612ca9565b5b509050612cd29190612cd6565b5090565b5b80821115612cef576000816000905550600101612cd7565b5090565b6000612d06612d01846140d9565b6140a8565b90508083825260208201905082856020860282011115612d2557600080fd5b60005b85811015612d555781612d3b8882612ddb565b845260208401935060208301925050600181019050612d28565b5050509392505050565b6000612d72612d6d84614105565b6140a8565b905082815260208101848484011115612d8a57600080fd5b612d95848285614377565b509392505050565b6000612db0612dab84614135565b6140a8565b905082815260208101848484011115612dc857600080fd5b612dd3848285614377565b509392505050565b600081359050612dea8161455d565b92915050565b600082601f830112612e0157600080fd5b8135612e11848260208601612cf3565b91505092915050565b600081359050612e2981614574565b92915050565b600081359050612e3e8161458b565b92915050565b600081519050612e538161458b565b92915050565b600082601f830112612e6a57600080fd5b8135612e7a848260208601612d5f565b91505092915050565b600082601f830112612e9457600080fd5b8135612ea4848260208601612d9d565b91505092915050565b600081359050612ebc816145a2565b92915050565b600060208284031215612ed457600080fd5b6000612ee284828501612ddb565b91505092915050565b60008060408385031215612efe57600080fd5b6000612f0c85828601612ddb565b9250506020612f1d85828601612ddb565b9150509250929050565b600080600060608486031215612f3c57600080fd5b6000612f4a86828701612ddb565b9350506020612f5b86828701612ddb565b9250506040612f6c86828701612ead565b9150509250925092565b60008060008060808587031215612f8c57600080fd5b6000612f9a87828801612ddb565b9450506020612fab87828801612ddb565b9350506040612fbc87828801612ead565b925050606085013567ffffffffffffffff811115612fd957600080fd5b612fe587828801612e59565b91505092959194509250565b6000806040838503121561300457600080fd5b600061301285828601612ddb565b925050602061302385828601612e1a565b9150509250929050565b6000806040838503121561304057600080fd5b600061304e85828601612ddb565b925050602061305f85828601612ead565b9150509250929050565b60006020828403121561307b57600080fd5b600082013567ffffffffffffffff81111561309557600080fd5b6130a184828501612df0565b91505092915050565b6000806000606084860312156130bf57600080fd5b600084013567ffffffffffffffff8111156130d957600080fd5b6130e586828701612df0565b93505060206130f686828701612ead565b925050604061310786828701612ead565b9150509250925092565b60006020828403121561312357600080fd5b600061313184828501612e2f565b91505092915050565b60006020828403121561314c57600080fd5b600061315a84828501612e44565b91505092915050565b60006020828403121561317557600080fd5b600082013567ffffffffffffffff81111561318f57600080fd5b61319b84828501612e83565b91505092915050565b6000602082840312156131b657600080fd5b60006131c484828501612ead565b91505092915050565b600080604083850312156131e057600080fd5b60006131ee85828601612ead565b92505060206131ff85828601612ead565b9150509250929050565b60006132158383613c1c565b60208301905092915050565b61322a816142f5565b82525050565b6132398161416f565b613243818461419d565b925061324e82614165565b8060005b8381101561327f5781516132668782613209565b965061327183614190565b925050600181019050613252565b505050505050565b61329081614307565b82525050565b60006132a18261417a565b6132ab81856141a8565b93506132bb818560208601614386565b6132c48161454c565b840191505092915050565b60006132da82614185565b6132e481856141c4565b93506132f4818560208601614386565b6132fd8161454c565b840191505092915050565b600061331382614185565b61331d81856141d5565b935061332d818560208601614386565b80840191505092915050565b60006133466020836141c4565b91507f54686520636f6e74726163742069732063757272656e746c79207061757365646000830152602082019050919050565b60006133866032836141c4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133ec6026836141c4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613452601c836141c4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006134926014836141c4565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b60006134d26024836141c4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135386019836141c4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613578601f836141c4565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006135b8602c836141c4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061361e6038836141c4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613684602a836141c4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006136ea6029836141c4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613750602e836141c4565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b60006137b66022836141c4565b91507f507572636861736520776f756c642065786365656420746f74616c207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061381c6020836141c4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061385c6031836141c4565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006138c2602c836141c4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139286020836141c4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139686029836141c4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ce602f836141c4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a346017836141c4565b91507f41646472657373206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613a746021836141c4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ada6018836141c4565b91507f496e76616c696420626c6f636b2073746172742074696d6500000000000000006000830152602082019050919050565b6000613b1a6000836141b9565b9150600082019050919050565b6000613b346031836141c4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b9a6016836141c4565b91507f496e76616c696420626c6f636b20656e642074696d65000000000000000000006000830152602082019050919050565b6000613bda601f836141c4565b91507f54686973206578636565647320746865206d6178206d696e74206c696d6974006000830152602082019050919050565b613c168161433f565b82525050565b613c258161436d565b82525050565b613c348161436d565b82525050565b6000613c468285613308565b9150613c528284613308565b91508190509392505050565b6000613c6982613b0d565b9150819050919050565b6000602082019050613c886000830184613221565b92915050565b6000608082019050613ca36000830187613221565b613cb06020830186613221565b613cbd6040830185613c2b565b8181036060830152613ccf8184613296565b905095945050505050565b6000604082019050613cef6000830184613230565b92915050565b6000602082019050613d0a6000830184613287565b92915050565b60006020820190508181036000830152613d2a81846132cf565b905092915050565b60006020820190508181036000830152613d4b81613339565b9050919050565b60006020820190508181036000830152613d6b81613379565b9050919050565b60006020820190508181036000830152613d8b816133df565b9050919050565b60006020820190508181036000830152613dab81613445565b9050919050565b60006020820190508181036000830152613dcb81613485565b9050919050565b60006020820190508181036000830152613deb816134c5565b9050919050565b60006020820190508181036000830152613e0b8161352b565b9050919050565b60006020820190508181036000830152613e2b8161356b565b9050919050565b60006020820190508181036000830152613e4b816135ab565b9050919050565b60006020820190508181036000830152613e6b81613611565b9050919050565b60006020820190508181036000830152613e8b81613677565b9050919050565b60006020820190508181036000830152613eab816136dd565b9050919050565b60006020820190508181036000830152613ecb81613743565b9050919050565b60006020820190508181036000830152613eeb816137a9565b9050919050565b60006020820190508181036000830152613f0b8161380f565b9050919050565b60006020820190508181036000830152613f2b8161384f565b9050919050565b60006020820190508181036000830152613f4b816138b5565b9050919050565b60006020820190508181036000830152613f6b8161391b565b9050919050565b60006020820190508181036000830152613f8b8161395b565b9050919050565b60006020820190508181036000830152613fab816139c1565b9050919050565b60006020820190508181036000830152613fcb81613a27565b9050919050565b60006020820190508181036000830152613feb81613a67565b9050919050565b6000602082019050818103600083015261400b81613acd565b9050919050565b6000602082019050818103600083015261402b81613b27565b9050919050565b6000602082019050818103600083015261404b81613b8d565b9050919050565b6000602082019050818103600083015261406b81613bcd565b9050919050565b60006020820190506140876000830184613c0d565b92915050565b60006020820190506140a26000830184613c2b565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140cf576140ce61451d565b5b8060405250919050565b600067ffffffffffffffff8211156140f4576140f361451d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141205761411f61451d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141505761414f61451d565b5b601f19601f8301169050602081019050919050565b6000819050919050565b600060029050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141eb8261436d565b91506141f68361436d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561422b5761422a614490565b5b828201905092915050565b60006142418261436d565b915061424c8361436d565b92508261425c5761425b6144bf565b5b828204905092915050565b60006142728261436d565b915061427d8361436d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142b6576142b5614490565b5b828202905092915050565b60006142cc8261436d565b91506142d78361436d565b9250828210156142ea576142e9614490565b5b828203905092915050565b60006143008261434d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143a4578082015181840152602081019050614389565b838111156143b3576000848401525b50505050565b600060028204905060018216806143d157607f821691505b602082108114156143e5576143e46144ee565b5b50919050565b60006143f68261433f565b915061ffff82141561440b5761440a614490565b5b600182019050919050565b60006144218261436d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445457614453614490565b5b600182019050919050565b600061446a8261436d565b91506144758361436d565b925082614485576144846144bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614566816142f5565b811461457157600080fd5b50565b61457d81614307565b811461458857600080fd5b50565b61459481614313565b811461459f57600080fd5b50565b6145ab8161436d565b81146145b657600080fd5b5056fea264697066735822122078553b34cc6587c95a61137addede052a5445f4725b9e3f698f989854ccb9f9f64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b2578063e985e9c5146107dd578063f2fde38b1461081a578063f4a0a52814610843578063fc739a621461086c5761021a565b8063a22cb465146106cf578063a8995deb146106f8578063b88d4fde14610723578063bc5068b21461074c578063c87b56dd146107755761021a565b80638da5cb5b116100f25780638da5cb5b146105f75780638fa975e71461062257806395d89b411461064b5780639b19251a14610676578063a0712d68146106b35761021a565b8063715018a61461054f578063788cc54e146105665780637f6497831461059157806383bb7ffb146105ba5761021a565b806336b304cd116101a65780634d20acc4116101755780634d20acc41461045657806355f804b3146104815780635c975abb146104aa5780636352211e146104d557806370a08231146105125761021a565b806336b304cd146103ae57806338e21cce146103d95780633ccfd60b1461041657806342842e0e1461042d5761021a565b80630cac36b2116101ed5780630cac36b2146102ed57806318160ddd1461031857806323b872dd14610343578063351ca5951461036c57806336566f06146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613111565b610897565b6040516102539190613cf5565b60405180910390f35b34801561026857600080fd5b50610271610979565b60405161027e9190613d10565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906131a4565b610a0b565b6040516102bb9190613c73565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061302d565b610a90565b005b3480156102f957600080fd5b50610302610ba8565b60405161030f9190613d10565b60405180910390f35b34801561032457600080fd5b5061032d610c3a565b60405161033a919061408d565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612f27565b610c4b565b005b34801561037857600080fd5b50610381610cab565b60405161038e919061408d565b60405180910390f35b3480156103a357600080fd5b506103ac610cb1565b005b3480156103ba57600080fd5b506103c3610d59565b6040516103d09190613cda565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612ec2565b610d7f565b60405161040d919061408d565b60405180910390f35b34801561042257600080fd5b5061042b610dc8565b005b34801561043957600080fd5b50610454600480360381019061044f9190612f27565b610f10565b005b34801561046257600080fd5b5061046b610f30565b604051610478919061408d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613163565b610f36565b005b3480156104b657600080fd5b506104bf610fcc565b6040516104cc9190613cf5565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906131a4565b610fdf565b6040516105099190613c73565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612ec2565b611091565b604051610546919061408d565b60405180910390f35b34801561055b57600080fd5b50610564611149565b005b34801561057257600080fd5b5061057b6111d1565b604051610588919061408d565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613069565b6111d7565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612ec2565b611316565b6040516105ee919061408d565b60405180910390f35b34801561060357600080fd5b5061060c61136b565b6040516106199190613c73565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906130aa565b611395565b005b34801561065757600080fd5b506106606114e4565b60405161066d9190613d10565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612ec2565b611576565b6040516106aa9190613cf5565b60405180910390f35b6106cd60048036038101906106c891906131a4565b611596565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612ff1565b61192a565b005b34801561070457600080fd5b5061070d611aab565b60405161071a919061408d565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612f76565b611ab5565b005b34801561075857600080fd5b50610773600480360381019061076e91906131cd565b611b17565b005b34801561078157600080fd5b5061079c600480360381019061079791906131a4565b611ba5565b6040516107a99190613d10565b60405180910390f35b3480156107be57600080fd5b506107c7611cf7565b6040516107d49190614072565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190612eeb565b611cfd565b6040516108119190613cf5565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190612ec2565b611d91565b005b34801561084f57600080fd5b5061086a600480360381019061086591906131a4565b611e89565b005b34801561087857600080fd5b50610881611f0f565b60405161088e919061408d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610972575061097182611f14565b5b9050919050565b606060008054610988906143b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b4906143b9565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611f7e565b610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90613f32565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b82610fdf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390613fd2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2b611fea565b73ffffffffffffffffffffffffffffffffffffffff161480610b5a5750610b5981610b54611fea565b611cfd565b5b610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090613e52565b60405180910390fd5b610ba38383611ff2565b505050565b6060600d8054610bb7906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610be3906143b9565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b6000610c4660086120ab565b905090565b610c5c610c56611fea565b826120b9565b610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290614012565b60405180910390fd5b610ca6838383612197565b505050565b600b5481565b610cb9611fea565b73ffffffffffffffffffffffffffffffffffffffff16610cd761136b565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490613f52565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610d61612c2e565b60405180604001604052806009548152602001600a54815250905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd0611fea565b73ffffffffffffffffffffffffffffffffffffffff16610dee61136b565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613f52565b60405180910390fd5b6000479050600080735d0b575479ca01d2ae0c6f7d5db8b7c1ac8f589e73ffffffffffffffffffffffffffffffffffffffff1683604051610e8490613c5e565b60006040518083038185875af1925050503d8060008114610ec1576040519150601f19603f3d011682016040523d82523d6000602084013e610ec6565b606091505b509150915081610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613db2565b60405180910390fd5b505050565b610f2b83838360405180602001604052806000815250611ab5565b505050565b60095481565b610f3e611fea565b73ffffffffffffffffffffffffffffffffffffffff16610f5c61136b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990613f52565b60405180910390fd5b80600d9080519060200190610fc8929190612c50565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613e92565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613e72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611151611fea565b73ffffffffffffffffffffffffffffffffffffffff1661116f61136b565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613f52565b60405180910390fd5b6111cf60006123f3565b565b600a5481565b6111df611fea565b73ffffffffffffffffffffffffffffffffffffffff166111fd61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90613f52565b60405180910390fd5b60005b81518161ffff16101561131257600160106000848461ffff16815181106112a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130a906143eb565b915050611256565b5050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601461136491906142c1565b9050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61139d611fea565b73ffffffffffffffffffffffffffffffffffffffff166113bb61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613f52565b60405180910390fd5b60005b83518161ffff1610156114d057600160106000868461ffff1681518110611464577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c8906143eb565b915050611414565b508160098190555080600a81905550505050565b6060600180546114f3906143b9565b80601f016020809104026020016040519081016040528092919081815260200182805461151f906143b9565b801561156c5780601f106115415761010080835404028352916020019161156c565b820191906000526020600020905b81548152906001019060200180831161154f57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b600c60009054906101000a900460ff16156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90613d32565b60405180910390fd5b601481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163391906141e0565b1115611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614052565b60405180910390fd5b61045761ffff166116978261168960086120ab565b6124b990919063ffffffff16565b11156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613ed2565b60405180910390fd5b346116ee82600b546124cf90919063ffffffff16565b111561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613e12565b60405180910390fd5b600954421015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90613ff2565b60405180910390fd5b600a544211156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614032565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90613fb2565b60405180910390fd5b60005b818110156118985761185a60086124e5565b600061186660086120ab565b905061187233826124fb565b6118848161187f836126c9565b612876565b50808061189090614416565b915050611848565b5080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e491906141e0565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611932611fea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613df2565b60405180910390fd5b80600560006119ad611fea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a611fea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f9190613cf5565b60405180910390a35050565b6000600b54905090565b611ac6611ac0611fea565b836120b9565b611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614012565b60405180910390fd5b611b11848484846128ea565b50505050565b611b1f611fea565b73ffffffffffffffffffffffffffffffffffffffff16611b3d61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613f52565b60405180910390fd5b8160098190555080600a819055505050565b6060611bb082611f7e565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613f12565b60405180910390fd5b6000600660008481526020019081526020016000208054611c0f906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3b906143b9565b8015611c885780601f10611c5d57610100808354040283529160200191611c88565b820191906000526020600020905b815481529060010190602001808311611c6b57829003601f168201915b505050505090506000611c99612946565b9050600081511415611caf578192505050611cf2565b600082511115611ce4578082604051602001611ccc929190613c3a565b60405160208183030381529060405292505050611cf2565b611ced846129d8565b925050505b919050565b61045781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d99611fea565b73ffffffffffffffffffffffffffffffffffffffff16611db761136b565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490613f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613d72565b60405180910390fd5b611e86816123f3565b50565b611e91611fea565b73ffffffffffffffffffffffffffffffffffffffff16611eaf61136b565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613f52565b60405180910390fd5b80600b8190555050565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661206583610fdf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120c482611f7e565b612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90613e32565b60405180910390fd5b600061210e83610fdf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061217d57508373ffffffffffffffffffffffffffffffffffffffff1661216584610a0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061218e575061218d8185611cfd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121b782610fdf565b73ffffffffffffffffffffffffffffffffffffffff161461220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490613f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613dd2565b60405180910390fd5b612288838383612a7f565b612293600082611ff2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e391906142c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233a91906141e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836124c791906141e0565b905092915050565b600081836124dd9190614267565b905092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256290613ef2565b60405180910390fd5b61257481611f7e565b156125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90613d92565b60405180910390fd5b6125c060008383612a7f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261091906141e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415612711576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612871565b600082905060005b6000821461274357808061272c90614416565b915050600a8261273c9190614236565b9150612719565b60008167ffffffffffffffff811115612785577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127b75781602001600182028036833780820191505090505b5090505b6000851461286a576001826127d091906142c1565b9150600a856127df919061445f565b60306127eb91906141e0565b60f81b818381518110612827577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128639190614236565b94506127bb565b8093505050505b919050565b61287f82611f7e565b6128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590613eb2565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906128e5929190612c50565b505050565b6128f5848484612197565b61290184848484612a84565b612940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293790613d52565b60405180910390fd5b50505050565b6060600d8054612955906143b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612981906143b9565b80156129ce5780601f106129a3576101008083540402835291602001916129ce565b820191906000526020600020905b8154815290600101906020018083116129b157829003601f168201915b5050505050905090565b60606129e382611f7e565b612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990613f92565b60405180910390fd5b6000612a2c612946565b90506000815111612a4c5760405180602001604052806000815250612a77565b80612a56846126c9565b604051602001612a67929190613c3a565b6040516020818303038152906040525b915050919050565b505050565b6000612aa58473ffffffffffffffffffffffffffffffffffffffff16612c1b565b15612c0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ace611fea565b8786866040518563ffffffff1660e01b8152600401612af09493929190613c8e565b602060405180830381600087803b158015612b0a57600080fd5b505af1925050508015612b3b57506040513d601f19601f82011682018060405250810190612b38919061313a565b60015b612bbe573d8060008114612b6b576040519150601f19603f3d011682016040523d82523d6000602084013e612b70565b606091505b50600081511415612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90613d52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c13565b600190505b949350505050565b600080823b905060008111915050919050565b6040518060400160405280600290602082028036833780820191505090505090565b828054612c5c906143b9565b90600052602060002090601f016020900481019282612c7e5760008555612cc5565b82601f10612c9757805160ff1916838001178555612cc5565b82800160010185558215612cc5579182015b82811115612cc4578251825591602001919060010190612ca9565b5b509050612cd29190612cd6565b5090565b5b80821115612cef576000816000905550600101612cd7565b5090565b6000612d06612d01846140d9565b6140a8565b90508083825260208201905082856020860282011115612d2557600080fd5b60005b85811015612d555781612d3b8882612ddb565b845260208401935060208301925050600181019050612d28565b5050509392505050565b6000612d72612d6d84614105565b6140a8565b905082815260208101848484011115612d8a57600080fd5b612d95848285614377565b509392505050565b6000612db0612dab84614135565b6140a8565b905082815260208101848484011115612dc857600080fd5b612dd3848285614377565b509392505050565b600081359050612dea8161455d565b92915050565b600082601f830112612e0157600080fd5b8135612e11848260208601612cf3565b91505092915050565b600081359050612e2981614574565b92915050565b600081359050612e3e8161458b565b92915050565b600081519050612e538161458b565b92915050565b600082601f830112612e6a57600080fd5b8135612e7a848260208601612d5f565b91505092915050565b600082601f830112612e9457600080fd5b8135612ea4848260208601612d9d565b91505092915050565b600081359050612ebc816145a2565b92915050565b600060208284031215612ed457600080fd5b6000612ee284828501612ddb565b91505092915050565b60008060408385031215612efe57600080fd5b6000612f0c85828601612ddb565b9250506020612f1d85828601612ddb565b9150509250929050565b600080600060608486031215612f3c57600080fd5b6000612f4a86828701612ddb565b9350506020612f5b86828701612ddb565b9250506040612f6c86828701612ead565b9150509250925092565b60008060008060808587031215612f8c57600080fd5b6000612f9a87828801612ddb565b9450506020612fab87828801612ddb565b9350506040612fbc87828801612ead565b925050606085013567ffffffffffffffff811115612fd957600080fd5b612fe587828801612e59565b91505092959194509250565b6000806040838503121561300457600080fd5b600061301285828601612ddb565b925050602061302385828601612e1a565b9150509250929050565b6000806040838503121561304057600080fd5b600061304e85828601612ddb565b925050602061305f85828601612ead565b9150509250929050565b60006020828403121561307b57600080fd5b600082013567ffffffffffffffff81111561309557600080fd5b6130a184828501612df0565b91505092915050565b6000806000606084860312156130bf57600080fd5b600084013567ffffffffffffffff8111156130d957600080fd5b6130e586828701612df0565b93505060206130f686828701612ead565b925050604061310786828701612ead565b9150509250925092565b60006020828403121561312357600080fd5b600061313184828501612e2f565b91505092915050565b60006020828403121561314c57600080fd5b600061315a84828501612e44565b91505092915050565b60006020828403121561317557600080fd5b600082013567ffffffffffffffff81111561318f57600080fd5b61319b84828501612e83565b91505092915050565b6000602082840312156131b657600080fd5b60006131c484828501612ead565b91505092915050565b600080604083850312156131e057600080fd5b60006131ee85828601612ead565b92505060206131ff85828601612ead565b9150509250929050565b60006132158383613c1c565b60208301905092915050565b61322a816142f5565b82525050565b6132398161416f565b613243818461419d565b925061324e82614165565b8060005b8381101561327f5781516132668782613209565b965061327183614190565b925050600181019050613252565b505050505050565b61329081614307565b82525050565b60006132a18261417a565b6132ab81856141a8565b93506132bb818560208601614386565b6132c48161454c565b840191505092915050565b60006132da82614185565b6132e481856141c4565b93506132f4818560208601614386565b6132fd8161454c565b840191505092915050565b600061331382614185565b61331d81856141d5565b935061332d818560208601614386565b80840191505092915050565b60006133466020836141c4565b91507f54686520636f6e74726163742069732063757272656e746c79207061757365646000830152602082019050919050565b60006133866032836141c4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133ec6026836141c4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613452601c836141c4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006134926014836141c4565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b60006134d26024836141c4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135386019836141c4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613578601f836141c4565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006135b8602c836141c4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061361e6038836141c4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613684602a836141c4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006136ea6029836141c4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613750602e836141c4565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b60006137b66022836141c4565b91507f507572636861736520776f756c642065786365656420746f74616c207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061381c6020836141c4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061385c6031836141c4565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006138c2602c836141c4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139286020836141c4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139686029836141c4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ce602f836141c4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a346017836141c4565b91507f41646472657373206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613a746021836141c4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ada6018836141c4565b91507f496e76616c696420626c6f636b2073746172742074696d6500000000000000006000830152602082019050919050565b6000613b1a6000836141b9565b9150600082019050919050565b6000613b346031836141c4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b9a6016836141c4565b91507f496e76616c696420626c6f636b20656e642074696d65000000000000000000006000830152602082019050919050565b6000613bda601f836141c4565b91507f54686973206578636565647320746865206d6178206d696e74206c696d6974006000830152602082019050919050565b613c168161433f565b82525050565b613c258161436d565b82525050565b613c348161436d565b82525050565b6000613c468285613308565b9150613c528284613308565b91508190509392505050565b6000613c6982613b0d565b9150819050919050565b6000602082019050613c886000830184613221565b92915050565b6000608082019050613ca36000830187613221565b613cb06020830186613221565b613cbd6040830185613c2b565b8181036060830152613ccf8184613296565b905095945050505050565b6000604082019050613cef6000830184613230565b92915050565b6000602082019050613d0a6000830184613287565b92915050565b60006020820190508181036000830152613d2a81846132cf565b905092915050565b60006020820190508181036000830152613d4b81613339565b9050919050565b60006020820190508181036000830152613d6b81613379565b9050919050565b60006020820190508181036000830152613d8b816133df565b9050919050565b60006020820190508181036000830152613dab81613445565b9050919050565b60006020820190508181036000830152613dcb81613485565b9050919050565b60006020820190508181036000830152613deb816134c5565b9050919050565b60006020820190508181036000830152613e0b8161352b565b9050919050565b60006020820190508181036000830152613e2b8161356b565b9050919050565b60006020820190508181036000830152613e4b816135ab565b9050919050565b60006020820190508181036000830152613e6b81613611565b9050919050565b60006020820190508181036000830152613e8b81613677565b9050919050565b60006020820190508181036000830152613eab816136dd565b9050919050565b60006020820190508181036000830152613ecb81613743565b9050919050565b60006020820190508181036000830152613eeb816137a9565b9050919050565b60006020820190508181036000830152613f0b8161380f565b9050919050565b60006020820190508181036000830152613f2b8161384f565b9050919050565b60006020820190508181036000830152613f4b816138b5565b9050919050565b60006020820190508181036000830152613f6b8161391b565b9050919050565b60006020820190508181036000830152613f8b8161395b565b9050919050565b60006020820190508181036000830152613fab816139c1565b9050919050565b60006020820190508181036000830152613fcb81613a27565b9050919050565b60006020820190508181036000830152613feb81613a67565b9050919050565b6000602082019050818103600083015261400b81613acd565b9050919050565b6000602082019050818103600083015261402b81613b27565b9050919050565b6000602082019050818103600083015261404b81613b8d565b9050919050565b6000602082019050818103600083015261406b81613bcd565b9050919050565b60006020820190506140876000830184613c0d565b92915050565b60006020820190506140a26000830184613c2b565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140cf576140ce61451d565b5b8060405250919050565b600067ffffffffffffffff8211156140f4576140f361451d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141205761411f61451d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141505761414f61451d565b5b601f19601f8301169050602081019050919050565b6000819050919050565b600060029050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141eb8261436d565b91506141f68361436d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561422b5761422a614490565b5b828201905092915050565b60006142418261436d565b915061424c8361436d565b92508261425c5761425b6144bf565b5b828204905092915050565b60006142728261436d565b915061427d8361436d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142b6576142b5614490565b5b828202905092915050565b60006142cc8261436d565b91506142d78361436d565b9250828210156142ea576142e9614490565b5b828203905092915050565b60006143008261434d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143a4578082015181840152602081019050614389565b838111156143b3576000848401525b50505050565b600060028204905060018216806143d157607f821691505b602082108114156143e5576143e46144ee565b5b50919050565b60006143f68261433f565b915061ffff82141561440b5761440a614490565b5b600182019050919050565b60006144218261436d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445457614453614490565b5b600182019050919050565b600061446a8261436d565b91506144758361436d565b925082614485576144846144bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614566816142f5565b811461457157600080fd5b50565b61457d81614307565b811461458857600080fd5b50565b61459481614313565b811461459f57600080fd5b50565b6145ab8161436d565b81146145b657600080fd5b5056fea264697066735822122078553b34cc6587c95a61137addede052a5445f4725b9e3f698f989854ccb9f9f64736f6c63430008000033

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.