ETH Price: $3,407.05 (-1.62%)
Gas: 7 Gwei

Token

Seoul Apes (SAPES)
 

Overview

Max Total Supply

1,797 SAPES

Holders

741

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jdunk2.eth
Balance
1 SAPES
0x44443cf6e3551109746b42150336c513e6e08e9b
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:
SeoulApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

contract SeoulApes is ERC721, ERC721Enumerable, Ownable {
    using Strings for uint256;

    
    bool public saleIsActive = false;
    bool public isRevealed = false;
    bool public canMintFree = true;

    string private _baseURIextended;

    mapping (uint256 => string) private _specialEditionTokenURI;

    uint256 public NUM_FREE_MINT = 555;
    uint256 public numSpecialEditions;

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant MAX_PUBLIC_MINT = 10;
    uint256 public constant MAX_FREE_MINT = 2;
    uint256 public constant PRICE_PER_TOKEN = 0.02 ether;

    constructor() ERC721("Seoul Apes", "SAPES") {
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
            require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

            string memory base = _baseURI();
            
            if (!isRevealed) {
                string memory uri_start = "{\"description\": \"Seoul Apes is a collection of 5555 unique cyberpunk apes, inspired by the dazzling city nightscape of Seoul, Korea. By owning a Seoul Ape, members are granted access to vote on how they want their Seoul experience to look - funded by the Seoul Ape Community Treasury. See you in Seoul!\", \"image\": \"ipfs://QmVZUYNrpwGkaUEq9XVbdKFWT8AJpg2sz7sopXb6bjyCXe\", \"name\": \"Seoul Ape #";
                string memory uri_end = "\", \"attributes\": [{\"trait_type\": \"Status\", \"value\": \"Unrevealed\"}]}";
                string memory metadata = string(abi.encodePacked(uri_start, tokenId.toString(),uri_end));

                return string(abi.encodePacked("data:application/json;base64, ", base64(bytes(metadata))));
            } else if (tokenId >= MAX_SUPPLY) {
                return _specialEditionTokenURI[tokenId];
            }
            
            return string(abi.encodePacked(base, tokenId.toString()));
    }

    function mintSpecialEdition(string memory uri) public onlyOwner {
      uint tokenId = MAX_SUPPLY + numSpecialEditions;
      _specialEditionTokenURI[tokenId] = uri;
      numSpecialEditions += 1;
      _safeMint(msg.sender, tokenId);

    }

    function updateSpecialEditionMetadata(uint256 tokenId, string memory uri) public onlyOwner {
        _specialEditionTokenURI[tokenId] = uri;
    }


    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function setRevealedState(bool newState) public onlyOwner {
        isRevealed = newState;
    }
    
    function canMintFreeState(bool newState) public onlyOwner {
        canMintFree = newState;
    }

    function increaseFreeMint(uint256 numberOfTokens) public onlyOwner {
        require(numberOfTokens > NUM_FREE_MINT, "Can only increase");
        NUM_FREE_MINT = numberOfTokens;
    }


    function mint(uint numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(saleIsActive, "Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

    function mintFree(uint numberOfTokens) public {
        uint256 ts = totalSupply();
        require(saleIsActive, "Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_FREE_MINT, "Exceeded max token purchase");
        require(canMintFree, "Free Mint no longer active");

        if  (ts + numberOfTokens > NUM_FREE_MINT) {
            canMintFree = false;
            _safeMint(msg.sender, ts);
        } else {
            for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }

        }
    }


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


  /** BASE 64 - Written by Brech Devos */
  
  string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

  function base64(bytes memory data) internal pure returns (string memory) {
    if (data.length == 0) return '';
    
    // load the table into memory
    string memory table = TABLE;

    // multiply by 4/3 rounded up
    uint256 encodedLen = 4 * ((data.length + 2) / 3);

    // add some extra buffer at the end required for the writing
    string memory result = new string(encodedLen + 32);

    assembly {
      // set the actual output length
      mstore(result, encodedLen)
      
      // prepare the lookup table
      let tablePtr := add(table, 1)
      
      // input ptr
      let dataPtr := data
      let endPtr := add(dataPtr, mload(data))
      
      // result ptr, jump over length
      let resultPtr := add(result, 32)
      
      // run over the input, 3 bytes at a time
      for {} lt(dataPtr, endPtr) {}
      {
          dataPtr := add(dataPtr, 3)
          
          // read 3 bytes
          let input := mload(dataPtr)
          
          // write 4 characters
          mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
          resultPtr := add(resultPtr, 1)
          mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
          resultPtr := add(resultPtr, 1)
          mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
          resultPtr := add(resultPtr, 1)
          mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
          resultPtr := add(resultPtr, 1)
      }
      
      // padding with '='
      switch mod(mload(data), 3)
      case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
      case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
    }
    
    return result;
  }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 6 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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"
      ]
    }
  }
}

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":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMintFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"canMintFreeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"increaseFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"mintSpecialEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numSpecialEditions","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"updateSpecialEditionMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff02191690831515021790555061022b600d553480156200006857600080fd5b506040518060400160405280600a81526020017f53656f756c2041706573000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53415045530000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ed929190620001fd565b50806001908051906020019062000106929190620001fd565b505050620001296200011d6200012f60201b60201c565b6200013760201b60201c565b62000312565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020b90620002ad565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b60006002820490506001821680620002c657607f821691505b60208210811415620002dd57620002dc620002e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b8a80620003226000396000f3fe6080604052600436106102255760003560e01c80636bd7adc711610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146107d2578063e985e9c51461080f578063eb8d24441461084c578063f2fde38b14610877578063fce237df146108a057610225565b8063a22cb46514610703578063a41467331461072c578063b642e60c14610755578063b88d4fde14610780578063c4e37095146107a957610225565b80637d7527ec116100f25780637d7527ec1461063d578063833b9499146106665780638da5cb5b1461069157806395d89b41146106bc578063a0712d68146106e757610225565b80636bd7adc71461059557806370a08231146105c0578063715018a6146105fd5780637999cf411461061457610225565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461049c57806354214f69146104d957806355f804b3146105045780636352211e1461052d57806365f130971461056a57610225565b806332cb6b0c146103dd5780633316b97b146104085780633ccfd60b1461043157806341cda2031461044857806342842e0e1461047357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd1461032357806326b5203d1461034c57806327107967146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613465565b6108c9565b60405161025e9190613aaa565b60405180910390f35b34801561027357600080fd5b5061027c6108db565b6040516102899190613ac5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613508565b61096d565b6040516102c69190613a43565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133f8565b6109f2565b005b34801561030457600080fd5b5061030d610b0a565b60405161031a9190613de7565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132e2565b610b17565b005b34801561035857600080fd5b50610361610b77565b60405161036e9190613aaa565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613508565b610b8a565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906133f8565b610c54565b6040516103d49190613de7565b60405180910390f35b3480156103e957600080fd5b506103f2610cf9565b6040516103ff9190613de7565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906134bf565b610cff565b005b34801561043d57600080fd5b50610446610ddf565b005b34801561045457600080fd5b5061045d610eaa565b60405161046a9190613de7565b60405180910390f35b34801561047f57600080fd5b5061049a600480360381019061049591906132e2565b610eaf565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613508565b610ecf565b6040516104d09190613de7565b60405180910390f35b3480156104e557600080fd5b506104ee610f40565b6040516104fb9190613aaa565b60405180910390f35b34801561051057600080fd5b5061052b600480360381019061052691906134bf565b610f53565b005b34801561053957600080fd5b50610554600480360381019061054f9190613508565b610fe9565b6040516105619190613a43565b60405180910390f35b34801561057657600080fd5b5061057f61109b565b60405161058c9190613de7565b60405180910390f35b3480156105a157600080fd5b506105aa6110a0565b6040516105b79190613de7565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613275565b6110a6565b6040516105f49190613de7565b60405180910390f35b34801561060957600080fd5b5061061261115e565b005b34801561062057600080fd5b5061063b60048036038101906106369190613535565b6111e6565b005b34801561064957600080fd5b50610664600480360381019061065f9190613438565b61128e565b005b34801561067257600080fd5b5061067b611327565b6040516106889190613de7565b60405180910390f35b34801561069d57600080fd5b506106a6611332565b6040516106b39190613a43565b60405180910390f35b3480156106c857600080fd5b506106d161135c565b6040516106de9190613ac5565b60405180910390f35b61070160048036038101906106fc9190613508565b6113ee565b005b34801561070f57600080fd5b5061072a600480360381019061072591906133b8565b61156a565b005b34801561073857600080fd5b50610753600480360381019061074e9190613508565b611580565b005b34801561076157600080fd5b5061076a6116e6565b6040516107779190613de7565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613335565b6116ec565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613438565b61174e565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613508565b6117e7565b6040516108069190613ac5565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906132a2565b6119d1565b6040516108439190613aaa565b60405180910390f35b34801561085857600080fd5b50610861611a65565b60405161086e9190613aaa565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613275565b611a78565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613438565b611b70565b005b60006108d482611c09565b9050919050565b6060600080546108ea90614097565b80601f016020809104026020016040519081016040528092919081815260200182805461091690614097565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611c83565b6109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613c87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fd82610fe9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590613d47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8d611cef565b73ffffffffffffffffffffffffffffffffffffffff161480610abc5750610abb81610ab6611cef565b6119d1565b5b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290613c07565b60405180910390fd5b610b058383611cf7565b505050565b6000600880549050905090565b610b28610b22611cef565b82611db0565b610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613d87565b60405180910390fd5b610b72838383611e8e565b505050565b600a60169054906101000a900460ff1681565b610b92611cef565b73ffffffffffffffffffffffffffffffffffffffff16610bb0611332565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613cc7565b60405180910390fd5b600d548111610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613ca7565b60405180910390fd5b80600d8190555050565b6000610c5f836110a6565b8210610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613ae7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b381565b610d07611cef565b73ffffffffffffffffffffffffffffffffffffffff16610d25611332565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613cc7565b60405180910390fd5b6000600e546115b3610d8d9190613ecc565b905081600c60008381526020019081526020016000209080519060200190610db6929190613089565b506001600e6000828254610dca9190613ecc565b92505081905550610ddb33826120ea565b5050565b610de7611cef565b73ffffffffffffffffffffffffffffffffffffffff16610e05611332565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613cc7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea6573d6000803e3d6000fd5b5050565b600281565b610eca838383604051806020016040528060008152506116ec565b505050565b6000610ed9610b0a565b8210610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613da7565b60405180910390fd5b60088281548110610f2e57610f2d614230565b5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610f5b611cef565b73ffffffffffffffffffffffffffffffffffffffff16610f79611332565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613cc7565b60405180910390fd5b80600b9080519060200190610fe5929190613089565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990613c47565b60405180910390fd5b80915050919050565b600a81565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613c27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611166611cef565b73ffffffffffffffffffffffffffffffffffffffff16611184611332565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613cc7565b60405180910390fd5b6111e46000612108565b565b6111ee611cef565b73ffffffffffffffffffffffffffffffffffffffff1661120c611332565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613cc7565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190611289929190613089565b505050565b611296611cef565b73ffffffffffffffffffffffffffffffffffffffff166112b4611332565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613cc7565b60405180910390fd5b80600a60166101000a81548160ff02191690831515021790555050565b66470de4df82000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461136b90614097565b80601f016020809104026020016040519081016040528092919081815260200182805461139790614097565b80156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b5050505050905090565b60006113f8610b0a565b9050600a60149054906101000a900460ff16611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613d27565b60405180910390fd5b600a82111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d67565b60405180910390fd5b6115b3828261149c9190613ecc565b11156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613b47565b60405180910390fd5b348266470de4df8200006114f19190613f53565b1115611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613bc7565b60405180910390fd5b60005b828110156115655761155233828461154d9190613ecc565b6120ea565b808061155d906140fa565b915050611535565b505050565b61157c611575611cef565b83836121ce565b5050565b600061158a610b0a565b9050600a60149054906101000a900460ff166115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613d27565b60405180910390fd5b600282111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613d67565b60405180910390fd5b600a60169054906101000a900460ff1661166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613dc7565b60405180910390fd5b600d54828261167d9190613ecc565b11156116ad576000600a60166101000a81548160ff0219169083151502179055506116a833826120ea565b6116e2565b60005b828110156116e0576116cd3382846116c89190613ecc565b6120ea565b80806116d8906140fa565b9150506116b0565b505b5050565b600e5481565b6116fd6116f7611cef565b83611db0565b61173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613d87565b60405180910390fd5b6117488484848461233b565b50505050565b611756611cef565b73ffffffffffffffffffffffffffffffffffffffff16611774611332565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613cc7565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606117f282611c83565b611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890613d07565b60405180910390fd5b600061183b612397565b9050600a60159054906101000a900460ff166118f1576000604051806101c00160405280610187815260200161498e61018791399050600060405180608001604052806043815260200161494b60439139905060008261189a87612455565b836040516020016118ad939291906139f0565b60405160208183030381529060405290506118c7816125b6565b6040516020016118d79190613a21565b6040516020818303038152906040529450505050506119cc565b6115b3831061199e57600c6000848152602001908152602001600020805461191890614097565b80601f016020809104026020016040519081016040528092919081815260200182805461194490614097565b80156119915780601f1061196657610100808354040283529160200191611991565b820191906000526020600020905b81548152906001019060200180831161197457829003601f168201915b50505050509150506119cc565b806119a884612455565b6040516020016119b99291906139cc565b6040516020818303038152906040529150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611a80611cef565b73ffffffffffffffffffffffffffffffffffffffff16611a9e611332565b73ffffffffffffffffffffffffffffffffffffffff1614611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90613b27565b60405180910390fd5b611b6d81612108565b50565b611b78611cef565b73ffffffffffffffffffffffffffffffffffffffff16611b96611332565b73ffffffffffffffffffffffffffffffffffffffff1614611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613cc7565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7c5750611c7b8261273b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6a83610fe9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbb82611c83565b611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613be7565b60405180910390fd5b6000611e0583610fe9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7457508373ffffffffffffffffffffffffffffffffffffffff16611e5c8461096d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e855750611e8481856119d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eae82610fe9565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b90613b87565b60405180910390fd5b611f7f83838361281d565b611f8a600082611cf7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fda9190613fad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120319190613ecc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210482826040518060200160405280600081525061282d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613ba7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161232e9190613aaa565b60405180910390a3505050565b612346848484611e8e565b61235284848484612888565b612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890613b07565b60405180910390fd5b50505050565b6060600a60159054906101000a900460ff166123c457604051806020016040528060008152509050612452565b600b80546123d190614097565b80601f01602080910402602001604051908101604052809291908181526020018280546123fd90614097565b801561244a5780601f1061241f5761010080835404028352916020019161244a565b820191906000526020600020905b81548152906001019060200180831161242d57829003601f168201915b505050505090505b90565b6060600082141561249d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b1565b600082905060005b600082146124cf5780806124b8906140fa565b915050600a826124c89190613f22565b91506124a5565b60008167ffffffffffffffff8111156124eb576124ea61425f565b5b6040519080825280601f01601f19166020018201604052801561251d5781602001600182028036833780820191505090505b5090505b600085146125aa576001826125369190613fad565b9150600a856125459190614143565b60306125519190613ecc565b60f81b81838151811061256757612566614230565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a39190613f22565b9450612521565b8093505050505b919050565b60606000825114156125d957604051806020016040528060008152509050612736565b6000604051806060016040528060408152602001614b1560409139905060006003600285516126089190613ecc565b6126129190613f22565b600461261e9190613f53565b9050600060208261262f9190613ecc565b67ffffffffffffffff8111156126485761264761425f565b5b6040519080825280601f01601f19166020018201604052801561267a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156126f5576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061268e565b60038951066001811461270f576002811461271f5761272a565b613d3d60f01b600283035261272a565b603d60f81b60018303525b50505050508093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612816575061281582612a1f565b5b9050919050565b612828838383612a89565b505050565b6128378383612b9d565b6128446000848484612888565b612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90613b07565b60405180910390fd5b505050565b60006128a98473ffffffffffffffffffffffffffffffffffffffff16612d6b565b15612a12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d2611cef565b8786866040518563ffffffff1660e01b81526004016128f49493929190613a5e565b602060405180830381600087803b15801561290e57600080fd5b505af192505050801561293f57506040513d601f19601f8201168201806040525081019061293c9190613492565b60015b6129c2573d806000811461296f576040519150601f19603f3d011682016040523d82523d6000602084013e612974565b606091505b506000815114156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190613b07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a17565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a94838383612d7e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ad757612ad281612d83565b612b16565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b1557612b148382612dcc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5957612b5481612f39565b612b98565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b9757612b96828261300a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0490613c67565b60405180910390fd5b612c1681611c83565b15612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90613b67565b60405180910390fd5b612c626000838361281d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cb29190613ecc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612dd9846110a6565b612de39190613fad565b9050600060076000848152602001908152602001600020549050818114612ec8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f4d9190613fad565b9050600060096000848152602001908152602001600020549050600060088381548110612f7d57612f7c614230565b5b906000526020600020015490508060088381548110612f9f57612f9e614230565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612fee57612fed614201565b5b6001900381819060005260206000200160009055905550505050565b6000613015836110a6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461309590614097565b90600052602060002090601f0160209004810192826130b757600085556130fe565b82601f106130d057805160ff19168380011785556130fe565b828001600101855582156130fe579182015b828111156130fd5782518255916020019190600101906130e2565b5b50905061310b919061310f565b5090565b5b80821115613128576000816000905550600101613110565b5090565b600061313f61313a84613e27565b613e02565b90508281526020810184848401111561315b5761315a614293565b5b613166848285614055565b509392505050565b600061318161317c84613e58565b613e02565b90508281526020810184848401111561319d5761319c614293565b5b6131a8848285614055565b509392505050565b6000813590506131bf816148ee565b92915050565b6000813590506131d481614905565b92915050565b6000813590506131e98161491c565b92915050565b6000815190506131fe8161491c565b92915050565b600082601f8301126132195761321861428e565b5b813561322984826020860161312c565b91505092915050565b600082601f8301126132475761324661428e565b5b813561325784826020860161316e565b91505092915050565b60008135905061326f81614933565b92915050565b60006020828403121561328b5761328a61429d565b5b6000613299848285016131b0565b91505092915050565b600080604083850312156132b9576132b861429d565b5b60006132c7858286016131b0565b92505060206132d8858286016131b0565b9150509250929050565b6000806000606084860312156132fb576132fa61429d565b5b6000613309868287016131b0565b935050602061331a868287016131b0565b925050604061332b86828701613260565b9150509250925092565b6000806000806080858703121561334f5761334e61429d565b5b600061335d878288016131b0565b945050602061336e878288016131b0565b935050604061337f87828801613260565b925050606085013567ffffffffffffffff8111156133a05761339f614298565b5b6133ac87828801613204565b91505092959194509250565b600080604083850312156133cf576133ce61429d565b5b60006133dd858286016131b0565b92505060206133ee858286016131c5565b9150509250929050565b6000806040838503121561340f5761340e61429d565b5b600061341d858286016131b0565b925050602061342e85828601613260565b9150509250929050565b60006020828403121561344e5761344d61429d565b5b600061345c848285016131c5565b91505092915050565b60006020828403121561347b5761347a61429d565b5b6000613489848285016131da565b91505092915050565b6000602082840312156134a8576134a761429d565b5b60006134b6848285016131ef565b91505092915050565b6000602082840312156134d5576134d461429d565b5b600082013567ffffffffffffffff8111156134f3576134f2614298565b5b6134ff84828501613232565b91505092915050565b60006020828403121561351e5761351d61429d565b5b600061352c84828501613260565b91505092915050565b6000806040838503121561354c5761354b61429d565b5b600061355a85828601613260565b925050602083013567ffffffffffffffff81111561357b5761357a614298565b5b61358785828601613232565b9150509250929050565b61359a81613fe1565b82525050565b6135a981613ff3565b82525050565b60006135ba82613e89565b6135c48185613e9f565b93506135d4818560208601614064565b6135dd816142a2565b840191505092915050565b60006135f382613e94565b6135fd8185613eb0565b935061360d818560208601614064565b613616816142a2565b840191505092915050565b600061362c82613e94565b6136368185613ec1565b9350613646818560208601614064565b80840191505092915050565b600061365f602b83613eb0565b915061366a826142b3565b604082019050919050565b6000613682603283613eb0565b915061368d82614302565b604082019050919050565b60006136a5602683613eb0565b91506136b082614351565b604082019050919050565b60006136c8602083613eb0565b91506136d3826143a0565b602082019050919050565b60006136eb601c83613eb0565b91506136f6826143c9565b602082019050919050565b600061370e602483613eb0565b9150613719826143f2565b604082019050919050565b6000613731601983613eb0565b915061373c82614441565b602082019050919050565b6000613754601f83613eb0565b915061375f8261446a565b602082019050919050565b6000613777602c83613eb0565b915061378282614493565b604082019050919050565b600061379a603883613eb0565b91506137a5826144e2565b604082019050919050565b60006137bd602a83613eb0565b91506137c882614531565b604082019050919050565b60006137e0602983613eb0565b91506137eb82614580565b604082019050919050565b6000613803602083613eb0565b915061380e826145cf565b602082019050919050565b6000613826602c83613eb0565b9150613831826145f8565b604082019050919050565b6000613849601183613eb0565b915061385482614647565b602082019050919050565b600061386c602083613eb0565b915061387782614670565b602082019050919050565b600061388f602983613eb0565b915061389a82614699565b604082019050919050565b60006138b2602f83613eb0565b91506138bd826146e8565b604082019050919050565b60006138d5602283613eb0565b91506138e082614737565b604082019050919050565b60006138f8602183613eb0565b915061390382614786565b604082019050919050565b600061391b601b83613eb0565b9150613926826147d5565b602082019050919050565b600061393e603183613eb0565b9150613949826147fe565b604082019050919050565b6000613961601e83613ec1565b915061396c8261484d565b601e82019050919050565b6000613984602c83613eb0565b915061398f82614876565b604082019050919050565b60006139a7601a83613eb0565b91506139b2826148c5565b602082019050919050565b6139c68161404b565b82525050565b60006139d88285613621565b91506139e48284613621565b91508190509392505050565b60006139fc8286613621565b9150613a088285613621565b9150613a148284613621565b9150819050949350505050565b6000613a2c82613954565b9150613a388284613621565b915081905092915050565b6000602082019050613a586000830184613591565b92915050565b6000608082019050613a736000830187613591565b613a806020830186613591565b613a8d60408301856139bd565b8181036060830152613a9f81846135af565b905095945050505050565b6000602082019050613abf60008301846135a0565b92915050565b60006020820190508181036000830152613adf81846135e8565b905092915050565b60006020820190508181036000830152613b0081613652565b9050919050565b60006020820190508181036000830152613b2081613675565b9050919050565b60006020820190508181036000830152613b4081613698565b9050919050565b60006020820190508181036000830152613b60816136bb565b9050919050565b60006020820190508181036000830152613b80816136de565b9050919050565b60006020820190508181036000830152613ba081613701565b9050919050565b60006020820190508181036000830152613bc081613724565b9050919050565b60006020820190508181036000830152613be081613747565b9050919050565b60006020820190508181036000830152613c008161376a565b9050919050565b60006020820190508181036000830152613c208161378d565b9050919050565b60006020820190508181036000830152613c40816137b0565b9050919050565b60006020820190508181036000830152613c60816137d3565b9050919050565b60006020820190508181036000830152613c80816137f6565b9050919050565b60006020820190508181036000830152613ca081613819565b9050919050565b60006020820190508181036000830152613cc08161383c565b9050919050565b60006020820190508181036000830152613ce08161385f565b9050919050565b60006020820190508181036000830152613d0081613882565b9050919050565b60006020820190508181036000830152613d20816138a5565b9050919050565b60006020820190508181036000830152613d40816138c8565b9050919050565b60006020820190508181036000830152613d60816138eb565b9050919050565b60006020820190508181036000830152613d808161390e565b9050919050565b60006020820190508181036000830152613da081613931565b9050919050565b60006020820190508181036000830152613dc081613977565b9050919050565b60006020820190508181036000830152613de08161399a565b9050919050565b6000602082019050613dfc60008301846139bd565b92915050565b6000613e0c613e1d565b9050613e1882826140c9565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4257613e4161425f565b5b613e4b826142a2565b9050602081019050919050565b600067ffffffffffffffff821115613e7357613e7261425f565b5b613e7c826142a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed78261404b565b9150613ee28361404b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1757613f16614174565b5b828201905092915050565b6000613f2d8261404b565b9150613f388361404b565b925082613f4857613f476141a3565b5b828204905092915050565b6000613f5e8261404b565b9150613f698361404b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fa257613fa1614174565b5b828202905092915050565b6000613fb88261404b565b9150613fc38361404b565b925082821015613fd657613fd5614174565b5b828203905092915050565b6000613fec8261402b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614082578082015181840152602081019050614067565b83811115614091576000848401525b50505050565b600060028204905060018216806140af57607f821691505b602082108114156140c3576140c26141d2565b5b50919050565b6140d2826142a2565b810181811067ffffffffffffffff821117156140f1576140f061425f565b5b80604052505050565b60006141058261404b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413857614137614174565b5b600182019050919050565b600061414e8261404b565b91506141598361404b565b925082614169576141686141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c7920696e637265617365000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c200000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46726565204d696e74206e6f206c6f6e67657220616374697665000000000000600082015250565b6148f781613fe1565b811461490257600080fd5b50565b61490e81613ff3565b811461491957600080fd5b50565b61492581613fff565b811461493057600080fd5b50565b61493c8161404b565b811461494757600080fd5b5056fe222c202261747472696275746573223a205b7b2274726169745f74797065223a2022537461747573222c202276616c7565223a2022556e72657665616c6564227d5d7d7b226465736372697074696f6e223a202253656f756c2041706573206973206120636f6c6c656374696f6e206f66203535353520756e6971756520637962657270756e6b20617065732c20696e737069726564206279207468652064617a7a6c696e672063697479206e696768747363617065206f662053656f756c2c204b6f7265612e204279206f776e696e6720612053656f756c204170652c206d656d6265727320617265206772616e7465642061636365737320746f20766f7465206f6e20686f7720746865792077616e742074686569722053656f756c20657870657269656e636520746f206c6f6f6b202d2066756e646564206279207468652053656f756c2041706520436f6d6d756e6974792054726561737572792e2053656520796f7520696e2053656f756c21222c2022696d616765223a2022697066733a2f2f516d565a55594e727077476b6155457139585662644b46575438414a706732737a37736f70586236626a79435865222c20226e616d65223a202253656f756c2041706520234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122095b21559907cf51f545b357e94d5bbad6775ad620046aad89f52b79b0dd6b46964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636bd7adc711610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146107d2578063e985e9c51461080f578063eb8d24441461084c578063f2fde38b14610877578063fce237df146108a057610225565b8063a22cb46514610703578063a41467331461072c578063b642e60c14610755578063b88d4fde14610780578063c4e37095146107a957610225565b80637d7527ec116100f25780637d7527ec1461063d578063833b9499146106665780638da5cb5b1461069157806395d89b41146106bc578063a0712d68146106e757610225565b80636bd7adc71461059557806370a08231146105c0578063715018a6146105fd5780637999cf411461061457610225565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461049c57806354214f69146104d957806355f804b3146105045780636352211e1461052d57806365f130971461056a57610225565b806332cb6b0c146103dd5780633316b97b146104085780633ccfd60b1461043157806341cda2031461044857806342842e0e1461047357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd1461032357806326b5203d1461034c57806327107967146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613465565b6108c9565b60405161025e9190613aaa565b60405180910390f35b34801561027357600080fd5b5061027c6108db565b6040516102899190613ac5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613508565b61096d565b6040516102c69190613a43565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133f8565b6109f2565b005b34801561030457600080fd5b5061030d610b0a565b60405161031a9190613de7565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132e2565b610b17565b005b34801561035857600080fd5b50610361610b77565b60405161036e9190613aaa565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613508565b610b8a565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906133f8565b610c54565b6040516103d49190613de7565b60405180910390f35b3480156103e957600080fd5b506103f2610cf9565b6040516103ff9190613de7565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906134bf565b610cff565b005b34801561043d57600080fd5b50610446610ddf565b005b34801561045457600080fd5b5061045d610eaa565b60405161046a9190613de7565b60405180910390f35b34801561047f57600080fd5b5061049a600480360381019061049591906132e2565b610eaf565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613508565b610ecf565b6040516104d09190613de7565b60405180910390f35b3480156104e557600080fd5b506104ee610f40565b6040516104fb9190613aaa565b60405180910390f35b34801561051057600080fd5b5061052b600480360381019061052691906134bf565b610f53565b005b34801561053957600080fd5b50610554600480360381019061054f9190613508565b610fe9565b6040516105619190613a43565b60405180910390f35b34801561057657600080fd5b5061057f61109b565b60405161058c9190613de7565b60405180910390f35b3480156105a157600080fd5b506105aa6110a0565b6040516105b79190613de7565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613275565b6110a6565b6040516105f49190613de7565b60405180910390f35b34801561060957600080fd5b5061061261115e565b005b34801561062057600080fd5b5061063b60048036038101906106369190613535565b6111e6565b005b34801561064957600080fd5b50610664600480360381019061065f9190613438565b61128e565b005b34801561067257600080fd5b5061067b611327565b6040516106889190613de7565b60405180910390f35b34801561069d57600080fd5b506106a6611332565b6040516106b39190613a43565b60405180910390f35b3480156106c857600080fd5b506106d161135c565b6040516106de9190613ac5565b60405180910390f35b61070160048036038101906106fc9190613508565b6113ee565b005b34801561070f57600080fd5b5061072a600480360381019061072591906133b8565b61156a565b005b34801561073857600080fd5b50610753600480360381019061074e9190613508565b611580565b005b34801561076157600080fd5b5061076a6116e6565b6040516107779190613de7565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613335565b6116ec565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613438565b61174e565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613508565b6117e7565b6040516108069190613ac5565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906132a2565b6119d1565b6040516108439190613aaa565b60405180910390f35b34801561085857600080fd5b50610861611a65565b60405161086e9190613aaa565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613275565b611a78565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613438565b611b70565b005b60006108d482611c09565b9050919050565b6060600080546108ea90614097565b80601f016020809104026020016040519081016040528092919081815260200182805461091690614097565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611c83565b6109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613c87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fd82610fe9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590613d47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8d611cef565b73ffffffffffffffffffffffffffffffffffffffff161480610abc5750610abb81610ab6611cef565b6119d1565b5b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290613c07565b60405180910390fd5b610b058383611cf7565b505050565b6000600880549050905090565b610b28610b22611cef565b82611db0565b610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613d87565b60405180910390fd5b610b72838383611e8e565b505050565b600a60169054906101000a900460ff1681565b610b92611cef565b73ffffffffffffffffffffffffffffffffffffffff16610bb0611332565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613cc7565b60405180910390fd5b600d548111610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613ca7565b60405180910390fd5b80600d8190555050565b6000610c5f836110a6565b8210610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613ae7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b381565b610d07611cef565b73ffffffffffffffffffffffffffffffffffffffff16610d25611332565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613cc7565b60405180910390fd5b6000600e546115b3610d8d9190613ecc565b905081600c60008381526020019081526020016000209080519060200190610db6929190613089565b506001600e6000828254610dca9190613ecc565b92505081905550610ddb33826120ea565b5050565b610de7611cef565b73ffffffffffffffffffffffffffffffffffffffff16610e05611332565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613cc7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea6573d6000803e3d6000fd5b5050565b600281565b610eca838383604051806020016040528060008152506116ec565b505050565b6000610ed9610b0a565b8210610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613da7565b60405180910390fd5b60088281548110610f2e57610f2d614230565b5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610f5b611cef565b73ffffffffffffffffffffffffffffffffffffffff16610f79611332565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613cc7565b60405180910390fd5b80600b9080519060200190610fe5929190613089565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990613c47565b60405180910390fd5b80915050919050565b600a81565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613c27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611166611cef565b73ffffffffffffffffffffffffffffffffffffffff16611184611332565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613cc7565b60405180910390fd5b6111e46000612108565b565b6111ee611cef565b73ffffffffffffffffffffffffffffffffffffffff1661120c611332565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613cc7565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190611289929190613089565b505050565b611296611cef565b73ffffffffffffffffffffffffffffffffffffffff166112b4611332565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613cc7565b60405180910390fd5b80600a60166101000a81548160ff02191690831515021790555050565b66470de4df82000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461136b90614097565b80601f016020809104026020016040519081016040528092919081815260200182805461139790614097565b80156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b5050505050905090565b60006113f8610b0a565b9050600a60149054906101000a900460ff16611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613d27565b60405180910390fd5b600a82111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d67565b60405180910390fd5b6115b3828261149c9190613ecc565b11156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613b47565b60405180910390fd5b348266470de4df8200006114f19190613f53565b1115611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613bc7565b60405180910390fd5b60005b828110156115655761155233828461154d9190613ecc565b6120ea565b808061155d906140fa565b915050611535565b505050565b61157c611575611cef565b83836121ce565b5050565b600061158a610b0a565b9050600a60149054906101000a900460ff166115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613d27565b60405180910390fd5b600282111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613d67565b60405180910390fd5b600a60169054906101000a900460ff1661166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613dc7565b60405180910390fd5b600d54828261167d9190613ecc565b11156116ad576000600a60166101000a81548160ff0219169083151502179055506116a833826120ea565b6116e2565b60005b828110156116e0576116cd3382846116c89190613ecc565b6120ea565b80806116d8906140fa565b9150506116b0565b505b5050565b600e5481565b6116fd6116f7611cef565b83611db0565b61173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613d87565b60405180910390fd5b6117488484848461233b565b50505050565b611756611cef565b73ffffffffffffffffffffffffffffffffffffffff16611774611332565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613cc7565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606117f282611c83565b611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890613d07565b60405180910390fd5b600061183b612397565b9050600a60159054906101000a900460ff166118f1576000604051806101c00160405280610187815260200161498e61018791399050600060405180608001604052806043815260200161494b60439139905060008261189a87612455565b836040516020016118ad939291906139f0565b60405160208183030381529060405290506118c7816125b6565b6040516020016118d79190613a21565b6040516020818303038152906040529450505050506119cc565b6115b3831061199e57600c6000848152602001908152602001600020805461191890614097565b80601f016020809104026020016040519081016040528092919081815260200182805461194490614097565b80156119915780601f1061196657610100808354040283529160200191611991565b820191906000526020600020905b81548152906001019060200180831161197457829003601f168201915b50505050509150506119cc565b806119a884612455565b6040516020016119b99291906139cc565b6040516020818303038152906040529150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611a80611cef565b73ffffffffffffffffffffffffffffffffffffffff16611a9e611332565b73ffffffffffffffffffffffffffffffffffffffff1614611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90613b27565b60405180910390fd5b611b6d81612108565b50565b611b78611cef565b73ffffffffffffffffffffffffffffffffffffffff16611b96611332565b73ffffffffffffffffffffffffffffffffffffffff1614611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613cc7565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7c5750611c7b8261273b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6a83610fe9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbb82611c83565b611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613be7565b60405180910390fd5b6000611e0583610fe9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7457508373ffffffffffffffffffffffffffffffffffffffff16611e5c8461096d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e855750611e8481856119d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eae82610fe9565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b90613b87565b60405180910390fd5b611f7f83838361281d565b611f8a600082611cf7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fda9190613fad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120319190613ecc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210482826040518060200160405280600081525061282d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613ba7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161232e9190613aaa565b60405180910390a3505050565b612346848484611e8e565b61235284848484612888565b612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890613b07565b60405180910390fd5b50505050565b6060600a60159054906101000a900460ff166123c457604051806020016040528060008152509050612452565b600b80546123d190614097565b80601f01602080910402602001604051908101604052809291908181526020018280546123fd90614097565b801561244a5780601f1061241f5761010080835404028352916020019161244a565b820191906000526020600020905b81548152906001019060200180831161242d57829003601f168201915b505050505090505b90565b6060600082141561249d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b1565b600082905060005b600082146124cf5780806124b8906140fa565b915050600a826124c89190613f22565b91506124a5565b60008167ffffffffffffffff8111156124eb576124ea61425f565b5b6040519080825280601f01601f19166020018201604052801561251d5781602001600182028036833780820191505090505b5090505b600085146125aa576001826125369190613fad565b9150600a856125459190614143565b60306125519190613ecc565b60f81b81838151811061256757612566614230565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a39190613f22565b9450612521565b8093505050505b919050565b60606000825114156125d957604051806020016040528060008152509050612736565b6000604051806060016040528060408152602001614b1560409139905060006003600285516126089190613ecc565b6126129190613f22565b600461261e9190613f53565b9050600060208261262f9190613ecc565b67ffffffffffffffff8111156126485761264761425f565b5b6040519080825280601f01601f19166020018201604052801561267a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156126f5576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061268e565b60038951066001811461270f576002811461271f5761272a565b613d3d60f01b600283035261272a565b603d60f81b60018303525b50505050508093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612816575061281582612a1f565b5b9050919050565b612828838383612a89565b505050565b6128378383612b9d565b6128446000848484612888565b612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90613b07565b60405180910390fd5b505050565b60006128a98473ffffffffffffffffffffffffffffffffffffffff16612d6b565b15612a12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d2611cef565b8786866040518563ffffffff1660e01b81526004016128f49493929190613a5e565b602060405180830381600087803b15801561290e57600080fd5b505af192505050801561293f57506040513d601f19601f8201168201806040525081019061293c9190613492565b60015b6129c2573d806000811461296f576040519150601f19603f3d011682016040523d82523d6000602084013e612974565b606091505b506000815114156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190613b07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a17565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a94838383612d7e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ad757612ad281612d83565b612b16565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b1557612b148382612dcc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5957612b5481612f39565b612b98565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b9757612b96828261300a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0490613c67565b60405180910390fd5b612c1681611c83565b15612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90613b67565b60405180910390fd5b612c626000838361281d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cb29190613ecc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612dd9846110a6565b612de39190613fad565b9050600060076000848152602001908152602001600020549050818114612ec8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f4d9190613fad565b9050600060096000848152602001908152602001600020549050600060088381548110612f7d57612f7c614230565b5b906000526020600020015490508060088381548110612f9f57612f9e614230565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612fee57612fed614201565b5b6001900381819060005260206000200160009055905550505050565b6000613015836110a6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461309590614097565b90600052602060002090601f0160209004810192826130b757600085556130fe565b82601f106130d057805160ff19168380011785556130fe565b828001600101855582156130fe579182015b828111156130fd5782518255916020019190600101906130e2565b5b50905061310b919061310f565b5090565b5b80821115613128576000816000905550600101613110565b5090565b600061313f61313a84613e27565b613e02565b90508281526020810184848401111561315b5761315a614293565b5b613166848285614055565b509392505050565b600061318161317c84613e58565b613e02565b90508281526020810184848401111561319d5761319c614293565b5b6131a8848285614055565b509392505050565b6000813590506131bf816148ee565b92915050565b6000813590506131d481614905565b92915050565b6000813590506131e98161491c565b92915050565b6000815190506131fe8161491c565b92915050565b600082601f8301126132195761321861428e565b5b813561322984826020860161312c565b91505092915050565b600082601f8301126132475761324661428e565b5b813561325784826020860161316e565b91505092915050565b60008135905061326f81614933565b92915050565b60006020828403121561328b5761328a61429d565b5b6000613299848285016131b0565b91505092915050565b600080604083850312156132b9576132b861429d565b5b60006132c7858286016131b0565b92505060206132d8858286016131b0565b9150509250929050565b6000806000606084860312156132fb576132fa61429d565b5b6000613309868287016131b0565b935050602061331a868287016131b0565b925050604061332b86828701613260565b9150509250925092565b6000806000806080858703121561334f5761334e61429d565b5b600061335d878288016131b0565b945050602061336e878288016131b0565b935050604061337f87828801613260565b925050606085013567ffffffffffffffff8111156133a05761339f614298565b5b6133ac87828801613204565b91505092959194509250565b600080604083850312156133cf576133ce61429d565b5b60006133dd858286016131b0565b92505060206133ee858286016131c5565b9150509250929050565b6000806040838503121561340f5761340e61429d565b5b600061341d858286016131b0565b925050602061342e85828601613260565b9150509250929050565b60006020828403121561344e5761344d61429d565b5b600061345c848285016131c5565b91505092915050565b60006020828403121561347b5761347a61429d565b5b6000613489848285016131da565b91505092915050565b6000602082840312156134a8576134a761429d565b5b60006134b6848285016131ef565b91505092915050565b6000602082840312156134d5576134d461429d565b5b600082013567ffffffffffffffff8111156134f3576134f2614298565b5b6134ff84828501613232565b91505092915050565b60006020828403121561351e5761351d61429d565b5b600061352c84828501613260565b91505092915050565b6000806040838503121561354c5761354b61429d565b5b600061355a85828601613260565b925050602083013567ffffffffffffffff81111561357b5761357a614298565b5b61358785828601613232565b9150509250929050565b61359a81613fe1565b82525050565b6135a981613ff3565b82525050565b60006135ba82613e89565b6135c48185613e9f565b93506135d4818560208601614064565b6135dd816142a2565b840191505092915050565b60006135f382613e94565b6135fd8185613eb0565b935061360d818560208601614064565b613616816142a2565b840191505092915050565b600061362c82613e94565b6136368185613ec1565b9350613646818560208601614064565b80840191505092915050565b600061365f602b83613eb0565b915061366a826142b3565b604082019050919050565b6000613682603283613eb0565b915061368d82614302565b604082019050919050565b60006136a5602683613eb0565b91506136b082614351565b604082019050919050565b60006136c8602083613eb0565b91506136d3826143a0565b602082019050919050565b60006136eb601c83613eb0565b91506136f6826143c9565b602082019050919050565b600061370e602483613eb0565b9150613719826143f2565b604082019050919050565b6000613731601983613eb0565b915061373c82614441565b602082019050919050565b6000613754601f83613eb0565b915061375f8261446a565b602082019050919050565b6000613777602c83613eb0565b915061378282614493565b604082019050919050565b600061379a603883613eb0565b91506137a5826144e2565b604082019050919050565b60006137bd602a83613eb0565b91506137c882614531565b604082019050919050565b60006137e0602983613eb0565b91506137eb82614580565b604082019050919050565b6000613803602083613eb0565b915061380e826145cf565b602082019050919050565b6000613826602c83613eb0565b9150613831826145f8565b604082019050919050565b6000613849601183613eb0565b915061385482614647565b602082019050919050565b600061386c602083613eb0565b915061387782614670565b602082019050919050565b600061388f602983613eb0565b915061389a82614699565b604082019050919050565b60006138b2602f83613eb0565b91506138bd826146e8565b604082019050919050565b60006138d5602283613eb0565b91506138e082614737565b604082019050919050565b60006138f8602183613eb0565b915061390382614786565b604082019050919050565b600061391b601b83613eb0565b9150613926826147d5565b602082019050919050565b600061393e603183613eb0565b9150613949826147fe565b604082019050919050565b6000613961601e83613ec1565b915061396c8261484d565b601e82019050919050565b6000613984602c83613eb0565b915061398f82614876565b604082019050919050565b60006139a7601a83613eb0565b91506139b2826148c5565b602082019050919050565b6139c68161404b565b82525050565b60006139d88285613621565b91506139e48284613621565b91508190509392505050565b60006139fc8286613621565b9150613a088285613621565b9150613a148284613621565b9150819050949350505050565b6000613a2c82613954565b9150613a388284613621565b915081905092915050565b6000602082019050613a586000830184613591565b92915050565b6000608082019050613a736000830187613591565b613a806020830186613591565b613a8d60408301856139bd565b8181036060830152613a9f81846135af565b905095945050505050565b6000602082019050613abf60008301846135a0565b92915050565b60006020820190508181036000830152613adf81846135e8565b905092915050565b60006020820190508181036000830152613b0081613652565b9050919050565b60006020820190508181036000830152613b2081613675565b9050919050565b60006020820190508181036000830152613b4081613698565b9050919050565b60006020820190508181036000830152613b60816136bb565b9050919050565b60006020820190508181036000830152613b80816136de565b9050919050565b60006020820190508181036000830152613ba081613701565b9050919050565b60006020820190508181036000830152613bc081613724565b9050919050565b60006020820190508181036000830152613be081613747565b9050919050565b60006020820190508181036000830152613c008161376a565b9050919050565b60006020820190508181036000830152613c208161378d565b9050919050565b60006020820190508181036000830152613c40816137b0565b9050919050565b60006020820190508181036000830152613c60816137d3565b9050919050565b60006020820190508181036000830152613c80816137f6565b9050919050565b60006020820190508181036000830152613ca081613819565b9050919050565b60006020820190508181036000830152613cc08161383c565b9050919050565b60006020820190508181036000830152613ce08161385f565b9050919050565b60006020820190508181036000830152613d0081613882565b9050919050565b60006020820190508181036000830152613d20816138a5565b9050919050565b60006020820190508181036000830152613d40816138c8565b9050919050565b60006020820190508181036000830152613d60816138eb565b9050919050565b60006020820190508181036000830152613d808161390e565b9050919050565b60006020820190508181036000830152613da081613931565b9050919050565b60006020820190508181036000830152613dc081613977565b9050919050565b60006020820190508181036000830152613de08161399a565b9050919050565b6000602082019050613dfc60008301846139bd565b92915050565b6000613e0c613e1d565b9050613e1882826140c9565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4257613e4161425f565b5b613e4b826142a2565b9050602081019050919050565b600067ffffffffffffffff821115613e7357613e7261425f565b5b613e7c826142a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed78261404b565b9150613ee28361404b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1757613f16614174565b5b828201905092915050565b6000613f2d8261404b565b9150613f388361404b565b925082613f4857613f476141a3565b5b828204905092915050565b6000613f5e8261404b565b9150613f698361404b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fa257613fa1614174565b5b828202905092915050565b6000613fb88261404b565b9150613fc38361404b565b925082821015613fd657613fd5614174565b5b828203905092915050565b6000613fec8261402b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614082578082015181840152602081019050614067565b83811115614091576000848401525b50505050565b600060028204905060018216806140af57607f821691505b602082108114156140c3576140c26141d2565b5b50919050565b6140d2826142a2565b810181811067ffffffffffffffff821117156140f1576140f061425f565b5b80604052505050565b60006141058261404b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413857614137614174565b5b600182019050919050565b600061414e8261404b565b91506141598361404b565b925082614169576141686141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c7920696e637265617365000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c200000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46726565204d696e74206e6f206c6f6e67657220616374697665000000000000600082015250565b6148f781613fe1565b811461490257600080fd5b50565b61490e81613ff3565b811461491957600080fd5b50565b61492581613fff565b811461493057600080fd5b50565b61493c8161404b565b811461494757600080fd5b5056fe222c202261747472696275746573223a205b7b2274726169745f74797065223a2022537461747573222c202276616c7565223a2022556e72657665616c6564227d5d7d7b226465736372697074696f6e223a202253656f756c2041706573206973206120636f6c6c656374696f6e206f66203535353520756e6971756520637962657270756e6b20617065732c20696e737069726564206279207468652064617a7a6c696e672063697479206e696768747363617065206f662053656f756c2c204b6f7265612e204279206f776e696e6720612053656f756c204170652c206d656d6265727320617265206772616e7465642061636365737320746f20766f7465206f6e20686f7720746865792077616e742074686569722053656f756c20657870657269656e636520746f206c6f6f6b202d2066756e646564206279207468652053656f756c2041706520436f6d6d756e6974792054726561737572792e2053656520796f7520696e2053656f756c21222c2022696d616765223a2022697066733a2f2f516d565a55594e727077476b6155457139585662644b46575438414a706732737a37736f70586236626a79435865222c20226e616d65223a202253656f756c2041706520234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122095b21559907cf51f545b357e94d5bbad6775ad620046aad89f52b79b0dd6b46964736f6c63430008070033

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.