ETH Price: $3,465.20 (+2.10%)
Gas: 14 Gwei

Token

SuperBunnies (SB)
 

Overview

Max Total Supply

4,412 SB

Holders

1,721

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zhaocaimao.eth
Balance
1 SB
0xe9b37833665740839452478ee9ac4e7488ce2c19
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Super Bunnies are rare generative hand-drawn supervillains sworn to rule our universe. Dark Super Bunnies are opposed by their hero counterparts the Light Super Bunnies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SuperBunnies

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : SuperBunnies.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/utils/Counters.sol";

import "./ERC721Tradable.sol";

contract SuperBunnies is ERC721Tradable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    Counters.Counter private _reservedTokenIdCounter;

    /**
     * 🐯
     */
    address public superTigerContract;

    uint256 public constant NFT_PRICE = 80000000000000000; // 0.08 ETH
    uint public constant MAX_NFT_PURCHASE = 100;

    uint256 public constant NFT_PRICE_PRE_SALE = 58000000000000000; // 0.058 ETH for pre-sale
    uint public constant MAX_NFT_PURCHASE_PRE_SALE = 10;

    uint256 public constant NFT_PRICE_LOVE = 69000000000000000; // 0.069 ETH for the best community
    uint public constant MAX_NFT_PURCHASE_LOVE = 100;

    uint256 public MAX_SUPPLY = 10000;
    /**
     * Reserve tokens for the team and community giveaways
     */
    uint public constant RESERVED_TOTAL = 325;

    bool public isSaleActive = false;
    bool public isPreSaleActive = false;

    bool public isRevealed = false;

    string public provenanceHash;

    string private _baseURIExtended;
    string private _placeholderURIExtended;

    constructor(
        address _proxyRegistryAddress
    ) ERC721Tradable('SuperBunnies', 'SB', _proxyRegistryAddress) {
        /**
         * Start counting tokens with a reserved shift
         */
        _tokenIdCounter._value = RESERVED_TOTAL;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function setPlaceholderURI(string memory placeholderURI_) external onlyOwner {
        _placeholderURIExtended = placeholderURI_;
    }

    function setProvenanceHash(string memory provenanceHash_) external onlyOwner {
        provenanceHash = provenanceHash_;
    }

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

        if (!isRevealed) {
            return _placeholderURIExtended;
        }

        string memory base = _baseURI();

        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function setSuperTigerContractAddress(address contractAddress) public onlyOwner {
        superTigerContract = contractAddress;
    }

    function flipSaleState() public onlyOwner {
        isSaleActive = !isSaleActive;
    }
    function flipPreSaleState() public onlyOwner {
        isPreSaleActive = !isPreSaleActive;
    }
    function flipAllSaleStates() external onlyOwner {
       flipSaleState();
       flipPreSaleState();
    }
    function flipReveal() external onlyOwner {
        isRevealed = !isRevealed;
    }

    function _mintGeneric(
        uint256 CURRENT_NFT_PRICE,
        uint CURRENT_TOKENS_NUMBER_LIMIT,
        uint numberOfTokens
    ) internal {
        require(isSaleActive, "Sale is not active at the moment");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require(_tokenIdCounter.current().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply");

        if (isPreSaleActive) {
            CURRENT_NFT_PRICE = NFT_PRICE_PRE_SALE;
            CURRENT_TOKENS_NUMBER_LIMIT = MAX_NFT_PURCHASE_PRE_SALE;
        }

        require(numberOfTokens <= CURRENT_TOKENS_NUMBER_LIMIT, "Tokens amount is out of limit");
        require(CURRENT_NFT_PRICE.mul(numberOfTokens) == msg.value, "Sent ether value is incorrect");

        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMintGeneric(msg.sender, _tokenIdCounter);
        }
    }


    function mint(uint numberOfTokens) public payable {
        _mintGeneric(NFT_PRICE, MAX_NFT_PURCHASE, numberOfTokens);
    }

    function mintLove(uint numberOfTokens) public payable {
        _mintGeneric(NFT_PRICE_LOVE, MAX_NFT_PURCHASE_LOVE, numberOfTokens);
    }

    /**
     * Lazily mint some reserved tokens
     */
    function mintReserved(uint numberOfTokens) public onlyOwner {
        require(
            _reservedTokenIdCounter.current().add(numberOfTokens) <= RESERVED_TOTAL,
            "Minting would exceed max reserved supply"
        );

       for (uint i = 0; i < numberOfTokens; i++) {
            _safeMintGeneric(msg.sender, _reservedTokenIdCounter);
        }
    }

    function levelUp(uint256 useTokenId1, uint256 useTokenId2, uint256 useTokenId3) public {
        require(superTigerContract != address(0), "SuperTiger contract address need be set");

        address from = msg.sender;
        require(ERC721.ownerOf(useTokenId1) == from, "ERC721: use of token1 that is not own");
        require(ERC721.ownerOf(useTokenId2) == from, "ERC721: use of token2 that is not own");
        require(ERC721.ownerOf(useTokenId3) == from, "ERC721: use of token3 that is not own");

        burn(useTokenId1);
        burn(useTokenId2);
        burn(useTokenId3);

        SuperTiger superTiger = SuperTiger(superTigerContract);
        bool result = superTiger.composeSuperTiger(from);
        require(result, "SuperTiger compose failed");
    }
}

interface SuperTiger {
    function composeSuperTiger(address owner) external returns (bool);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 22 : ERC721Tradable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    ERC721URIStorage,
    ERC721Burnable,
    Ownable
{
    using Counters for Counters.Counter;
    // Counters.Counter private _tokenIdCounter;
    // Counters.Counter private _reservedTokenIdCounter;

    address proxyRegistryAddress;

    event PermanentURI(string value, uint256 indexed id);

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    function _safeMintGeneric(address to, Counters.Counter storage counter) internal {
        uint256 newTokenId = counter.current();
        _safeMint(to, newTokenId);
        counter.increment();
    }

    function _setPermanentURI(uint256 id, string memory uri)
        internal
    {
        _setTokenURI(id, uri);
        emit PermanentURI(uri, id);
    }

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

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



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

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

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        view
        override
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 4 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 22 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 22 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 7 of 22 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 8 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 9 of 22 : ContentMixin.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 10 of 22 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import {EIP712Base} from "./EIP712Base.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 11 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 22 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 16 of 22 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 17 of 22 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 19 of 22 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 20 of 22 : EIP712Base.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 21 of 22 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 22 of 22 : Initializable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"PermanentURI","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PURCHASE_LOVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PURCHASE_PRE_SALE","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":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_LOVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_PRE_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOTAL","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipAllSaleStates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"useTokenId1","type":"uint256"},{"internalType":"uint256","name":"useTokenId2","type":"uint256"},{"internalType":"uint256","name":"useTokenId3","type":"uint256"}],"name":"levelUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintLove","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI_","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash_","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setSuperTigerContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"superTigerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506127106013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055503480156200008357600080fd5b50604051620066ac380380620066ac8339818101604052810190620000a991906200056e565b6040518060400160405280600c81526020017f537570657242756e6e69657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f5342000000000000000000000000000000000000000000000000000000000000815250828282816000908051906020019062000130929190620004a7565b50806001908051906020019062000149929190620004a7565b5050506200016c62000160620001d460201b60201c565b620001f060201b60201c565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001be83620002b660201b60201c565b5050506101456010600001819055505062000759565b6000620001eb6200033860201b620024e41760201c565b905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60009054906101000a900460ff161562000309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003009062000640565b60405180910390fd5b6200031a81620003eb60201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415620003e457600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050620003e8565b3390505b90565b6040518060800160405280604f81526020016200665d604f91398051906020012081805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012030620004626200049a60201b60201c565b60001b6040516020016200047b959493929190620005e3565b60405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b828054620004b590620006b1565b90600052602060002090601f016020900481019282620004d9576000855562000525565b82601f10620004f457805160ff191683800117855562000525565b8280016001018555821562000525579182015b828111156200052457825182559160200191906001019062000507565b5b50905062000534919062000538565b5090565b5b808211156200055357600081600090555060010162000539565b5090565b60008151905062000568816200073f565b92915050565b6000602082840312156200058157600080fd5b6000620005918482850162000557565b91505092915050565b620005a58162000673565b82525050565b620005b68162000687565b82525050565b6000620005cb600e8362000662565b9150620005d88262000716565b602082019050919050565b600060a082019050620005fa6000830188620005ab565b620006096020830187620005ab565b620006186040830186620005ab565b6200062760608301856200059a565b620006366080830184620005ab565b9695505050505050565b600060208201905081810360008301526200065b81620005bc565b9050919050565b600082825260208201905092915050565b6000620006808262000691565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006ca57607f821691505b60208210811415620006e157620006e0620006e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b6200074a8162000673565b81146200075657600080fd5b50565b615ef480620007696000396000f3fe6080604052600436106102c95760003560e01c8063564566a8116101755780639a5d140b116100dc578063c6ab67a311610095578063e985e9c51161006f578063e985e9c514610aab578063f032554914610ae8578063f2fde38b14610aff578063f558569914610b28576102c9565b8063c6ab67a314610a1a578063c87b56dd14610a45578063e1e06fa214610a82576102c9565b80639a5d140b1461092f5780639d044ed314610958578063a0712d6814610983578063a22cb4651461099f578063b88d4fde146109c8578063c45a7374146109f1576102c9565b8063715018a61161012e578063715018a6146108415780638da5cb5b14610858578063917095201461088357806391ddfd47146108ae578063927c3e89146108d957806395d89b4114610904576102c9565b8063564566a81461072a5780635fecd983146107555780636352211e14610771578063676dd563146107ae5780636e4d5d20146107d957806370a0823114610804576102c9565b80632d0335ab116102345780633b84d9c6116101ed5780634368db43116101c75780634368db431461066e5780634f6ccce71461069957806354214f69146106d657806355f804b314610701576102c9565b80633b84d9c61461060557806342842e0e1461061c57806342966c6814610645576102c9565b80632d0335ab146104f55780632f745c591461053257806332cb6b0c1461056f5780633408e4701461059a57806334918dfd146105c55780633574a2dd146105dc576102c9565b80630c53c51c116102865780630c53c51c146103f25780630f7e597014610422578063109695231461044d57806318160ddd1461047657806320379ee5146104a157806323b872dd146104cc576102c9565b806301ffc9a7146102ce578063020b39cc1461030b57806306fdde0314610336578063081812fc14610361578063095ea7b31461039e5780630ad3f832146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f0919061428a565b610b3f565b6040516103029190614aff565b60405180910390f35b34801561031757600080fd5b50610320610b51565b60405161032d9190615023565b60405180910390f35b34801561034257600080fd5b5061034b610b56565b6040516103589190614be1565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190614346565b610be8565b6040516103959190614a5a565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190614225565b610c6d565b005b3480156103d357600080fd5b506103dc610d85565b6040516103e99190614a5a565b60405180910390f35b61040c60048036038101906104079190614196565b610dab565b6040516104199190614bbf565b60405180910390f35b34801561042e57600080fd5b5061043761101d565b6040516104449190614be1565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190614305565b611056565b005b34801561048257600080fd5b5061048b6110ec565b6040516104989190615023565b60405180910390f35b3480156104ad57600080fd5b506104b66110f9565b6040516104c39190614b1a565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190614090565b611103565b005b34801561050157600080fd5b5061051c6004803603810190610517919061402b565b611163565b6040516105299190615023565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190614225565b6111ac565b6040516105669190615023565b60405180910390f35b34801561057b57600080fd5b50610584611251565b6040516105919190615023565b60405180910390f35b3480156105a657600080fd5b506105af611257565b6040516105bc9190615023565b60405180910390f35b3480156105d157600080fd5b506105da611264565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614305565b61130c565b005b34801561061157600080fd5b5061061a6113a2565b005b34801561062857600080fd5b50610643600480360381019061063e9190614090565b61144a565b005b34801561065157600080fd5b5061066c60048036038101906106679190614346565b61146a565b005b34801561067a57600080fd5b506106836114c6565b6040516106909190615023565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614346565b6114cb565b6040516106cd9190615023565b60405180910390f35b3480156106e257600080fd5b506106eb611562565b6040516106f89190614aff565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190614305565b611575565b005b34801561073657600080fd5b5061073f61160b565b60405161074c9190614aff565b60405180910390f35b61076f600480360381019061076a9190614346565b61161e565b005b34801561077d57600080fd5b5061079860048036038101906107939190614346565b611634565b6040516107a59190614a5a565b60405180910390f35b3480156107ba57600080fd5b506107c36116e6565b6040516107d09190615023565b60405180910390f35b3480156107e557600080fd5b506107ee6116f2565b6040516107fb9190615023565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061402b565b6116f8565b6040516108389190615023565b60405180910390f35b34801561084d57600080fd5b506108566117b0565b005b34801561086457600080fd5b5061086d611838565b60405161087a9190614a5a565b60405180910390f35b34801561088f57600080fd5b50610898611862565b6040516108a59190615023565b60405180910390f35b3480156108ba57600080fd5b506108c361186d565b6040516108d09190615023565b60405180910390f35b3480156108e557600080fd5b506108ee611872565b6040516108fb9190615023565b60405180910390f35b34801561091057600080fd5b5061091961187d565b6040516109269190614be1565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614346565b61190f565b005b34801561096457600080fd5b5061096d611a18565b60405161097a9190614aff565b60405180910390f35b61099d60048036038101906109989190614346565b611a2b565b005b3480156109ab57600080fd5b506109c660048036038101906109c1919061415a565b611a42565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906140df565b611bc3565b005b3480156109fd57600080fd5b50610a186004803603810190610a13919061436f565b611c25565b005b348015610a2657600080fd5b50610a2f611f37565b604051610a3c9190614be1565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190614346565b611fc5565b604051610a799190614be1565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061402b565b6120f4565b005b348015610ab757600080fd5b50610ad26004803603810190610acd9190614054565b6121b4565b604051610adf9190614aff565b60405180910390f35b348015610af457600080fd5b50610afd6122b6565b005b348015610b0b57600080fd5b50610b266004803603810190610b21919061402b565b61235e565b005b348015610b3457600080fd5b50610b3d612456565b005b6000610b4a82612595565b9050919050565b606481565b606060008054610b6590615319565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190615319565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf38261260f565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614e83565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7882611634565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0861267b565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d3161267b565b6121b4565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614dc3565b60405180910390fd5b610d80838361268a565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610e2e8782878787612743565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614ee3565b60405180910390fd5b610ec06001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461284c90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610f3693929190614a75565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610f6b9291906149d7565b604051602081830303815290604052604051610f8791906149c0565b6000604051808303816000865af19150503d8060008114610fc4576040519150601f19603f3d011682016040523d82523d6000602084013e610fc9565b606091505b50915091508161100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590614ce3565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b61105e61267b565b73ffffffffffffffffffffffffffffffffffffffff1661107c611838565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614ea3565b60405180910390fd5b80601590805190602001906110e8929190613dbb565b5050565b6000600880549050905090565b6000600b54905090565b61111461110e61267b565b82612862565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614f43565b60405180910390fd5b61115e838383612940565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006111b7836116f8565b82106111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614c63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60135481565b6000804690508091505090565b61126c61267b565b73ffffffffffffffffffffffffffffffffffffffff1661128a611838565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614ea3565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b61131461267b565b73ffffffffffffffffffffffffffffffffffffffff16611332611838565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90614ea3565b60405180910390fd5b806017908051906020019061139e929190613dbb565b5050565b6113aa61267b565b73ffffffffffffffffffffffffffffffffffffffff166113c8611838565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614ea3565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61146583838360405180602001604052806000815250611bc3565b505050565b61147b61147561267b565b82612862565b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614fc3565b60405180910390fd5b6114c381612b9c565b50565b600a81565b60006114d56110ec565b8210611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614f63565b60405180910390fd5b60088281548110611550577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601460029054906101000a900460ff1681565b61157d61267b565b73ffffffffffffffffffffffffffffffffffffffff1661159b611838565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614ea3565b60405180910390fd5b8060169080519060200190611607929190613dbb565b5050565b601460009054906101000a900460ff1681565b61163166f5232269808000606483612ba8565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614e03565b60405180910390fd5b80915050919050565b67011c37937e08000081565b61014581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614de3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b861267b565b73ffffffffffffffffffffffffffffffffffffffff166117d6611838565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614ea3565b60405180910390fd5b6118366000612d84565b565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b66f523226980800081565b606481565b66ce0eb154f9000081565b60606001805461188c90615319565b80601f01602080910402602001604051908101604052809291908181526020018280546118b890615319565b80156119055780601f106118da57610100808354040283529160200191611905565b820191906000526020600020905b8154815290600101906020018083116118e857829003601f168201915b5050505050905090565b61191761267b565b73ffffffffffffffffffffffffffffffffffffffff16611935611838565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290614ea3565b60405180910390fd5b6101456119aa8261199c6011612e4a565b61284c90919063ffffffff16565b11156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614fe3565b60405180910390fd5b60005b81811015611a1457611a01336011612e58565b8080611a0c9061537c565b9150506119ee565b5050565b601460019054906101000a900460ff1681565b611a3f67011c37937e080000606483612ba8565b50565b611a4a61267b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614d63565b60405180910390fd5b8060056000611ac561267b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7261267b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb79190614aff565b60405180910390a35050565b611bd4611bce61267b565b83612862565b611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614f43565b60405180910390fd5b611c1f84848484612e7d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90614c03565b60405180910390fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff16611cdc85611634565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990614f83565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d5284611634565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90614fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611dc883611634565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614c43565b60405180910390fd5b611e278461146a565b611e308361146a565b611e398261146a565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663b8f5a55e846040518263ffffffff1660e01b8152600401611e9b9190614a5a565b602060405180830381600087803b158015611eb557600080fd5b505af1158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614261565b905080611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614ca3565b60405180910390fd5b505050505050565b60158054611f4490615319565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7090615319565b8015611fbd5780601f10611f9257610100808354040283529160200191611fbd565b820191906000526020600020905b815481529060010190602001808311611fa057829003601f168201915b505050505081565b6060611fd08261260f565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614f03565b60405180910390fd5b601460029054906101000a900460ff166120b5576017805461203090615319565b80601f016020809104026020016040519081016040528092919081815260200182805461205c90615319565b80156120a95780601f1061207e576101008083540402835291602001916120a9565b820191906000526020600020905b81548152906001019060200180831161208c57829003601f168201915b505050505090506120ef565b60006120bf612ed9565b9050806120cb84612f6b565b6040516020016120dc9291906149ff565b6040516020818303038152906040529150505b919050565b6120fc61267b565b73ffffffffffffffffffffffffffffffffffffffff1661211a611838565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614ea3565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161222c9190614a5a565b60206040518083038186803b15801561224457600080fd5b505afa158015612258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227c91906142dc565b73ffffffffffffffffffffffffffffffffffffffff1614156122a25760019150506122b0565b6122ac8484613118565b9150505b92915050565b6122be61267b565b73ffffffffffffffffffffffffffffffffffffffff166122dc611838565b73ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990614ea3565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61236661267b565b73ffffffffffffffffffffffffffffffffffffffff16612384611838565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614ea3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614cc3565b60405180910390fd5b61245381612d84565b50565b61245e61267b565b73ffffffffffffffffffffffffffffffffffffffff1661247c611838565b73ffffffffffffffffffffffffffffffffffffffff16146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614ea3565b60405180910390fd5b6124da611264565b6124e26122b6565b565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561258e57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050612592565b3390505b90565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126085750612607826131ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006126856124e4565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126fd83611634565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614da3565b60405180910390fd5b60016127c76127c28761328e565b6132f6565b838686604051600081526020016040526040516127e79493929190614b7a565b6020604051602081039080840390855afa158015612809573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000818361285a9190615113565b905092915050565b600061286d8261260f565b6128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614d83565b60405180910390fd5b60006128b783611634565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292657508373ffffffffffffffffffffffffffffffffffffffff1661290e84610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612937575061293681856121b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661296082611634565b73ffffffffffffffffffffffffffffffffffffffff16146129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614ec3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90614d43565b60405180910390fd5b612a3183838361332f565b612a3c60008261268a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8c91906151f4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae39190615113565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ba58161333f565b50565b601460009054906101000a900460ff16612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90615003565b60405180910390fd5b60008111612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614c23565b60405180910390fd5b601354612c5982612c4b6010612e4a565b61284c90919063ffffffff16565b1115612c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9190614e43565b60405180910390fd5b601460019054906101000a900460ff1615612cbe5766ce0eb154f900009250600a91505b81811115612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890614d03565b60405180910390fd5b34612d15828561339290919063ffffffff16565b14612d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c90614e23565b60405180910390fd5b60005b81811015612d7e57612d6b336010612e58565b8080612d769061537c565b915050612d58565b50505050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6000612e6382612e4a565b9050612e6f83826133a8565b612e78826133c6565b505050565b612e88848484612940565b612e94848484846133dc565b612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614c83565b60405180910390fd5b50505050565b606060168054612ee890615319565b80601f0160208091040260200160405190810160405280929190818152602001828054612f1490615319565b8015612f615780601f10612f3657610100808354040283529160200191612f61565b820191906000526020600020905b815481529060010190602001808311612f4457829003601f168201915b5050505050905090565b60606000821415612fb3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613113565b600082905060005b60008214612fe5578080612fce9061537c565b915050600a82612fde9190615169565b9150612fbb565b60008167ffffffffffffffff811115613027577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130595781602001600182028036833780820191505090505b5090505b6000851461310c5760018261307291906151f4565b9150600a8561308191906153f3565b603061308d9190615113565b60f81b8183815181106130c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131059190615169565b945061305d565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061327757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613287575061328682613573565b5b9050919050565b6000604051806080016040528060438152602001615e7c6043913980519060200120826000015183602001518460400151805190602001206040516020016132d99493929190614b35565b604051602081830303815290604052805190602001209050919050565b60006133006110f9565b82604051602001613312929190614a23565b604051602081830303815290604052805190602001209050919050565b61333a8383836135dd565b505050565b613348816136f1565b6000600d6000838152602001908152602001600020805461336890615319565b90501461338f57600d6000828152602001908152602001600020600061338e9190613e41565b5b50565b600081836133a0919061519a565b905092915050565b6133c2828260405180602001604052806000815250613802565b5050565b6001816000016000828254019250508190555050565b60006133fd8473ffffffffffffffffffffffffffffffffffffffff1661385d565b15613566578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342661267b565b8786866040518563ffffffff1660e01b81526004016134489493929190614ab3565b602060405180830381600087803b15801561346257600080fd5b505af192505050801561349357506040513d601f19601f8201168201806040525081019061349091906142b3565b60015b613516573d80600081146134c3576040519150601f19603f3d011682016040523d82523d6000602084013e6134c8565b606091505b5060008151141561350e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350590614c83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061356b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135e8838383613870565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561362b5761362681613875565b61366a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136695761366883826138be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ad576136a881613a2b565b6136ec565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136eb576136ea8282613b6e565b5b5b505050565b60006136fc82611634565b905061370a8160008461332f565b61371560008361268a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461376591906151f4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61380c8383613bed565b61381960008484846133dc565b613858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384f90614c83565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138cb846116f8565b6138d591906151f4565b90506000600760008481526020019081526020016000205490508181146139ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3f91906151f4565b9050600060096000848152602001908152602001600020549050600060088381548110613a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613add577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b79836116f8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5490614e63565b60405180910390fd5b613c668161260f565b15613ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9d90614d23565b60405180910390fd5b613cb26000838361332f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d029190615113565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613dc790615319565b90600052602060002090601f016020900481019282613de95760008555613e30565b82601f10613e0257805160ff1916838001178555613e30565b82800160010185558215613e30579182015b82811115613e2f578251825591602001919060010190613e14565b5b509050613e3d9190613e81565b5090565b508054613e4d90615319565b6000825580601f10613e5f5750613e7e565b601f016020900490600052602060002090810190613e7d9190613e81565b5b50565b5b80821115613e9a576000816000905550600101613e82565b5090565b6000613eb1613eac84615063565b61503e565b905082815260208101848484011115613ec957600080fd5b613ed48482856152d7565b509392505050565b6000613eef613eea84615094565b61503e565b905082815260208101848484011115613f0757600080fd5b613f128482856152d7565b509392505050565b600081359050613f2981615dda565b92915050565b600081359050613f3e81615df1565b92915050565b600081519050613f5381615df1565b92915050565b600081359050613f6881615e08565b92915050565b600081359050613f7d81615e1f565b92915050565b600081519050613f9281615e1f565b92915050565b600082601f830112613fa957600080fd5b8135613fb9848260208601613e9e565b91505092915050565b600081519050613fd181615e36565b92915050565b600082601f830112613fe857600080fd5b8135613ff8848260208601613edc565b91505092915050565b60008135905061401081615e4d565b92915050565b60008135905061402581615e64565b92915050565b60006020828403121561403d57600080fd5b600061404b84828501613f1a565b91505092915050565b6000806040838503121561406757600080fd5b600061407585828601613f1a565b925050602061408685828601613f1a565b9150509250929050565b6000806000606084860312156140a557600080fd5b60006140b386828701613f1a565b93505060206140c486828701613f1a565b92505060406140d586828701614001565b9150509250925092565b600080600080608085870312156140f557600080fd5b600061410387828801613f1a565b945050602061411487828801613f1a565b935050604061412587828801614001565b925050606085013567ffffffffffffffff81111561414257600080fd5b61414e87828801613f98565b91505092959194509250565b6000806040838503121561416d57600080fd5b600061417b85828601613f1a565b925050602061418c85828601613f2f565b9150509250929050565b600080600080600060a086880312156141ae57600080fd5b60006141bc88828901613f1a565b955050602086013567ffffffffffffffff8111156141d957600080fd5b6141e588828901613f98565b94505060406141f688828901613f59565b935050606061420788828901613f59565b925050608061421888828901614016565b9150509295509295909350565b6000806040838503121561423857600080fd5b600061424685828601613f1a565b925050602061425785828601614001565b9150509250929050565b60006020828403121561427357600080fd5b600061428184828501613f44565b91505092915050565b60006020828403121561429c57600080fd5b60006142aa84828501613f6e565b91505092915050565b6000602082840312156142c557600080fd5b60006142d384828501613f83565b91505092915050565b6000602082840312156142ee57600080fd5b60006142fc84828501613fc2565b91505092915050565b60006020828403121561431757600080fd5b600082013567ffffffffffffffff81111561433157600080fd5b61433d84828501613fd7565b91505092915050565b60006020828403121561435857600080fd5b600061436684828501614001565b91505092915050565b60008060006060848603121561438457600080fd5b600061439286828701614001565b93505060206143a386828701614001565b92505060406143b486828701614001565b9150509250925092565b6143c78161523a565b82525050565b6143d681615228565b82525050565b6143ed6143e882615228565b6153c5565b82525050565b6143fc8161524c565b82525050565b61440b81615258565b82525050565b61442261441d82615258565b6153d7565b82525050565b6000614433826150c5565b61443d81856150db565b935061444d8185602086016152e6565b614456816154e0565b840191505092915050565b600061446c826150c5565b61447681856150ec565b93506144868185602086016152e6565b80840191505092915050565b600061449d826150d0565b6144a781856150f7565b93506144b78185602086016152e6565b6144c0816154e0565b840191505092915050565b60006144d6826150d0565b6144e08185615108565b93506144f08185602086016152e6565b80840191505092915050565b60006145096027836150f7565b9150614514826154fe565b604082019050919050565b600061452c6033836150f7565b91506145378261554d565b604082019050919050565b600061454f6025836150f7565b915061455a8261559c565b604082019050919050565b6000614572602b836150f7565b915061457d826155eb565b604082019050919050565b60006145956032836150f7565b91506145a08261563a565b604082019050919050565b60006145b86019836150f7565b91506145c382615689565b602082019050919050565b60006145db6026836150f7565b91506145e6826156b2565b604082019050919050565b60006145fe601c836150f7565b915061460982615701565b602082019050919050565b6000614621601d836150f7565b915061462c8261572a565b602082019050919050565b6000614644601c836150f7565b915061464f82615753565b602082019050919050565b6000614667600283615108565b91506146728261577c565b600282019050919050565b600061468a6024836150f7565b9150614695826157a5565b604082019050919050565b60006146ad6019836150f7565b91506146b8826157f4565b602082019050919050565b60006146d0602c836150f7565b91506146db8261581d565b604082019050919050565b60006146f36025836150f7565b91506146fe8261586c565b604082019050919050565b60006147166038836150f7565b9150614721826158bb565b604082019050919050565b6000614739602a836150f7565b91506147448261590a565b604082019050919050565b600061475c6029836150f7565b915061476782615959565b604082019050919050565b600061477f601d836150f7565b915061478a826159a8565b602082019050919050565b60006147a26020836150f7565b91506147ad826159d1565b602082019050919050565b60006147c56020836150f7565b91506147d0826159fa565b602082019050919050565b60006147e8602c836150f7565b91506147f382615a23565b604082019050919050565b600061480b6020836150f7565b915061481682615a72565b602082019050919050565b600061482e6029836150f7565b915061483982615a9b565b604082019050919050565b60006148516021836150f7565b915061485c82615aea565b604082019050919050565b6000614874602f836150f7565b915061487f82615b39565b604082019050919050565b60006148976021836150f7565b91506148a282615b88565b604082019050919050565b60006148ba6031836150f7565b91506148c582615bd7565b604082019050919050565b60006148dd602c836150f7565b91506148e882615c26565b604082019050919050565b60006149006025836150f7565b915061490b82615c75565b604082019050919050565b60006149236025836150f7565b915061492e82615cc4565b604082019050919050565b60006149466030836150f7565b915061495182615d13565b604082019050919050565b60006149696028836150f7565b915061497482615d62565b604082019050919050565b600061498c6020836150f7565b915061499782615db1565b602082019050919050565b6149ab816152c0565b82525050565b6149ba816152ca565b82525050565b60006149cc8284614461565b915081905092915050565b60006149e38285614461565b91506149ef82846143dc565b6014820191508190509392505050565b6000614a0b82856144cb565b9150614a1782846144cb565b91508190509392505050565b6000614a2e8261465a565b9150614a3a8285614411565b602082019150614a4a8284614411565b6020820191508190509392505050565b6000602082019050614a6f60008301846143cd565b92915050565b6000606082019050614a8a60008301866143cd565b614a9760208301856143be565b8181036040830152614aa98184614428565b9050949350505050565b6000608082019050614ac860008301876143cd565b614ad560208301866143cd565b614ae260408301856149a2565b8181036060830152614af48184614428565b905095945050505050565b6000602082019050614b1460008301846143f3565b92915050565b6000602082019050614b2f6000830184614402565b92915050565b6000608082019050614b4a6000830187614402565b614b5760208301866149a2565b614b6460408301856143cd565b614b716060830184614402565b95945050505050565b6000608082019050614b8f6000830187614402565b614b9c60208301866149b1565b614ba96040830185614402565b614bb66060830184614402565b95945050505050565b60006020820190508181036000830152614bd98184614428565b905092915050565b60006020820190508181036000830152614bfb8184614492565b905092915050565b60006020820190508181036000830152614c1c816144fc565b9050919050565b60006020820190508181036000830152614c3c8161451f565b9050919050565b60006020820190508181036000830152614c5c81614542565b9050919050565b60006020820190508181036000830152614c7c81614565565b9050919050565b60006020820190508181036000830152614c9c81614588565b9050919050565b60006020820190508181036000830152614cbc816145ab565b9050919050565b60006020820190508181036000830152614cdc816145ce565b9050919050565b60006020820190508181036000830152614cfc816145f1565b9050919050565b60006020820190508181036000830152614d1c81614614565b9050919050565b60006020820190508181036000830152614d3c81614637565b9050919050565b60006020820190508181036000830152614d5c8161467d565b9050919050565b60006020820190508181036000830152614d7c816146a0565b9050919050565b60006020820190508181036000830152614d9c816146c3565b9050919050565b60006020820190508181036000830152614dbc816146e6565b9050919050565b60006020820190508181036000830152614ddc81614709565b9050919050565b60006020820190508181036000830152614dfc8161472c565b9050919050565b60006020820190508181036000830152614e1c8161474f565b9050919050565b60006020820190508181036000830152614e3c81614772565b9050919050565b60006020820190508181036000830152614e5c81614795565b9050919050565b60006020820190508181036000830152614e7c816147b8565b9050919050565b60006020820190508181036000830152614e9c816147db565b9050919050565b60006020820190508181036000830152614ebc816147fe565b9050919050565b60006020820190508181036000830152614edc81614821565b9050919050565b60006020820190508181036000830152614efc81614844565b9050919050565b60006020820190508181036000830152614f1c81614867565b9050919050565b60006020820190508181036000830152614f3c8161488a565b9050919050565b60006020820190508181036000830152614f5c816148ad565b9050919050565b60006020820190508181036000830152614f7c816148d0565b9050919050565b60006020820190508181036000830152614f9c816148f3565b9050919050565b60006020820190508181036000830152614fbc81614916565b9050919050565b60006020820190508181036000830152614fdc81614939565b9050919050565b60006020820190508181036000830152614ffc8161495c565b9050919050565b6000602082019050818103600083015261501c8161497f565b9050919050565b600060208201905061503860008301846149a2565b92915050565b6000615048615059565b9050615054828261534b565b919050565b6000604051905090565b600067ffffffffffffffff82111561507e5761507d6154b1565b5b615087826154e0565b9050602081019050919050565b600067ffffffffffffffff8211156150af576150ae6154b1565b5b6150b8826154e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061511e826152c0565b9150615129836152c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561515e5761515d615424565b5b828201905092915050565b6000615174826152c0565b915061517f836152c0565b92508261518f5761518e615453565b5b828204905092915050565b60006151a5826152c0565b91506151b0836152c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151e9576151e8615424565b5b828202905092915050565b60006151ff826152c0565b915061520a836152c0565b92508282101561521d5761521c615424565b5b828203905092915050565b6000615233826152a0565b9050919050565b6000615245826152a0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061529982615228565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153045780820151818401526020810190506152e9565b83811115615313576000848401525b50505050565b6000600282049050600182168061533157607f821691505b6020821081141561534557615344615482565b5b50919050565b615354826154e0565b810181811067ffffffffffffffff82111715615373576153726154b1565b5b80604052505050565b6000615387826152c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153ba576153b9615424565b5b600182019050919050565b60006153d0826153e1565b9050919050565b6000819050919050565b60006153ec826154f1565b9050919050565b60006153fe826152c0565b9150615409836152c0565b92508261541957615418615453565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5375706572546967657220636f6e74726163742061646472657373206e65656460008201527f2062652073657400000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e332074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5375706572546967657220636f6d706f7365206661696c656400000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f546f6b656e7320616d6f756e74206973206f7574206f66206c696d6974000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e312074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e322074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d6178207265736572766560008201527f6420737570706c79000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b615de381615228565b8114615dee57600080fd5b50565b615dfa8161524c565b8114615e0557600080fd5b50565b615e1181615258565b8114615e1c57600080fd5b50565b615e2881615262565b8114615e3357600080fd5b50565b615e3f8161528e565b8114615e4a57600080fd5b50565b615e56816152c0565b8114615e6157600080fd5b50565b615e6d816152ca565b8114615e7857600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220d79435535e735bb38c602e3005a8101f05ee82251a6f05470b1b2a03abeea13d64736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063564566a8116101755780639a5d140b116100dc578063c6ab67a311610095578063e985e9c51161006f578063e985e9c514610aab578063f032554914610ae8578063f2fde38b14610aff578063f558569914610b28576102c9565b8063c6ab67a314610a1a578063c87b56dd14610a45578063e1e06fa214610a82576102c9565b80639a5d140b1461092f5780639d044ed314610958578063a0712d6814610983578063a22cb4651461099f578063b88d4fde146109c8578063c45a7374146109f1576102c9565b8063715018a61161012e578063715018a6146108415780638da5cb5b14610858578063917095201461088357806391ddfd47146108ae578063927c3e89146108d957806395d89b4114610904576102c9565b8063564566a81461072a5780635fecd983146107555780636352211e14610771578063676dd563146107ae5780636e4d5d20146107d957806370a0823114610804576102c9565b80632d0335ab116102345780633b84d9c6116101ed5780634368db43116101c75780634368db431461066e5780634f6ccce71461069957806354214f69146106d657806355f804b314610701576102c9565b80633b84d9c61461060557806342842e0e1461061c57806342966c6814610645576102c9565b80632d0335ab146104f55780632f745c591461053257806332cb6b0c1461056f5780633408e4701461059a57806334918dfd146105c55780633574a2dd146105dc576102c9565b80630c53c51c116102865780630c53c51c146103f25780630f7e597014610422578063109695231461044d57806318160ddd1461047657806320379ee5146104a157806323b872dd146104cc576102c9565b806301ffc9a7146102ce578063020b39cc1461030b57806306fdde0314610336578063081812fc14610361578063095ea7b31461039e5780630ad3f832146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f0919061428a565b610b3f565b6040516103029190614aff565b60405180910390f35b34801561031757600080fd5b50610320610b51565b60405161032d9190615023565b60405180910390f35b34801561034257600080fd5b5061034b610b56565b6040516103589190614be1565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190614346565b610be8565b6040516103959190614a5a565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190614225565b610c6d565b005b3480156103d357600080fd5b506103dc610d85565b6040516103e99190614a5a565b60405180910390f35b61040c60048036038101906104079190614196565b610dab565b6040516104199190614bbf565b60405180910390f35b34801561042e57600080fd5b5061043761101d565b6040516104449190614be1565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190614305565b611056565b005b34801561048257600080fd5b5061048b6110ec565b6040516104989190615023565b60405180910390f35b3480156104ad57600080fd5b506104b66110f9565b6040516104c39190614b1a565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190614090565b611103565b005b34801561050157600080fd5b5061051c6004803603810190610517919061402b565b611163565b6040516105299190615023565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190614225565b6111ac565b6040516105669190615023565b60405180910390f35b34801561057b57600080fd5b50610584611251565b6040516105919190615023565b60405180910390f35b3480156105a657600080fd5b506105af611257565b6040516105bc9190615023565b60405180910390f35b3480156105d157600080fd5b506105da611264565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614305565b61130c565b005b34801561061157600080fd5b5061061a6113a2565b005b34801561062857600080fd5b50610643600480360381019061063e9190614090565b61144a565b005b34801561065157600080fd5b5061066c60048036038101906106679190614346565b61146a565b005b34801561067a57600080fd5b506106836114c6565b6040516106909190615023565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614346565b6114cb565b6040516106cd9190615023565b60405180910390f35b3480156106e257600080fd5b506106eb611562565b6040516106f89190614aff565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190614305565b611575565b005b34801561073657600080fd5b5061073f61160b565b60405161074c9190614aff565b60405180910390f35b61076f600480360381019061076a9190614346565b61161e565b005b34801561077d57600080fd5b5061079860048036038101906107939190614346565b611634565b6040516107a59190614a5a565b60405180910390f35b3480156107ba57600080fd5b506107c36116e6565b6040516107d09190615023565b60405180910390f35b3480156107e557600080fd5b506107ee6116f2565b6040516107fb9190615023565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061402b565b6116f8565b6040516108389190615023565b60405180910390f35b34801561084d57600080fd5b506108566117b0565b005b34801561086457600080fd5b5061086d611838565b60405161087a9190614a5a565b60405180910390f35b34801561088f57600080fd5b50610898611862565b6040516108a59190615023565b60405180910390f35b3480156108ba57600080fd5b506108c361186d565b6040516108d09190615023565b60405180910390f35b3480156108e557600080fd5b506108ee611872565b6040516108fb9190615023565b60405180910390f35b34801561091057600080fd5b5061091961187d565b6040516109269190614be1565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614346565b61190f565b005b34801561096457600080fd5b5061096d611a18565b60405161097a9190614aff565b60405180910390f35b61099d60048036038101906109989190614346565b611a2b565b005b3480156109ab57600080fd5b506109c660048036038101906109c1919061415a565b611a42565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906140df565b611bc3565b005b3480156109fd57600080fd5b50610a186004803603810190610a13919061436f565b611c25565b005b348015610a2657600080fd5b50610a2f611f37565b604051610a3c9190614be1565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190614346565b611fc5565b604051610a799190614be1565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061402b565b6120f4565b005b348015610ab757600080fd5b50610ad26004803603810190610acd9190614054565b6121b4565b604051610adf9190614aff565b60405180910390f35b348015610af457600080fd5b50610afd6122b6565b005b348015610b0b57600080fd5b50610b266004803603810190610b21919061402b565b61235e565b005b348015610b3457600080fd5b50610b3d612456565b005b6000610b4a82612595565b9050919050565b606481565b606060008054610b6590615319565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190615319565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf38261260f565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614e83565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7882611634565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0861267b565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d3161267b565b6121b4565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614dc3565b60405180910390fd5b610d80838361268a565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610e2e8782878787612743565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614ee3565b60405180910390fd5b610ec06001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461284c90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610f3693929190614a75565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610f6b9291906149d7565b604051602081830303815290604052604051610f8791906149c0565b6000604051808303816000865af19150503d8060008114610fc4576040519150601f19603f3d011682016040523d82523d6000602084013e610fc9565b606091505b50915091508161100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590614ce3565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b61105e61267b565b73ffffffffffffffffffffffffffffffffffffffff1661107c611838565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614ea3565b60405180910390fd5b80601590805190602001906110e8929190613dbb565b5050565b6000600880549050905090565b6000600b54905090565b61111461110e61267b565b82612862565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614f43565b60405180910390fd5b61115e838383612940565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006111b7836116f8565b82106111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614c63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60135481565b6000804690508091505090565b61126c61267b565b73ffffffffffffffffffffffffffffffffffffffff1661128a611838565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614ea3565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b61131461267b565b73ffffffffffffffffffffffffffffffffffffffff16611332611838565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90614ea3565b60405180910390fd5b806017908051906020019061139e929190613dbb565b5050565b6113aa61267b565b73ffffffffffffffffffffffffffffffffffffffff166113c8611838565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614ea3565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61146583838360405180602001604052806000815250611bc3565b505050565b61147b61147561267b565b82612862565b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614fc3565b60405180910390fd5b6114c381612b9c565b50565b600a81565b60006114d56110ec565b8210611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614f63565b60405180910390fd5b60088281548110611550577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601460029054906101000a900460ff1681565b61157d61267b565b73ffffffffffffffffffffffffffffffffffffffff1661159b611838565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614ea3565b60405180910390fd5b8060169080519060200190611607929190613dbb565b5050565b601460009054906101000a900460ff1681565b61163166f5232269808000606483612ba8565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614e03565b60405180910390fd5b80915050919050565b67011c37937e08000081565b61014581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614de3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b861267b565b73ffffffffffffffffffffffffffffffffffffffff166117d6611838565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614ea3565b60405180910390fd5b6118366000612d84565b565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b66f523226980800081565b606481565b66ce0eb154f9000081565b60606001805461188c90615319565b80601f01602080910402602001604051908101604052809291908181526020018280546118b890615319565b80156119055780601f106118da57610100808354040283529160200191611905565b820191906000526020600020905b8154815290600101906020018083116118e857829003601f168201915b5050505050905090565b61191761267b565b73ffffffffffffffffffffffffffffffffffffffff16611935611838565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290614ea3565b60405180910390fd5b6101456119aa8261199c6011612e4a565b61284c90919063ffffffff16565b11156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614fe3565b60405180910390fd5b60005b81811015611a1457611a01336011612e58565b8080611a0c9061537c565b9150506119ee565b5050565b601460019054906101000a900460ff1681565b611a3f67011c37937e080000606483612ba8565b50565b611a4a61267b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614d63565b60405180910390fd5b8060056000611ac561267b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7261267b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb79190614aff565b60405180910390a35050565b611bd4611bce61267b565b83612862565b611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614f43565b60405180910390fd5b611c1f84848484612e7d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90614c03565b60405180910390fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff16611cdc85611634565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990614f83565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d5284611634565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90614fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611dc883611634565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614c43565b60405180910390fd5b611e278461146a565b611e308361146a565b611e398261146a565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663b8f5a55e846040518263ffffffff1660e01b8152600401611e9b9190614a5a565b602060405180830381600087803b158015611eb557600080fd5b505af1158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614261565b905080611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614ca3565b60405180910390fd5b505050505050565b60158054611f4490615319565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7090615319565b8015611fbd5780601f10611f9257610100808354040283529160200191611fbd565b820191906000526020600020905b815481529060010190602001808311611fa057829003601f168201915b505050505081565b6060611fd08261260f565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614f03565b60405180910390fd5b601460029054906101000a900460ff166120b5576017805461203090615319565b80601f016020809104026020016040519081016040528092919081815260200182805461205c90615319565b80156120a95780601f1061207e576101008083540402835291602001916120a9565b820191906000526020600020905b81548152906001019060200180831161208c57829003601f168201915b505050505090506120ef565b60006120bf612ed9565b9050806120cb84612f6b565b6040516020016120dc9291906149ff565b6040516020818303038152906040529150505b919050565b6120fc61267b565b73ffffffffffffffffffffffffffffffffffffffff1661211a611838565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614ea3565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161222c9190614a5a565b60206040518083038186803b15801561224457600080fd5b505afa158015612258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227c91906142dc565b73ffffffffffffffffffffffffffffffffffffffff1614156122a25760019150506122b0565b6122ac8484613118565b9150505b92915050565b6122be61267b565b73ffffffffffffffffffffffffffffffffffffffff166122dc611838565b73ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990614ea3565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61236661267b565b73ffffffffffffffffffffffffffffffffffffffff16612384611838565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614ea3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614cc3565b60405180910390fd5b61245381612d84565b50565b61245e61267b565b73ffffffffffffffffffffffffffffffffffffffff1661247c611838565b73ffffffffffffffffffffffffffffffffffffffff16146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614ea3565b60405180910390fd5b6124da611264565b6124e26122b6565b565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561258e57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050612592565b3390505b90565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126085750612607826131ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006126856124e4565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126fd83611634565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614da3565b60405180910390fd5b60016127c76127c28761328e565b6132f6565b838686604051600081526020016040526040516127e79493929190614b7a565b6020604051602081039080840390855afa158015612809573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000818361285a9190615113565b905092915050565b600061286d8261260f565b6128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614d83565b60405180910390fd5b60006128b783611634565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292657508373ffffffffffffffffffffffffffffffffffffffff1661290e84610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612937575061293681856121b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661296082611634565b73ffffffffffffffffffffffffffffffffffffffff16146129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614ec3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90614d43565b60405180910390fd5b612a3183838361332f565b612a3c60008261268a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8c91906151f4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae39190615113565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ba58161333f565b50565b601460009054906101000a900460ff16612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90615003565b60405180910390fd5b60008111612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614c23565b60405180910390fd5b601354612c5982612c4b6010612e4a565b61284c90919063ffffffff16565b1115612c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9190614e43565b60405180910390fd5b601460019054906101000a900460ff1615612cbe5766ce0eb154f900009250600a91505b81811115612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890614d03565b60405180910390fd5b34612d15828561339290919063ffffffff16565b14612d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c90614e23565b60405180910390fd5b60005b81811015612d7e57612d6b336010612e58565b8080612d769061537c565b915050612d58565b50505050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6000612e6382612e4a565b9050612e6f83826133a8565b612e78826133c6565b505050565b612e88848484612940565b612e94848484846133dc565b612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614c83565b60405180910390fd5b50505050565b606060168054612ee890615319565b80601f0160208091040260200160405190810160405280929190818152602001828054612f1490615319565b8015612f615780601f10612f3657610100808354040283529160200191612f61565b820191906000526020600020905b815481529060010190602001808311612f4457829003601f168201915b5050505050905090565b60606000821415612fb3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613113565b600082905060005b60008214612fe5578080612fce9061537c565b915050600a82612fde9190615169565b9150612fbb565b60008167ffffffffffffffff811115613027577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130595781602001600182028036833780820191505090505b5090505b6000851461310c5760018261307291906151f4565b9150600a8561308191906153f3565b603061308d9190615113565b60f81b8183815181106130c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131059190615169565b945061305d565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061327757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613287575061328682613573565b5b9050919050565b6000604051806080016040528060438152602001615e7c6043913980519060200120826000015183602001518460400151805190602001206040516020016132d99493929190614b35565b604051602081830303815290604052805190602001209050919050565b60006133006110f9565b82604051602001613312929190614a23565b604051602081830303815290604052805190602001209050919050565b61333a8383836135dd565b505050565b613348816136f1565b6000600d6000838152602001908152602001600020805461336890615319565b90501461338f57600d6000828152602001908152602001600020600061338e9190613e41565b5b50565b600081836133a0919061519a565b905092915050565b6133c2828260405180602001604052806000815250613802565b5050565b6001816000016000828254019250508190555050565b60006133fd8473ffffffffffffffffffffffffffffffffffffffff1661385d565b15613566578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342661267b565b8786866040518563ffffffff1660e01b81526004016134489493929190614ab3565b602060405180830381600087803b15801561346257600080fd5b505af192505050801561349357506040513d601f19601f8201168201806040525081019061349091906142b3565b60015b613516573d80600081146134c3576040519150601f19603f3d011682016040523d82523d6000602084013e6134c8565b606091505b5060008151141561350e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350590614c83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061356b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135e8838383613870565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561362b5761362681613875565b61366a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136695761366883826138be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ad576136a881613a2b565b6136ec565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136eb576136ea8282613b6e565b5b5b505050565b60006136fc82611634565b905061370a8160008461332f565b61371560008361268a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461376591906151f4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61380c8383613bed565b61381960008484846133dc565b613858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384f90614c83565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138cb846116f8565b6138d591906151f4565b90506000600760008481526020019081526020016000205490508181146139ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3f91906151f4565b9050600060096000848152602001908152602001600020549050600060088381548110613a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613add577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b79836116f8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5490614e63565b60405180910390fd5b613c668161260f565b15613ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9d90614d23565b60405180910390fd5b613cb26000838361332f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d029190615113565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613dc790615319565b90600052602060002090601f016020900481019282613de95760008555613e30565b82601f10613e0257805160ff1916838001178555613e30565b82800160010185558215613e30579182015b82811115613e2f578251825591602001919060010190613e14565b5b509050613e3d9190613e81565b5090565b508054613e4d90615319565b6000825580601f10613e5f5750613e7e565b601f016020900490600052602060002090810190613e7d9190613e81565b5b50565b5b80821115613e9a576000816000905550600101613e82565b5090565b6000613eb1613eac84615063565b61503e565b905082815260208101848484011115613ec957600080fd5b613ed48482856152d7565b509392505050565b6000613eef613eea84615094565b61503e565b905082815260208101848484011115613f0757600080fd5b613f128482856152d7565b509392505050565b600081359050613f2981615dda565b92915050565b600081359050613f3e81615df1565b92915050565b600081519050613f5381615df1565b92915050565b600081359050613f6881615e08565b92915050565b600081359050613f7d81615e1f565b92915050565b600081519050613f9281615e1f565b92915050565b600082601f830112613fa957600080fd5b8135613fb9848260208601613e9e565b91505092915050565b600081519050613fd181615e36565b92915050565b600082601f830112613fe857600080fd5b8135613ff8848260208601613edc565b91505092915050565b60008135905061401081615e4d565b92915050565b60008135905061402581615e64565b92915050565b60006020828403121561403d57600080fd5b600061404b84828501613f1a565b91505092915050565b6000806040838503121561406757600080fd5b600061407585828601613f1a565b925050602061408685828601613f1a565b9150509250929050565b6000806000606084860312156140a557600080fd5b60006140b386828701613f1a565b93505060206140c486828701613f1a565b92505060406140d586828701614001565b9150509250925092565b600080600080608085870312156140f557600080fd5b600061410387828801613f1a565b945050602061411487828801613f1a565b935050604061412587828801614001565b925050606085013567ffffffffffffffff81111561414257600080fd5b61414e87828801613f98565b91505092959194509250565b6000806040838503121561416d57600080fd5b600061417b85828601613f1a565b925050602061418c85828601613f2f565b9150509250929050565b600080600080600060a086880312156141ae57600080fd5b60006141bc88828901613f1a565b955050602086013567ffffffffffffffff8111156141d957600080fd5b6141e588828901613f98565b94505060406141f688828901613f59565b935050606061420788828901613f59565b925050608061421888828901614016565b9150509295509295909350565b6000806040838503121561423857600080fd5b600061424685828601613f1a565b925050602061425785828601614001565b9150509250929050565b60006020828403121561427357600080fd5b600061428184828501613f44565b91505092915050565b60006020828403121561429c57600080fd5b60006142aa84828501613f6e565b91505092915050565b6000602082840312156142c557600080fd5b60006142d384828501613f83565b91505092915050565b6000602082840312156142ee57600080fd5b60006142fc84828501613fc2565b91505092915050565b60006020828403121561431757600080fd5b600082013567ffffffffffffffff81111561433157600080fd5b61433d84828501613fd7565b91505092915050565b60006020828403121561435857600080fd5b600061436684828501614001565b91505092915050565b60008060006060848603121561438457600080fd5b600061439286828701614001565b93505060206143a386828701614001565b92505060406143b486828701614001565b9150509250925092565b6143c78161523a565b82525050565b6143d681615228565b82525050565b6143ed6143e882615228565b6153c5565b82525050565b6143fc8161524c565b82525050565b61440b81615258565b82525050565b61442261441d82615258565b6153d7565b82525050565b6000614433826150c5565b61443d81856150db565b935061444d8185602086016152e6565b614456816154e0565b840191505092915050565b600061446c826150c5565b61447681856150ec565b93506144868185602086016152e6565b80840191505092915050565b600061449d826150d0565b6144a781856150f7565b93506144b78185602086016152e6565b6144c0816154e0565b840191505092915050565b60006144d6826150d0565b6144e08185615108565b93506144f08185602086016152e6565b80840191505092915050565b60006145096027836150f7565b9150614514826154fe565b604082019050919050565b600061452c6033836150f7565b91506145378261554d565b604082019050919050565b600061454f6025836150f7565b915061455a8261559c565b604082019050919050565b6000614572602b836150f7565b915061457d826155eb565b604082019050919050565b60006145956032836150f7565b91506145a08261563a565b604082019050919050565b60006145b86019836150f7565b91506145c382615689565b602082019050919050565b60006145db6026836150f7565b91506145e6826156b2565b604082019050919050565b60006145fe601c836150f7565b915061460982615701565b602082019050919050565b6000614621601d836150f7565b915061462c8261572a565b602082019050919050565b6000614644601c836150f7565b915061464f82615753565b602082019050919050565b6000614667600283615108565b91506146728261577c565b600282019050919050565b600061468a6024836150f7565b9150614695826157a5565b604082019050919050565b60006146ad6019836150f7565b91506146b8826157f4565b602082019050919050565b60006146d0602c836150f7565b91506146db8261581d565b604082019050919050565b60006146f36025836150f7565b91506146fe8261586c565b604082019050919050565b60006147166038836150f7565b9150614721826158bb565b604082019050919050565b6000614739602a836150f7565b91506147448261590a565b604082019050919050565b600061475c6029836150f7565b915061476782615959565b604082019050919050565b600061477f601d836150f7565b915061478a826159a8565b602082019050919050565b60006147a26020836150f7565b91506147ad826159d1565b602082019050919050565b60006147c56020836150f7565b91506147d0826159fa565b602082019050919050565b60006147e8602c836150f7565b91506147f382615a23565b604082019050919050565b600061480b6020836150f7565b915061481682615a72565b602082019050919050565b600061482e6029836150f7565b915061483982615a9b565b604082019050919050565b60006148516021836150f7565b915061485c82615aea565b604082019050919050565b6000614874602f836150f7565b915061487f82615b39565b604082019050919050565b60006148976021836150f7565b91506148a282615b88565b604082019050919050565b60006148ba6031836150f7565b91506148c582615bd7565b604082019050919050565b60006148dd602c836150f7565b91506148e882615c26565b604082019050919050565b60006149006025836150f7565b915061490b82615c75565b604082019050919050565b60006149236025836150f7565b915061492e82615cc4565b604082019050919050565b60006149466030836150f7565b915061495182615d13565b604082019050919050565b60006149696028836150f7565b915061497482615d62565b604082019050919050565b600061498c6020836150f7565b915061499782615db1565b602082019050919050565b6149ab816152c0565b82525050565b6149ba816152ca565b82525050565b60006149cc8284614461565b915081905092915050565b60006149e38285614461565b91506149ef82846143dc565b6014820191508190509392505050565b6000614a0b82856144cb565b9150614a1782846144cb565b91508190509392505050565b6000614a2e8261465a565b9150614a3a8285614411565b602082019150614a4a8284614411565b6020820191508190509392505050565b6000602082019050614a6f60008301846143cd565b92915050565b6000606082019050614a8a60008301866143cd565b614a9760208301856143be565b8181036040830152614aa98184614428565b9050949350505050565b6000608082019050614ac860008301876143cd565b614ad560208301866143cd565b614ae260408301856149a2565b8181036060830152614af48184614428565b905095945050505050565b6000602082019050614b1460008301846143f3565b92915050565b6000602082019050614b2f6000830184614402565b92915050565b6000608082019050614b4a6000830187614402565b614b5760208301866149a2565b614b6460408301856143cd565b614b716060830184614402565b95945050505050565b6000608082019050614b8f6000830187614402565b614b9c60208301866149b1565b614ba96040830185614402565b614bb66060830184614402565b95945050505050565b60006020820190508181036000830152614bd98184614428565b905092915050565b60006020820190508181036000830152614bfb8184614492565b905092915050565b60006020820190508181036000830152614c1c816144fc565b9050919050565b60006020820190508181036000830152614c3c8161451f565b9050919050565b60006020820190508181036000830152614c5c81614542565b9050919050565b60006020820190508181036000830152614c7c81614565565b9050919050565b60006020820190508181036000830152614c9c81614588565b9050919050565b60006020820190508181036000830152614cbc816145ab565b9050919050565b60006020820190508181036000830152614cdc816145ce565b9050919050565b60006020820190508181036000830152614cfc816145f1565b9050919050565b60006020820190508181036000830152614d1c81614614565b9050919050565b60006020820190508181036000830152614d3c81614637565b9050919050565b60006020820190508181036000830152614d5c8161467d565b9050919050565b60006020820190508181036000830152614d7c816146a0565b9050919050565b60006020820190508181036000830152614d9c816146c3565b9050919050565b60006020820190508181036000830152614dbc816146e6565b9050919050565b60006020820190508181036000830152614ddc81614709565b9050919050565b60006020820190508181036000830152614dfc8161472c565b9050919050565b60006020820190508181036000830152614e1c8161474f565b9050919050565b60006020820190508181036000830152614e3c81614772565b9050919050565b60006020820190508181036000830152614e5c81614795565b9050919050565b60006020820190508181036000830152614e7c816147b8565b9050919050565b60006020820190508181036000830152614e9c816147db565b9050919050565b60006020820190508181036000830152614ebc816147fe565b9050919050565b60006020820190508181036000830152614edc81614821565b9050919050565b60006020820190508181036000830152614efc81614844565b9050919050565b60006020820190508181036000830152614f1c81614867565b9050919050565b60006020820190508181036000830152614f3c8161488a565b9050919050565b60006020820190508181036000830152614f5c816148ad565b9050919050565b60006020820190508181036000830152614f7c816148d0565b9050919050565b60006020820190508181036000830152614f9c816148f3565b9050919050565b60006020820190508181036000830152614fbc81614916565b9050919050565b60006020820190508181036000830152614fdc81614939565b9050919050565b60006020820190508181036000830152614ffc8161495c565b9050919050565b6000602082019050818103600083015261501c8161497f565b9050919050565b600060208201905061503860008301846149a2565b92915050565b6000615048615059565b9050615054828261534b565b919050565b6000604051905090565b600067ffffffffffffffff82111561507e5761507d6154b1565b5b615087826154e0565b9050602081019050919050565b600067ffffffffffffffff8211156150af576150ae6154b1565b5b6150b8826154e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061511e826152c0565b9150615129836152c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561515e5761515d615424565b5b828201905092915050565b6000615174826152c0565b915061517f836152c0565b92508261518f5761518e615453565b5b828204905092915050565b60006151a5826152c0565b91506151b0836152c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151e9576151e8615424565b5b828202905092915050565b60006151ff826152c0565b915061520a836152c0565b92508282101561521d5761521c615424565b5b828203905092915050565b6000615233826152a0565b9050919050565b6000615245826152a0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061529982615228565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153045780820151818401526020810190506152e9565b83811115615313576000848401525b50505050565b6000600282049050600182168061533157607f821691505b6020821081141561534557615344615482565b5b50919050565b615354826154e0565b810181811067ffffffffffffffff82111715615373576153726154b1565b5b80604052505050565b6000615387826152c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153ba576153b9615424565b5b600182019050919050565b60006153d0826153e1565b9050919050565b6000819050919050565b60006153ec826154f1565b9050919050565b60006153fe826152c0565b9150615409836152c0565b92508261541957615418615453565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5375706572546967657220636f6e74726163742061646472657373206e65656460008201527f2062652073657400000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e332074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5375706572546967657220636f6d706f7365206661696c656400000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f546f6b656e7320616d6f756e74206973206f7574206f66206c696d6974000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e312074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20757365206f6620746f6b656e322074686174206973206e6f60008201527f74206f776e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d6178207265736572766560008201527f6420737570706c79000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b615de381615228565b8114615dee57600080fd5b50565b615dfa8161524c565b8114615e0557600080fd5b50565b615e1181615258565b8114615e1c57600080fd5b50565b615e2881615262565b8114615e3357600080fd5b50565b615e3f8161528e565b8114615e4a57600080fd5b50565b615e56816152c0565b8114615e6157600080fd5b50565b615e6d816152ca565b8114615e7857600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220d79435535e735bb38c602e3005a8101f05ee82251a6f05470b1b2a03abeea13d64736f6c63430008040033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.